-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This implements an http-proxy over p2p-streams. License: MIT Signed-off-by: Chris Boddy <chris@boddy.im>
- Loading branch information
Showing
5 changed files
with
121 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
package p2p | ||
|
||
import ( | ||
"bufio" | ||
"fmt" | ||
"net" | ||
"net/http" | ||
"strings" | ||
|
||
core "github.com/ipfs/go-ipfs/core" | ||
protocol "gx/ipfs/QmZNkThpqfVXs9GNbexPrfBbXSLNYeKrE7jwFM2oqHbyqN/go-libp2p-protocol" | ||
peer "gx/ipfs/QmbNepETomvmXfz1X5pHNFD2QuPqnqi47dTd94QJWSorQ3/go-libp2p-peer" | ||
) | ||
|
||
func ProxyOption() ServeOption { | ||
return func(ipfsNode *core.IpfsNode, _ net.Listener, mux *http.ServeMux) (*http.ServeMux, error) { | ||
mux.HandleFunc("/proxy/", func(w http.ResponseWriter, request *http.Request) { | ||
// parse request | ||
parsedRequest, err := parseRequest(request) | ||
if err != nil { | ||
handleError(w, "Failed to parse request", err, 400) | ||
return | ||
} | ||
|
||
// open connect to peer | ||
stream, err := ipfsNode.P2P.PeerHost.NewStream(ipfsNode.Context(), parsedRequest.target, protocol.ID("/x/"+parsedRequest.name)) | ||
if err != nil { | ||
msg := fmt.Sprintf("Failed to open stream '%v' to target peer '%v'", parsedRequest.name, parsedRequest.target) | ||
handleError(w, msg, err, 500) | ||
return | ||
} | ||
|
||
// send request to peer | ||
proxyReq, err := http.NewRequest(request.Method, parsedRequest.httpPath, request.Body) | ||
|
||
if err != nil { | ||
handleError(w, "Failed to format proxy request", err, 500) | ||
return | ||
} | ||
|
||
proxyReq.Write(stream) | ||
|
||
s := bufio.NewReader(stream) | ||
proxyResponse, err := http.ReadResponse(s, proxyReq) | ||
defer func() { proxyResponse.Body.Close() }() | ||
if err != nil { | ||
msg := fmt.Sprintf("Failed to send request to stream '%v' to peer '%v'", parsedRequest.name, parsedRequest.target) | ||
handleError(w, msg, err, 500) | ||
return | ||
} | ||
// send client response | ||
proxyResponse.Write(w) | ||
}) | ||
return mux, nil | ||
} | ||
} | ||
|
||
type proxyRequest struct { | ||
target peer.ID | ||
name string | ||
httpPath string // path to send to the proxy-host | ||
} | ||
|
||
// from the url path parse the peer-ID, name and http path | ||
// /http/$peer_id/$name/$http_path | ||
func parseRequest(request *http.Request) (*proxyRequest, error) { | ||
path := request.URL.Path | ||
|
||
split := strings.SplitN(path, "/", 6) | ||
if split[2] != "http" { | ||
return nil, fmt.Errorf("Invalid proxy request protocol '%s'", path) | ||
} | ||
|
||
if len(split) < 6 { | ||
return nil, fmt.Errorf("Invalid request path '%s'", path) | ||
} | ||
|
||
peerID, err := peer.IDB58Decode(split[3]) | ||
|
||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return &proxyRequest{peerID, split[4], split[5]}, nil | ||
} | ||
|
||
// log error and send response to client | ||
func handleError(w http.ResponseWriter, msg string, err error, code int) { | ||
w.WriteHeader(code) | ||
fmt.Fprintf(w, "%s: %s\n", msg, err) | ||
log.Warningf("server error: %s: %s", err) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package p2p | ||
|
||
import ( | ||
"github.com/ipfs/go-ipfs/thirdparty/assert" | ||
"net/http" | ||
"strings" | ||
"testing" | ||
) | ||
|
||
func TestParseRequest(t *testing.T) { | ||
url := "http://localhost:5001/proxy/http/QmT8JtU54XSmC38xSb1XHFSMm775VuTeajg7LWWWTAwzxT/test-name/path/to/index.txt" | ||
req, _ := http.NewRequest("GET", url, strings.NewReader("")) | ||
|
||
parsed, err := parseRequest(req) | ||
if err != nil { | ||
t.Error(err) | ||
} | ||
assert.True(parsed.httpPath == "path/to/index.txt", t, "proxy request path") | ||
assert.True(parsed.name == "test-name", t, "proxy request name") | ||
assert.True(parsed.target.Pretty() == "QmT8JtU54XSmC38xSb1XHFSMm775VuTeajg7LWWWTAwzxT", t, "proxy request peer-id") | ||
} |