client.go 3.1 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 13 14
	"strings"

	cmds "github.com/jbenet/go-ipfs/commands"
)

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

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

type client struct {
	serverAddress string
}
28

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

33
func (c *client) Send(req cmds.Request) (cmds.Response, error) {
34 35 36 37 38 39 40 41 42 43
	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)
	}

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

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

52
	httpRes, err := http.Post(url, "application/octet-stream", inputStream)
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
	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)
		req.SetOption(cmds.EncLong, userEncoding)
	}

	return res, nil
}

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

74
	query := url.Values{}
75
	for k, v := range req.Options() {
76
		query.Set(k, v.(string))
77
	}
78 79

	args := req.Arguments()
80 81 82
	argDefs := req.Command().Arguments
	var argDef cmds.Argument

83
	for i, arg := range args {
84 85 86 87 88
		if i < len(argDefs) {
			argDef = argDefs[i]
		}

		if argDef.Type == cmds.ArgString {
89
			query.Add("arg", arg.(string))
90 91 92

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

100
	return query.Encode(), inputStream, nil
101
}
102

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

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

	if contentType == "application/octet-stream" {
112
		res.SetOutput(httpRes.Body)
113 114 115 116 117 118 119
		return res, nil
	}

	dec := json.NewDecoder(httpRes.Body)

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

		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
			}
139 140 141 142 143
		}

		res.SetError(e, e.Code)

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

150
		res.SetOutput(v)
151 152
	}

153 154
	return res, nil
}