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

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

11 12 13
	ma "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-multiaddr"
	manet "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-multiaddr/net"

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

17
const ApiPath = "/api/v0" // TODO: make configurable
18 19

func Send(req cmds.Request) (cmds.Response, error) {
20 21 22 23 24 25 26 27 28 29 30
	addr, err := ma.NewMultiaddr(req.Context().Config.Addresses.API)
	if err != nil {
		return nil, err
	}

	_, host, err := manet.DialArgs(addr)
	if err != nil {
		return nil, err
	}

	url := "http://" + host + ApiPath
31 32
	url += "/" + strings.Join(req.Path(), "/")

33 34 35 36 37 38 39 40 41 42
	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)
	}

43 44 45
	// TODO: handle multiple files with multipart
	var in io.Reader

46
	query := "?"
47
	for k, v := range req.Options() {
48 49
		query += "&" + k + "=" + v.(string)
	}
50 51 52 53 54 55 56 57 58 59 60

	args := req.Arguments()
	for i, arg := range args {
		if req.Command().Arguments[i].Type == cmds.ArgString {
			query += "&arg=" + arg.(string)

		} else {
			// TODO: multipart
			if in != nil {
				return nil, fmt.Errorf("Currently, only one file stream is possible per request")
			}
61
			in = arg.(io.Reader)
62
		}
63
	}
64

65
	httpRes, err := http.Post(url+query, "application/octet-stream", in)
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
	if err != nil {
		return nil, err
	}

	res := cmds.NewResponse(req)

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

	if contentType == "application/octet-stream" {
		res.SetValue(httpRes.Body)
		return res, nil
	}

	dec := json.NewDecoder(httpRes.Body)

	if httpRes.StatusCode >= http.StatusBadRequest {
		e := cmds.Error{}
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103

		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 {
				fmt.Println(err)
				return nil, err
			}
104 105 106 107 108
		}

		res.SetError(e, e.Code)

	} else {
109
		v := req.Command().Type
110 111 112 113 114 115 116
		err = dec.Decode(&v)
		if err != nil {
			fmt.Println(err)
			return nil, err
		}

		res.SetValue(v)
117 118 119 120 121 122
	}

	if len(userEncoding) > 0 {
		req.SetOption(cmds.EncShort, userEncoding)
		req.SetOption(cmds.EncLong, userEncoding)
	}
123 124 125

	return res, nil
}