client.go 3.62 KB
Newer Older
1 2 3
package http

import (
4
	"bytes"
5 6
	"encoding/json"
	"fmt"
7
	"io"
8
	"net/http"
9
	"net/url"
10 11 12
	"strings"

	cmds "github.com/jbenet/go-ipfs/commands"
13
	config "github.com/jbenet/go-ipfs/config"
14 15
)

16
const (
17
	ApiUrlFormat = "http://%s%s/%s?%s"
18 19
	ApiPath      = "/api/v0" // TODO: make configurable
)
20

21 22 23 24 25 26 27 28
// Client is the commands HTTP client interface.
type Client interface {
	Send(req cmds.Request) (cmds.Response, error)
}

type client struct {
	serverAddress string
}
29

30 31 32
func NewClient(address string) Client {
	return &client{address}
}
33

34
func (c *client) Send(req cmds.Request) (cmds.Response, error) {
Brian Tiger Chow's avatar
Brian Tiger Chow committed
35 36 37 38 39 40 41 42

	// save user-provided encoding
	previousUserProvidedEncoding, found, err := req.Option(cmds.EncShort).String()
	if err != nil {
		return nil, err
	}

	// override with json to send to server
43
	req.SetOption(cmds.EncShort, cmds.JSON)
44

45
	query, err := getQuery(req)
46 47 48 49
	if err != nil {
		return nil, err
	}

50 51
	var fileReader *MultiFileReader
	if req.Files() != nil {
52
		fileReader = NewMultiFileReader(req.Files(), true)
53 54
	}

55 56 57
	path := strings.Join(req.Path(), "/")
	url := fmt.Sprintf(ApiUrlFormat, c.serverAddress, ApiPath, path, query)

58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
	httpReq, err := http.NewRequest("POST", url, fileReader)
	if err != nil {
		return nil, err
	}

	// TODO extract string consts?
	if fileReader != nil {
		httpReq.Header.Set("Content-Type", "multipart/form-data; boundary="+fileReader.Boundary())
		httpReq.Header.Set("Content-Disposition", "form-data: name=\"files\"")
	} else {
		httpReq.Header.Set("Content-Type", "application/octet-stream")
	}
	version := config.CurrentVersionNumber
	httpReq.Header.Set("User-Agent", fmt.Sprintf("/go-ipfs/%s/", version))

	httpRes, err := http.DefaultClient.Do(httpReq)
74 75 76 77
	if err != nil {
		return nil, err
	}

Brian Tiger Chow's avatar
Brian Tiger Chow committed
78
	// using the overridden JSON encoding in request
79 80 81 82 83
	res, err := getResponse(httpRes, req)
	if err != nil {
		return nil, err
	}

Brian Tiger Chow's avatar
Brian Tiger Chow committed
84 85 86 87 88
	if found && len(previousUserProvidedEncoding) > 0 {
		// reset to user provided encoding after sending request
		// NB: if user has provided an encoding but it is the empty string,
		// still leave it as JSON.
		req.SetOption(cmds.EncShort, previousUserProvidedEncoding)
89 90 91 92 93
	}

	return res, nil
}

94
func getQuery(req cmds.Request) (string, error) {
95
	query := url.Values{}
96
	for k, v := range req.Options() {
97
		str := fmt.Sprintf("%v", v)
98
		query.Set(k, str)
99
	}
100 101

	args := req.Arguments()
102 103 104
	argDefs := req.Command().Arguments
	var argDef cmds.Argument

105
	for i, arg := range args {
106 107 108 109 110
		if i < len(argDefs) {
			argDef = argDefs[i]
		}

		if argDef.Type == cmds.ArgString {
111
			query.Add("arg", arg)
112
		}
113
	}
114

115
	return query.Encode(), nil
116
}
117

118 119 120
// getResponse decodes a http.Response to create a cmds.Response
func getResponse(httpRes *http.Response, req cmds.Request) (cmds.Response, error) {
	var err error
121 122 123 124 125
	res := cmds.NewResponse(req)

	contentType := httpRes.Header["Content-Type"][0]
	contentType = strings.Split(contentType, ";")[0]

126
	if len(httpRes.Header.Get(streamHeader)) > 0 {
127
		res.SetOutput(httpRes.Body)
128 129 130 131 132 133 134
		return res, nil
	}

	dec := json.NewDecoder(httpRes.Body)

	if httpRes.StatusCode >= http.StatusBadRequest {
		e := cmds.Error{}
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153

		if httpRes.StatusCode == http.StatusNotFound {
			// handle 404s
			e.Message = "Command not found."
			e.Code = cmds.ErrClient

		} else if contentType == "text/plain" {
			// handle non-marshalled errors
			buf := bytes.NewBuffer(nil)
			io.Copy(buf, httpRes.Body)
			e.Message = string(buf.Bytes())
			e.Code = cmds.ErrNormal

		} else {
			// handle marshalled errors
			err = dec.Decode(&e)
			if err != nil {
				return nil, err
			}
154 155 156 157 158
		}

		res.SetError(e, e.Code)

	} else {
159
		v := req.Command().Type
160
		err = dec.Decode(&v)
161
		if err != nil && err != io.EOF {
162 163 164
			return nil, err
		}

165
		res.SetOutput(v)
166 167
	}

168 169
	return res, nil
}