zrok/rest_server_zrok/operations/account/reset_password.go
2023-01-18 13:05:10 -06:00

57 lines
1.6 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
package account
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the generate command
import (
"net/http"
"github.com/go-openapi/runtime/middleware"
)
// ResetPasswordHandlerFunc turns a function with the right signature into a reset password handler
type ResetPasswordHandlerFunc func(ResetPasswordParams) middleware.Responder
// Handle executing the request and returning a response
func (fn ResetPasswordHandlerFunc) Handle(params ResetPasswordParams) middleware.Responder {
return fn(params)
}
// ResetPasswordHandler interface for that can handle valid reset password params
type ResetPasswordHandler interface {
Handle(ResetPasswordParams) middleware.Responder
}
// NewResetPassword creates a new http.Handler for the reset password operation
func NewResetPassword(ctx *middleware.Context, handler ResetPasswordHandler) *ResetPassword {
return &ResetPassword{Context: ctx, Handler: handler}
}
/*
ResetPassword swagger:route POST /resetPassword account resetPassword
ResetPassword reset password API
*/
type ResetPassword struct {
Context *middleware.Context
Handler ResetPasswordHandler
}
func (o *ResetPassword) ServeHTTP(rw http.ResponseWriter, r *http.Request) {
route, rCtx, _ := o.Context.RouteInfo(r)
if rCtx != nil {
*r = *rCtx
}
var Params = NewResetPasswordParams()
if err := o.Context.BindValidRequest(r, route, &Params); err != nil { // bind params
o.Context.Respond(rw, r, route.Produces, route, err)
return
}
res := o.Handler.Handle(Params) // actually handle the request
o.Context.Respond(rw, r, route.Produces, route, res)
}