client.go 4.44 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
	var fileReader *MultiFileReader
51 52
	var reader io.Reader

53
	if req.Files() != nil {
54
		fileReader = NewMultiFileReader(req.Files(), true)
55 56 57 58 59
		reader = fileReader
	} else {
		// if we have no file data, use an empty Reader
		// (http.NewRequest panics when a nil Reader is used)
		reader = strings.NewReader("")
60 61
	}

62 63 64
	path := strings.Join(req.Path(), "/")
	url := fmt.Sprintf(ApiUrlFormat, c.serverAddress, ApiPath, path, query)

65
	httpReq, err := http.NewRequest("POST", url, reader)
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
	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)
81 82 83 84
	if err != nil {
		return nil, err
	}

Brian Tiger Chow's avatar
Brian Tiger Chow committed
85
	// using the overridden JSON encoding in request
86 87 88 89 90
	res, err := getResponse(httpRes, req)
	if err != nil {
		return nil, err
	}

Brian Tiger Chow's avatar
Brian Tiger Chow committed
91 92 93 94 95
	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)
96 97 98 99 100
	}

	return res, nil
}

101
func getQuery(req cmds.Request) (string, error) {
102
	query := url.Values{}
103
	for k, v := range req.Options() {
104
		str := fmt.Sprintf("%v", v)
105
		query.Set(k, str)
106
	}
107 108

	args := req.Arguments()
109 110
	argDefs := req.Command().Arguments

111 112 113 114 115 116 117 118
	argDefIndex := 0

	for _, arg := range args {
		argDef := argDefs[argDefIndex]
		// skip ArgFiles
		for argDef.Type == cmds.ArgFile {
			argDefIndex++
			argDef = argDefs[argDefIndex]
119 120
		}

121 122 123 124
		query.Add("arg", arg)

		if len(argDefs) > argDefIndex+1 {
			argDefIndex++
125
		}
126
	}
127

128
	return query.Encode(), nil
129
}
130

131 132 133
// getResponse decodes a http.Response to create a cmds.Response
func getResponse(httpRes *http.Response, req cmds.Request) (cmds.Response, error) {
	var err error
134 135 136 137 138
	res := cmds.NewResponse(req)

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

139
	if len(httpRes.Header.Get(streamHeader)) > 0 {
140
		// if output is a stream, we can just use the body reader
141
		res.SetOutput(httpRes.Body)
142
		return res, nil
143 144 145 146 147 148 149 150 151 152

	} else if len(httpRes.Header.Get(channelHeader)) > 0 {
		// if output is coming from a channel, decode each chunk
		outChan := make(chan interface{})
		go func() {
			dec := json.NewDecoder(httpRes.Body)
			v := req.Command().Type

			for {
				err := dec.Decode(&v)
153 154 155 156 157 158
				if err != nil && err != io.EOF {
					fmt.Println(err.Error())
					return
				}
				if err == io.EOF {
					close(outChan)
159 160 161 162 163 164 165 166
					return
				}
				outChan <- v
			}
		}()

		res.SetOutput(outChan)
		return res, nil
167 168 169 170 171 172
	}

	dec := json.NewDecoder(httpRes.Body)

	if httpRes.StatusCode >= http.StatusBadRequest {
		e := cmds.Error{}
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191

		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
			}
192 193 194 195 196
		}

		res.SetError(e, e.Code)

	} else {
197
		v := req.Command().Type
198
		err = dec.Decode(&v)
199
		if err != nil && err != io.EOF {
200 201 202
			return nil, err
		}

203
		res.SetOutput(v)
204 205
	}

206 207
	return res, nil
}