client.go 3.07 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
	u "github.com/jbenet/go-ipfs/util"
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) {
35 36
	userEncoding, _ := req.Option(cmds.EncShort).String()
	req.SetOption(cmds.EncShort, cmds.JSON)
37

38
	query, inputStream, err := getQuery(req)
39 40 41 42 43 44 45
	if err != nil {
		return nil, err
	}

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

46
	httpRes, err := http.Post(url, "application/octet-stream", inputStream)
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
	if err != nil {
		return nil, err
	}

	res, err := getResponse(httpRes, req)
	if err != nil {
		return nil, err
	}

	if len(userEncoding) > 0 {
		req.SetOption(cmds.EncShort, userEncoding)
	}

	return res, nil
}

func getQuery(req cmds.Request) (string, io.Reader, error) {
64
	// TODO: handle multiple files with multipart
65
	var inputStream io.Reader
66

67
	query := url.Values{}
68
	for k, v := range req.Options() {
69
		str := fmt.Sprintf("%v", v)
70
		query.Set(k, str)
71
	}
72 73

	args := req.Arguments()
74 75 76
	argDefs := req.Command().Arguments
	var argDef cmds.Argument

77
	for i, arg := range args {
78 79 80 81 82
		if i < len(argDefs) {
			argDef = argDefs[i]
		}

		if argDef.Type == cmds.ArgString {
83 84
			str, ok := arg.(string)
			if !ok {
85
				return "", nil, u.ErrCast()
86 87
			}
			query.Add("arg", str)
88 89 90

		} else {
			// TODO: multipart
91
			if inputStream != nil {
92
				return "", nil, fmt.Errorf("Currently, only one file stream is possible per request")
93
			}
94 95 96
			var ok bool
			inputStream, ok = arg.(io.Reader)
			if !ok {
97
				return "", nil, u.ErrCast()
98
			}
99
		}
100
	}
101

102
	return query.Encode(), inputStream, nil
103
}
104

105 106 107
// getResponse decodes a http.Response to create a cmds.Response
func getResponse(httpRes *http.Response, req cmds.Request) (cmds.Response, error) {
	var err error
108 109 110 111 112
	res := cmds.NewResponse(req)

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

113
	if len(httpRes.Header.Get(streamHeader)) > 0 {
114
		res.SetOutput(httpRes.Body)
115 116 117 118 119 120 121
		return res, nil
	}

	dec := json.NewDecoder(httpRes.Body)

	if httpRes.StatusCode >= http.StatusBadRequest {
		e := cmds.Error{}
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140

		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
			}
141 142 143 144 145
		}

		res.SetError(e, e.Code)

	} else {
146
		v := req.Command().Type
147 148 149 150 151
		err = dec.Decode(&v)
		if err != nil {
			return nil, err
		}

152
		res.SetOutput(v)
153 154
	}

155 156
	return res, nil
}