mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-10 10:47:51 +08:00
94 lines
1.9 KiB
Go
94 lines
1.9 KiB
Go
package http
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/http"
|
|
"strings"
|
|
|
|
ma "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-multiaddr"
|
|
manet "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-multiaddr/net"
|
|
|
|
cmds "github.com/jbenet/go-ipfs/commands"
|
|
)
|
|
|
|
const ApiPath = "/api/v0"
|
|
|
|
func Send(req cmds.Request) (cmds.Response, error) {
|
|
addr, err := ma.NewMultiaddr(req.Context().Config.Addresses.API)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
_, host, err := manet.DialArgs(addr)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
url := "http://" + host + ApiPath
|
|
url += "/" + strings.Join(req.Path(), "/")
|
|
|
|
var userEncoding string
|
|
if enc, found := req.Option(cmds.EncShort); found {
|
|
userEncoding = enc.(string)
|
|
req.SetOption(cmds.EncShort, cmds.JSON)
|
|
} else {
|
|
enc, _ := req.Option(cmds.EncLong)
|
|
userEncoding = enc.(string)
|
|
req.SetOption(cmds.EncLong, cmds.JSON)
|
|
}
|
|
|
|
query := "?"
|
|
for k, v := range req.Options() {
|
|
query += "&" + k + "=" + v.(string)
|
|
}
|
|
for _, v := range req.Arguments() {
|
|
query += "&arg=" + v
|
|
}
|
|
|
|
httpRes, err := http.Post(url+query, "application/octet-stream", req.Stream())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
res := cmds.NewResponse(req)
|
|
|
|
contentType := httpRes.Header["Content-Type"][0]
|
|
contentType = strings.Split(contentType, ";")[0]
|
|
|
|
if contentType == "application/octet-stream" {
|
|
res.SetValue(httpRes.Body)
|
|
return res, nil
|
|
}
|
|
|
|
dec := json.NewDecoder(httpRes.Body)
|
|
|
|
if httpRes.StatusCode >= http.StatusBadRequest {
|
|
e := cmds.Error{}
|
|
err = dec.Decode(&e)
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
return nil, err
|
|
}
|
|
|
|
res.SetError(e, e.Code)
|
|
|
|
} else {
|
|
v := req.Command().Type
|
|
err = dec.Decode(&v)
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
return nil, err
|
|
}
|
|
|
|
res.SetValue(v)
|
|
}
|
|
|
|
if len(userEncoding) > 0 {
|
|
req.SetOption(cmds.EncShort, userEncoding)
|
|
req.SetOption(cmds.EncLong, userEncoding)
|
|
}
|
|
|
|
return res, nil
|
|
}
|