// Code generated by go-swagger; DO NOT EDIT. package operations // This file was generated by the swagger tool. // Editing this file might prove futile when you re-run the swagger generate command import ( "fmt" "net/http" "strings" errors "github.com/go-openapi/errors" loads "github.com/go-openapi/loads" runtime "github.com/go-openapi/runtime" middleware "github.com/go-openapi/runtime/middleware" security "github.com/go-openapi/runtime/security" spec "github.com/go-openapi/spec" strfmt "github.com/go-openapi/strfmt" "github.com/go-openapi/swag" "src.dualinventive.com/go/authentication-service/rest/server/operations/authentication" ) // NewAuthenticationAPI creates a new Authentication instance func NewAuthenticationAPI(spec *loads.Document) *AuthenticationAPI { return &AuthenticationAPI{ handlers: make(map[string]map[string]http.Handler), formats: strfmt.Default, defaultConsumes: "application/json", defaultProduces: "application/json", customConsumers: make(map[string]runtime.Consumer), customProducers: make(map[string]runtime.Producer), ServerShutdown: func() {}, spec: spec, ServeError: errors.ServeError, BasicAuthenticator: security.BasicAuth, APIKeyAuthenticator: security.APIKeyAuth, BearerAuthenticator: security.BearerAuth, JSONConsumer: runtime.JSONConsumer(), JSONProducer: runtime.JSONProducer(), AuthenticationDeleteTokenHandler: authentication.DeleteTokenHandlerFunc(func(params authentication.DeleteTokenParams, principal interface{}) middleware.Responder { return middleware.NotImplemented("operation AuthenticationDeleteToken has not yet been implemented") }), AuthenticationGetMeHandler: authentication.GetMeHandlerFunc(func(params authentication.GetMeParams, principal interface{}) middleware.Responder { return middleware.NotImplemented("operation AuthenticationGetMe has not yet been implemented") }), AuthenticationListTokensHandler: authentication.ListTokensHandlerFunc(func(params authentication.ListTokensParams, principal interface{}) middleware.Responder { return middleware.NotImplemented("operation AuthenticationListTokens has not yet been implemented") }), AuthenticationPostLoginHandler: authentication.PostLoginHandlerFunc(func(params authentication.PostLoginParams) middleware.Responder { return middleware.NotImplemented("operation AuthenticationPostLogin has not yet been implemented") }), AuthenticationPostPasswordResetRedeemHandler: authentication.PostPasswordResetRedeemHandlerFunc(func(params authentication.PostPasswordResetRedeemParams) middleware.Responder { return middleware.NotImplemented("operation AuthenticationPostPasswordResetRedeem has not yet been implemented") }), AuthenticationPostPasswordResetRequestHandler: authentication.PostPasswordResetRequestHandlerFunc(func(params authentication.PostPasswordResetRequestParams) middleware.Responder { return middleware.NotImplemented("operation AuthenticationPostPasswordResetRequest has not yet been implemented") }), AuthenticationVerifyHandler: authentication.VerifyHandlerFunc(func(params authentication.VerifyParams, principal interface{}) middleware.Responder { return middleware.NotImplemented("operation AuthenticationVerify has not yet been implemented") }), AuthenticationLogoutHandler: authentication.LogoutHandlerFunc(func(params authentication.LogoutParams, principal interface{}) middleware.Responder { return middleware.NotImplemented("operation AuthenticationLogout has not yet been implemented") }), // Applies when the "Authorization" header is set TokenAuthAuth: func(token string) (interface{}, error) { return nil, errors.NotImplemented("api key auth (TokenAuth) Authorization from header param [Authorization] has not yet been implemented") }, // default authorizer is authorized meaning no requests are blocked APIAuthorizer: security.Authorized(), } } /*AuthenticationAPI DualInventive's common authentication API */ type AuthenticationAPI struct { spec *loads.Document context *middleware.Context handlers map[string]map[string]http.Handler formats strfmt.Registry customConsumers map[string]runtime.Consumer customProducers map[string]runtime.Producer defaultConsumes string defaultProduces string Middleware func(middleware.Builder) http.Handler // BasicAuthenticator generates a runtime.Authenticator from the supplied basic auth function. // It has a default implemention 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 implemention 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 implemention 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 a "application/json" mime type JSONConsumer runtime.Consumer // JSONProducer registers a producer for a "application/json" mime type JSONProducer runtime.Producer // TokenAuthAuth registers a function that takes a token and returns a principal // it performs authentication based on an api key Authorization provided in the header TokenAuthAuth func(string) (interface{}, error) // APIAuthorizer provides access control (ACL/RBAC/ABAC) by providing access to the request and authenticated principal APIAuthorizer runtime.Authorizer // AuthenticationDeleteTokenHandler sets the operation handler for the delete token operation AuthenticationDeleteTokenHandler authentication.DeleteTokenHandler // AuthenticationGetMeHandler sets the operation handler for the get me operation AuthenticationGetMeHandler authentication.GetMeHandler // AuthenticationListTokensHandler sets the operation handler for the list tokens operation AuthenticationListTokensHandler authentication.ListTokensHandler // AuthenticationPostLoginHandler sets the operation handler for the post login operation AuthenticationPostLoginHandler authentication.PostLoginHandler // AuthenticationPostPasswordResetRedeemHandler sets the operation handler for the post password reset redeem operation AuthenticationPostPasswordResetRedeemHandler authentication.PostPasswordResetRedeemHandler // AuthenticationPostPasswordResetRequestHandler sets the operation handler for the post password reset request operation AuthenticationPostPasswordResetRequestHandler authentication.PostPasswordResetRequestHandler // AuthenticationVerifyHandler sets the operation handler for the verify operation AuthenticationVerifyHandler authentication.VerifyHandler // AuthenticationLogoutHandler sets the operation handler for the logout operation AuthenticationLogoutHandler authentication.LogoutHandler // 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) // 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{}) } // SetDefaultProduces sets the default produces media type func (o *AuthenticationAPI) SetDefaultProduces(mediaType string) { o.defaultProduces = mediaType } // SetDefaultConsumes returns the default consumes media type func (o *AuthenticationAPI) SetDefaultConsumes(mediaType string) { o.defaultConsumes = mediaType } // SetSpec sets a spec that will be served for the clients. func (o *AuthenticationAPI) SetSpec(spec *loads.Document) { o.spec = spec } // DefaultProduces returns the default produces media type func (o *AuthenticationAPI) DefaultProduces() string { return o.defaultProduces } // DefaultConsumes returns the default consumes media type func (o *AuthenticationAPI) DefaultConsumes() string { return o.defaultConsumes } // Formats returns the registered string formats func (o *AuthenticationAPI) Formats() strfmt.Registry { return o.formats } // RegisterFormat registers a custom format validator func (o *AuthenticationAPI) RegisterFormat(name string, format strfmt.Format, validator strfmt.Validator) { o.formats.Add(name, format, validator) } // Validate validates the registrations in the AuthenticationAPI func (o *AuthenticationAPI) Validate() error { var unregistered []string if o.JSONConsumer == nil { unregistered = append(unregistered, "JSONConsumer") } if o.JSONProducer == nil { unregistered = append(unregistered, "JSONProducer") } if o.TokenAuthAuth == nil { unregistered = append(unregistered, "AuthorizationAuth") } if o.AuthenticationDeleteTokenHandler == nil { unregistered = append(unregistered, "authentication.DeleteTokenHandler") } if o.AuthenticationGetMeHandler == nil { unregistered = append(unregistered, "authentication.GetMeHandler") } if o.AuthenticationListTokensHandler == nil { unregistered = append(unregistered, "authentication.ListTokensHandler") } if o.AuthenticationPostLoginHandler == nil { unregistered = append(unregistered, "authentication.PostLoginHandler") } if o.AuthenticationPostPasswordResetRedeemHandler == nil { unregistered = append(unregistered, "authentication.PostPasswordResetRedeemHandler") } if o.AuthenticationPostPasswordResetRequestHandler == nil { unregistered = append(unregistered, "authentication.PostPasswordResetRequestHandler") } if o.AuthenticationVerifyHandler == nil { unregistered = append(unregistered, "authentication.VerifyHandler") } if o.AuthenticationLogoutHandler == nil { unregistered = append(unregistered, "authentication.LogoutHandler") } if len(unregistered) > 0 { return fmt.Errorf("missing registration: %s", strings.Join(unregistered, ", ")) } return nil } // ServeErrorFor gets a error handler for a given operation id func (o *AuthenticationAPI) ServeErrorFor(operationID string) func(http.ResponseWriter, *http.Request, error) { return o.ServeError } // AuthenticatorsFor gets the authenticators for the specified security schemes func (o *AuthenticationAPI) AuthenticatorsFor(schemes map[string]spec.SecurityScheme) map[string]runtime.Authenticator { result := make(map[string]runtime.Authenticator) for name, scheme := range schemes { switch name { case "TokenAuth": result[name] = o.APIKeyAuthenticator(scheme.Name, scheme.In, o.TokenAuthAuth) } } return result } // Authorizer returns the registered authorizer func (o *AuthenticationAPI) Authorizer() runtime.Authorizer { return o.APIAuthorizer } // ConsumersFor gets the consumers for the specified media types func (o *AuthenticationAPI) ConsumersFor(mediaTypes []string) map[string]runtime.Consumer { result := make(map[string]runtime.Consumer) for _, mt := range mediaTypes { switch mt { case "application/json": result["application/json"] = o.JSONConsumer } if c, ok := o.customConsumers[mt]; ok { result[mt] = c } } return result } // ProducersFor gets the producers for the specified media types func (o *AuthenticationAPI) ProducersFor(mediaTypes []string) map[string]runtime.Producer { result := make(map[string]runtime.Producer) for _, mt := range mediaTypes { switch mt { case "application/json": result["application/json"] = o.JSONProducer } if p, ok := o.customProducers[mt]; ok { result[mt] = p } } return result } // HandlerFor gets a http.Handler for the provided operation method and path func (o *AuthenticationAPI) HandlerFor(method, path string) (http.Handler, bool) { if o.handlers == nil { return nil, false } um := strings.ToUpper(method) if _, ok := o.handlers[um]; !ok { return nil, false } if path == "/" { path = "" } h, ok := o.handlers[um][path] return h, ok } // Context returns the middleware context for the authentication API func (o *AuthenticationAPI) Context() *middleware.Context { if o.context == nil { o.context = middleware.NewRoutableContext(o.spec, o, nil) } return o.context } func (o *AuthenticationAPI) initHandlerCache() { o.Context() // don't care about the result, just that the initialization happened if o.handlers == nil { o.handlers = make(map[string]map[string]http.Handler) } if o.handlers["DELETE"] == nil { o.handlers["DELETE"] = make(map[string]http.Handler) } o.handlers["DELETE"]["/tokens/{opaqueTokenId}"] = authentication.NewDeleteToken(o.context, o.AuthenticationDeleteTokenHandler) if o.handlers["GET"] == nil { o.handlers["GET"] = make(map[string]http.Handler) } o.handlers["GET"]["/me"] = authentication.NewGetMe(o.context, o.AuthenticationGetMeHandler) if o.handlers["GET"] == nil { o.handlers["GET"] = make(map[string]http.Handler) } o.handlers["GET"]["/tokens"] = authentication.NewListTokens(o.context, o.AuthenticationListTokensHandler) if o.handlers["POST"] == nil { o.handlers["POST"] = make(map[string]http.Handler) } o.handlers["POST"]["/login"] = authentication.NewPostLogin(o.context, o.AuthenticationPostLoginHandler) if o.handlers["POST"] == nil { o.handlers["POST"] = make(map[string]http.Handler) } o.handlers["POST"]["/password-reset/redeem"] = authentication.NewPostPasswordResetRedeem(o.context, o.AuthenticationPostPasswordResetRedeemHandler) if o.handlers["POST"] == nil { o.handlers["POST"] = make(map[string]http.Handler) } o.handlers["POST"]["/password-reset/request"] = authentication.NewPostPasswordResetRequest(o.context, o.AuthenticationPostPasswordResetRequestHandler) if o.handlers["POST"] == nil { o.handlers["POST"] = make(map[string]http.Handler) } o.handlers["POST"]["/verify"] = authentication.NewVerify(o.context, o.AuthenticationVerifyHandler) if o.handlers["POST"] == nil { o.handlers["POST"] = make(map[string]http.Handler) } o.handlers["POST"]["/logout"] = authentication.NewLogout(o.context, o.AuthenticationLogoutHandler) } // Serve creates a http handler to serve the API over HTTP // can be used directly in http.ListenAndServe(":8000", api.Serve(nil)) func (o *AuthenticationAPI) Serve(builder middleware.Builder) http.Handler { o.Init() if o.Middleware != nil { return o.Middleware(builder) } return o.context.APIHandler(builder) } // Init allows you to just initialize the handler cache, you can then recompose the middleware as you see fit func (o *AuthenticationAPI) Init() { if len(o.handlers) == 0 { o.initHandlerCache() } } // RegisterConsumer allows you to add (or override) a consumer for a media type. func (o *AuthenticationAPI) RegisterConsumer(mediaType string, consumer runtime.Consumer) { o.customConsumers[mediaType] = consumer } // RegisterProducer allows you to add (or override) a producer for a media type. func (o *AuthenticationAPI) RegisterProducer(mediaType string, producer runtime.Producer) { o.customProducers[mediaType] = producer }