package httpjson
import "bazil.org/fuse/fs/fstestutil/spawntest/httpjson"
Package httpjson helps transporting JSON over HTTP.
This might get extracted to a standalone repository, if it proves useful enough.
Index ¶
- func ServePOST(fn interface{}) http.Handler
- type Resource
- func JSON(client *http.Client, url string) *Resource
- func (c *Resource) Call(ctx context.Context, data interface{}, dst interface{}) error
- type TrailingDataError
Functions ¶
func ServePOST ¶
ServePOST adapts a function to a http.Handler with easy JSON unmarshal & marshal and error reporting.
fn is expected to be of the form
func(context.Context, T1) (T2, error)
or similar with pointers to T1 or T2.
Types ¶
type Resource ¶
type Resource struct {
// contains filtered or unexported fields
}
Resource represents a JSON-speaking remote HTTP resource.
func JSON ¶
JSON helps make a HTTP request to the resource tree at url with JSON request and response bodies.
If client is nil http.DefaultClient will be used.
func (*Resource) Call ¶
Call a HTTP resource that is expected to return JSON data.
If data is not nil, method is POST and the request body is data marshaled into JSON. If data is nil, method is GET.
The response JSON is unmarshaled into dst.
type TrailingDataError ¶
TrailingDataError is an error that is returned if there is trailing data after a JSON message.
func (*TrailingDataError) Error ¶
func (t *TrailingDataError) Error() string
Source Files ¶
client.go doc.go musteof.go server.go
- Version
- v0.0.0-20230120002735-62a210ff1fd5 (latest)
- Published
- Jan 20, 2023
- Platform
- linux/amd64
- Imports
- 7 packages
- Last checked
- 3 days ago –
Tools for package owners.