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

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

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

16 17
var castError = errors.New("cast error")

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

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

type client struct {
	serverAddress string
}
31

32 33 34
func NewClient(address string) Client {
	return &client{address}
}
35

36
func (c *client) Send(req cmds.Request) (cmds.Response, error) {
37 38
	userEncoding, _ := req.Option(cmds.EncShort).String()
	req.SetOption(cmds.EncShort, cmds.JSON)
39

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

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

48
	httpRes, err := http.Post(url, "application/octet-stream", inputStream)
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
	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) {
66
	// TODO: handle multiple files with multipart
67
	var inputStream io.Reader
68

69
	query := url.Values{}
70
	for k, v := range req.Options() {
71 72 73 74 75
		str, ok := v.(string)
		if !ok {
			return "", nil, castError
		}
		query.Set(k, str)
76
	}
77 78

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

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

		if argDef.Type == cmds.ArgString {
88 89 90 91 92
			str, ok := arg.(string)
			if !ok {
				return "", nil, castError
			}
			query.Add("arg", str)
93 94 95

		} else {
			// TODO: multipart
96
			if inputStream != nil {
97
				return "", nil, fmt.Errorf("Currently, only one file stream is possible per request")
98
			}
99 100 101 102 103
			var ok bool
			inputStream, ok = arg.(io.Reader)
			if !ok {
				return "", nil, castError
			}
104
		}
105
	}
106

107
	return query.Encode(), inputStream, nil
108
}
109

110 111 112
// getResponse decodes a http.Response to create a cmds.Response
func getResponse(httpRes *http.Response, req cmds.Request) (cmds.Response, error) {
	var err error
113 114 115 116 117
	res := cmds.NewResponse(req)

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

118
	if len(httpRes.Header.Get(streamHeader)) > 0 {
119
		res.SetOutput(httpRes.Body)
120 121 122 123 124 125 126
		return res, nil
	}

	dec := json.NewDecoder(httpRes.Body)

	if httpRes.StatusCode >= http.StatusBadRequest {
		e := cmds.Error{}
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145

		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
			}
146 147 148 149 150
		}

		res.SetError(e, e.Code)

	} else {
151
		v := req.Command().Type
152 153 154 155 156
		err = dec.Decode(&v)
		if err != nil {
			return nil, err
		}

157
		res.SetOutput(v)
158 159
	}

160 161
	return res, nil
}