operations

package
v0.3.11 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 28, 2023 License: AGPL-3.0, BSD-2-Clause, ISC Imports: 13 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ServeAPI

type ServeAPI struct {
	Middleware func(middleware.Builder) http.Handler

	// BasicAuthenticator generates a runtime.Authenticator from the supplied basic auth function.
	// It has a default implementation in the security package, however you can replace it for your particular usage.
	BasicAuthenticator func(security.UserPassAuthentication) runtime.Authenticator

	// APIKeyAuthenticator generates a runtime.Authenticator from the supplied token auth function.
	// It has a default implementation in the security package, however you can replace it for your particular usage.
	APIKeyAuthenticator func(string, string, security.TokenAuthentication) runtime.Authenticator

	// BearerAuthenticator generates a runtime.Authenticator from the supplied bearer token auth function.
	// It has a default implementation in the security package, however you can replace it for your particular usage.
	BearerAuthenticator func(string, security.ScopedTokenAuthentication) runtime.Authenticator

	// JSONConsumer registers a consumer for the following mime types:
	//   - application/json
	JSONConsumer runtime.Consumer
	// TxtConsumer registers a consumer for the following mime types:
	//   - text/plain
	TxtConsumer runtime.Consumer

	// JSONProducer registers a producer for the following mime types:
	//   - application/json
	JSONProducer runtime.Producer
	// TxtProducer registers a producer for the following mime types:
	//   - text/plain
	TxtProducer runtime.Producer

	// BearerAuth registers a function that takes a token and returns a principal
	// it performs authentication based on an api key Authorization provided in the header
	BearerAuth func(string) (interface{}, error)

	// APIAuthorizer provides access control (ACL/RBAC/ABAC) by providing access to the request and authenticated principal
	APIAuthorizer runtime.Authorizer

	// UsersAddGroupForUserHandler sets the operation handler for the add group for user operation
	UsersAddGroupForUserHandler users.AddGroupForUserHandler
	// UsersCancelBookingHandler sets the operation handler for the cancel booking operation
	UsersCancelBookingHandler users.CancelBookingHandler
	// AdminCheckManifestHandler sets the operation handler for the check manifest operation
	AdminCheckManifestHandler admin.CheckManifestHandler
	// AdminExportBookingsHandler sets the operation handler for the export bookings operation
	AdminExportBookingsHandler admin.ExportBookingsHandler
	// AdminExportManifestHandler sets the operation handler for the export manifest operation
	AdminExportManifestHandler admin.ExportManifestHandler
	// AdminExportOldBookingsHandler sets the operation handler for the export old bookings operation
	AdminExportOldBookingsHandler admin.ExportOldBookingsHandler
	// AdminExportUsersHandler sets the operation handler for the export users operation
	AdminExportUsersHandler admin.ExportUsersHandler
	// UsersGetAccessTokenHandler sets the operation handler for the get access token operation
	UsersGetAccessTokenHandler users.GetAccessTokenHandler
	// UsersGetActivityHandler sets the operation handler for the get activity operation
	UsersGetActivityHandler users.GetActivityHandler
	// UsersGetAvailabilityHandler sets the operation handler for the get availability operation
	UsersGetAvailabilityHandler users.GetAvailabilityHandler
	// UsersGetBookingsForUserHandler sets the operation handler for the get bookings for user operation
	UsersGetBookingsForUserHandler users.GetBookingsForUserHandler
	// UsersGetDescriptionHandler sets the operation handler for the get description operation
	UsersGetDescriptionHandler users.GetDescriptionHandler
	// UsersGetGroupHandler sets the operation handler for the get group operation
	UsersGetGroupHandler users.GetGroupHandler
	// UsersGetGroupsForUserHandler sets the operation handler for the get groups for user operation
	UsersGetGroupsForUserHandler users.GetGroupsForUserHandler
	// UsersGetOldBookingsForUserHandler sets the operation handler for the get old bookings for user operation
	UsersGetOldBookingsForUserHandler users.GetOldBookingsForUserHandler
	// UsersGetPolicyHandler sets the operation handler for the get policy operation
	UsersGetPolicyHandler users.GetPolicyHandler
	// UsersGetPolicyStatusForUserHandler sets the operation handler for the get policy status for user operation
	UsersGetPolicyStatusForUserHandler users.GetPolicyStatusForUserHandler
	// AdminGetResourceIsAvailableHandler sets the operation handler for the get resource is available operation
	AdminGetResourceIsAvailableHandler admin.GetResourceIsAvailableHandler
	// AdminGetResourcesHandler sets the operation handler for the get resources operation
	AdminGetResourcesHandler admin.GetResourcesHandler
	// AdminGetSlotIsAvailableHandler sets the operation handler for the get slot is available operation
	AdminGetSlotIsAvailableHandler admin.GetSlotIsAvailableHandler
	// UsersMakeBookingHandler sets the operation handler for the make booking operation
	UsersMakeBookingHandler users.MakeBookingHandler
	// AdminReplaceBookingsHandler sets the operation handler for the replace bookings operation
	AdminReplaceBookingsHandler admin.ReplaceBookingsHandler
	// AdminReplaceManifestHandler sets the operation handler for the replace manifest operation
	AdminReplaceManifestHandler admin.ReplaceManifestHandler
	// AdminReplaceOldBookingsHandler sets the operation handler for the replace old bookings operation
	AdminReplaceOldBookingsHandler admin.ReplaceOldBookingsHandler
	// AdminSetResourceIsAvailableHandler sets the operation handler for the set resource is available operation
	AdminSetResourceIsAvailableHandler admin.SetResourceIsAvailableHandler
	// AdminSetSlotIsAvailableHandler sets the operation handler for the set slot is available operation
	AdminSetSlotIsAvailableHandler admin.SetSlotIsAvailableHandler
	// UsersUniqueNameHandler sets the operation handler for the unique name operation
	UsersUniqueNameHandler users.UniqueNameHandler
	// AdminGetStoreStatusAdminHandler sets the operation handler for the get store status admin operation
	AdminGetStoreStatusAdminHandler admin.GetStoreStatusAdminHandler
	// UsersGetStoreStatusUserHandler sets the operation handler for the get store status user operation
	UsersGetStoreStatusUserHandler users.GetStoreStatusUserHandler
	// AdminSetLockHandler sets the operation handler for the set lock operation
	AdminSetLockHandler admin.SetLockHandler

	// ServeError is called when an error is received, there is a default handler
	// but you can set your own with this
	ServeError func(http.ResponseWriter, *http.Request, error)

	// PreServerShutdown is called before the HTTP(S) server is shutdown
	// This allows for custom functions to get executed before the HTTP(S) server stops accepting traffic
	PreServerShutdown func()

	// ServerShutdown is called when the HTTP(S) server is shut down and done
	// handling all active connections and does not accept connections any more
	ServerShutdown func()

	// Custom command line argument groups with their descriptions
	CommandLineOptionsGroups []swag.CommandLineOptionsGroup

	// User defined logger function.
	Logger func(string, ...interface{})
	// contains filtered or unexported fields
}

ServeAPI User API for booking slots in advance

func NewServeAPI

func NewServeAPI(spec *loads.Document) *ServeAPI

NewServeAPI creates a new Serve instance

func (*ServeAPI) AddMiddlewareFor

func (o *ServeAPI) AddMiddlewareFor(method, path string, builder middleware.Builder)

AddMiddlewareFor adds a http middleware to existing handler

func (*ServeAPI) AuthenticatorsFor

func (o *ServeAPI) AuthenticatorsFor(schemes map[string]spec.SecurityScheme) map[string]runtime.Authenticator

AuthenticatorsFor gets the authenticators for the specified security schemes

func (*ServeAPI) Authorizer

func (o *ServeAPI) Authorizer() runtime.Authorizer

Authorizer returns the registered authorizer

func (*ServeAPI) ConsumersFor

func (o *ServeAPI) ConsumersFor(mediaTypes []string) map[string]runtime.Consumer

ConsumersFor gets the consumers for the specified media types. MIME type parameters are ignored here.

func (*ServeAPI) Context

func (o *ServeAPI) Context() *middleware.Context

Context returns the middleware context for the serve API

func (*ServeAPI) DefaultConsumes

func (o *ServeAPI) DefaultConsumes() string

DefaultConsumes returns the default consumes media type

func (*ServeAPI) DefaultProduces

func (o *ServeAPI) DefaultProduces() string

DefaultProduces returns the default produces media type

func (*ServeAPI) Formats

func (o *ServeAPI) Formats() strfmt.Registry

Formats returns the registered string formats

func (*ServeAPI) HandlerFor

func (o *ServeAPI) HandlerFor(method, path string) (http.Handler, bool)

HandlerFor gets a http.Handler for the provided operation method and path

func (*ServeAPI) Init

func (o *ServeAPI) Init()

Init allows you to just initialize the handler cache, you can then recompose the middleware as you see fit

func (*ServeAPI) ProducersFor

func (o *ServeAPI) ProducersFor(mediaTypes []string) map[string]runtime.Producer

ProducersFor gets the producers for the specified media types. MIME type parameters are ignored here.

func (*ServeAPI) RegisterConsumer

func (o *ServeAPI) RegisterConsumer(mediaType string, consumer runtime.Consumer)

RegisterConsumer allows you to add (or override) a consumer for a media type.

func (*ServeAPI) RegisterFormat

func (o *ServeAPI) RegisterFormat(name string, format strfmt.Format, validator strfmt.Validator)

RegisterFormat registers a custom format validator

func (*ServeAPI) RegisterProducer

func (o *ServeAPI) RegisterProducer(mediaType string, producer runtime.Producer)

RegisterProducer allows you to add (or override) a producer for a media type.

func (*ServeAPI) Serve

func (o *ServeAPI) Serve(builder middleware.Builder) http.Handler

Serve creates a http handler to serve the API over HTTP can be used directly in http.ListenAndServe(":8000", api.Serve(nil))

func (*ServeAPI) ServeErrorFor

func (o *ServeAPI) ServeErrorFor(operationID string) func(http.ResponseWriter, *http.Request, error)

ServeErrorFor gets a error handler for a given operation id

func (*ServeAPI) SetDefaultConsumes

func (o *ServeAPI) SetDefaultConsumes(mediaType string)

SetDefaultConsumes returns the default consumes media type

func (*ServeAPI) SetDefaultProduces

func (o *ServeAPI) SetDefaultProduces(mediaType string)

SetDefaultProduces sets the default produces media type

func (*ServeAPI) SetSpec

func (o *ServeAPI) SetSpec(spec *loads.Document)

SetSpec sets a spec that will be served for the clients.

func (*ServeAPI) UseRedoc

func (o *ServeAPI) UseRedoc()

UseRedoc for documentation at /docs

func (*ServeAPI) UseSwaggerUI

func (o *ServeAPI) UseSwaggerUI()

UseSwaggerUI for documentation at /docs

func (*ServeAPI) Validate

func (o *ServeAPI) Validate() error

Validate validates the registrations in the ServeAPI

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL