Documentation ¶
Index ¶
- type HiveResource
- func (r *HiveResource) Get(ctx smolder.APIContext, request *restful.Request, response *restful.Response, ...)
- func (r *HiveResource) GetAuthRequired() bool
- func (r *HiveResource) GetByIDs(ctx smolder.APIContext, request *restful.Request, response *restful.Response, ...)
- func (r *HiveResource) GetByIDsAuthRequired() bool
- func (r *HiveResource) GetDoc() string
- func (r *HiveResource) GetParams() []*restful.Parameter
- func (r *HiveResource) Register(container *restful.Container, config smolder.APIConfig, ...)
- func (r *HiveResource) Returns() interface{}
- type HiveResponse
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type HiveResource ¶
HiveResource is the resource responsible for /hives
func (*HiveResource) Get ¶
func (r *HiveResource) Get(ctx smolder.APIContext, request *restful.Request, response *restful.Response, params map[string][]string)
Get sends out items matching the query parameters
func (*HiveResource) GetAuthRequired ¶
func (r *HiveResource) GetAuthRequired() bool
GetAuthRequired returns true because all requests need authentication
func (*HiveResource) GetByIDs ¶
func (r *HiveResource) GetByIDs(ctx smolder.APIContext, request *restful.Request, response *restful.Response, ids []string)
GetByIDs sends out all items matching a set of IDs
func (*HiveResource) GetByIDsAuthRequired ¶
func (r *HiveResource) GetByIDsAuthRequired() bool
GetByIDsAuthRequired returns true because all requests need authentication
func (*HiveResource) GetDoc ¶
func (r *HiveResource) GetDoc() string
GetDoc returns the description of this API endpoint
func (*HiveResource) GetParams ¶
func (r *HiveResource) GetParams() []*restful.Parameter
GetParams returns the parameters supported by this API endpoint
func (*HiveResource) Register ¶
func (r *HiveResource) Register(container *restful.Container, config smolder.APIConfig, context smolder.APIContextFactory)
Register this resource with the container to setup all the routes
func (*HiveResource) Returns ¶
func (r *HiveResource) Returns() interface{}
Returns returns the model that will be returned
type HiveResponse ¶
type HiveResponse struct { smolder.Response Hives []hiveInfoResponse `json:"hives,omitempty"` // contains filtered or unexported fields }
HiveResponse is the common response to 'hive' requests
func (*HiveResponse) AddHive ¶
func (r *HiveResponse) AddHive(hive *bees.BeeFactoryInterface)
AddHive adds a hive to the response
func (*HiveResponse) EmptyResponse ¶
func (r *HiveResponse) EmptyResponse() interface{}
EmptyResponse returns an empty API response for this endpoint if there's no data to respond with
func (*HiveResponse) Init ¶
func (r *HiveResponse) Init(context smolder.APIContext)
Init a new response
func (*HiveResponse) Send ¶
func (r *HiveResponse) Send(response *restful.Response)
Send responds to a request with http.StatusOK