Documentation
¶
Index ¶
- func DecodeForecastRequest(mux goahttp.Muxer, decoder func(*http.Request) goahttp.Decoder) func(*http.Request) (interface{}, error)
- func EncodeForecastError(encoder func(context.Context, http.ResponseWriter) goahttp.Encoder, ...) func(context.Context, http.ResponseWriter, error) error
- func EncodeForecastResponse(encoder func(context.Context, http.ResponseWriter) goahttp.Encoder) func(context.Context, http.ResponseWriter, interface{}) error
- func ForecastFrontPath(ip string) string
- func Mount(mux goahttp.Muxer, h *Server)
- func MountForecastHandler(mux goahttp.Muxer, h http.Handler)
- func NewForecastHandler(endpoint goa.Endpoint, mux goahttp.Muxer, ...) http.Handler
- type ForecastNotUsaResponseBody
- type ForecastResponseBody
- type LocationResponseBody
- type MountPoint
- type PeriodResponseBody
- type Server
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DecodeForecastRequest ¶
func DecodeForecastRequest(mux goahttp.Muxer, decoder func(*http.Request) goahttp.Decoder) func(*http.Request) (interface{}, error)
DecodeForecastRequest returns a decoder for requests sent to the front forecast endpoint.
func EncodeForecastError ¶
func EncodeForecastError(encoder func(context.Context, http.ResponseWriter) goahttp.Encoder, formatter func(ctx context.Context, err error) goahttp.Statuser) func(context.Context, http.ResponseWriter, error) error
EncodeForecastError returns an encoder for errors returned by the forecast front endpoint.
func EncodeForecastResponse ¶
func EncodeForecastResponse(encoder func(context.Context, http.ResponseWriter) goahttp.Encoder) func(context.Context, http.ResponseWriter, interface{}) error
EncodeForecastResponse returns an encoder for responses returned by the front forecast endpoint.
func ForecastFrontPath ¶
ForecastFrontPath returns the URL path to the front service forecast HTTP endpoint.
func MountForecastHandler ¶
MountForecastHandler configures the mux to serve the "front" service "forecast" endpoint.
func NewForecastHandler ¶
func NewForecastHandler( endpoint goa.Endpoint, mux goahttp.Muxer, decoder func(*http.Request) goahttp.Decoder, encoder func(context.Context, http.ResponseWriter) goahttp.Encoder, errhandler func(context.Context, http.ResponseWriter, error), formatter func(ctx context.Context, err error) goahttp.Statuser, ) http.Handler
NewForecastHandler creates a HTTP handler which loads the HTTP request and calls the "front" service "forecast" endpoint.
Types ¶
type ForecastNotUsaResponseBody ¶
type ForecastNotUsaResponseBody struct { // Name is the name of this class of errors. Name string `form:"name" json:"name" xml:"name"` // ID is a unique identifier for this particular occurrence of the problem. ID string `form:"id" json:"id" xml:"id"` // Message is a human-readable explanation specific to this occurrence of the // problem. Message string `form:"message" json:"message" xml:"message"` // Is the error temporary? Temporary bool `form:"temporary" json:"temporary" xml:"temporary"` // Is the error a timeout? Timeout bool `form:"timeout" json:"timeout" xml:"timeout"` // Is the error a server-side fault? Fault bool `form:"fault" json:"fault" xml:"fault"` }
ForecastNotUsaResponseBody is the type of the "front" service "forecast" endpoint HTTP response body for the "not_usa" error.
func NewForecastNotUsaResponseBody ¶
func NewForecastNotUsaResponseBody(res *goa.ServiceError) *ForecastNotUsaResponseBody
NewForecastNotUsaResponseBody builds the HTTP response body from the result of the "forecast" endpoint of the "front" service.
type ForecastResponseBody ¶
type ForecastResponseBody struct { // Forecast location Location *LocationResponseBody `form:"location" json:"location" xml:"location"` // Weather forecast periods Periods []*PeriodResponseBody `form:"periods" json:"periods" xml:"periods"` }
ForecastResponseBody is the type of the "front" service "forecast" endpoint HTTP response body.
func NewForecastResponseBody ¶
func NewForecastResponseBody(res *front.Forecast2) *ForecastResponseBody
NewForecastResponseBody builds the HTTP response body from the result of the "forecast" endpoint of the "front" service.
type LocationResponseBody ¶
type LocationResponseBody struct { // Latitude Lat float64 `form:"lat" json:"lat" xml:"lat"` // Longitude Long float64 `form:"long" json:"long" xml:"long"` // City City string `form:"city" json:"city" xml:"city"` // State State string `form:"state" json:"state" xml:"state"` }
LocationResponseBody is used to define fields on response body types.
type MountPoint ¶
type MountPoint struct { // Method is the name of the service method served by the mounted HTTP handler. Method string // Verb is the HTTP method used to match requests to the mounted handler. Verb string // Pattern is the HTTP request path pattern used to match requests to the // mounted handler. Pattern string }
MountPoint holds information about the mounted endpoints.
type PeriodResponseBody ¶
type PeriodResponseBody struct { // Period name Name string `form:"name" json:"name" xml:"name"` // Start time StartTime string `form:"startTime" json:"startTime" xml:"startTime"` // End time EndTime string `form:"endTime" json:"endTime" xml:"endTime"` // Temperature Temperature int `form:"temperature" json:"temperature" xml:"temperature"` // Temperature unit TemperatureUnit string `form:"temperatureUnit" json:"temperatureUnit" xml:"temperatureUnit"` // Summary Summary string `form:"summary" json:"summary" xml:"summary"` }
PeriodResponseBody is used to define fields on response body types.
type Server ¶
type Server struct { Mounts []*MountPoint Forecast http.Handler }
Server lists the front service endpoint HTTP handlers.
func New ¶
func New( e *front.Endpoints, mux goahttp.Muxer, decoder func(*http.Request) goahttp.Decoder, encoder func(context.Context, http.ResponseWriter) goahttp.Encoder, errhandler func(context.Context, http.ResponseWriter, error), formatter func(ctx context.Context, err error) goahttp.Statuser, ) *Server
New instantiates HTTP handlers for all the front service endpoints using the provided encoder and decoder. The handlers are mounted on the given mux using the HTTP verb and path defined in the design. errhandler is called whenever a response fails to be encoded. formatter is used to format errors returned by the service methods prior to encoding. Both errhandler and formatter are optional and can be nil.
func (*Server) MethodNames ¶ added in v0.12.0
MethodNames returns the methods served.