mirror of
https://github.com/openziti/zrok.git
synced 2025-06-26 12:42:18 +02:00
100 lines
2.3 KiB
Go
100 lines
2.3 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 (
|
|
"context"
|
|
"net/http"
|
|
|
|
"github.com/go-openapi/runtime/middleware"
|
|
"github.com/go-openapi/strfmt"
|
|
"github.com/go-openapi/swag"
|
|
)
|
|
|
|
// LoginHandlerFunc turns a function with the right signature into a login handler
|
|
type LoginHandlerFunc func(LoginParams) middleware.Responder
|
|
|
|
// Handle executing the request and returning a response
|
|
func (fn LoginHandlerFunc) Handle(params LoginParams) middleware.Responder {
|
|
return fn(params)
|
|
}
|
|
|
|
// LoginHandler interface for that can handle valid login params
|
|
type LoginHandler interface {
|
|
Handle(LoginParams) middleware.Responder
|
|
}
|
|
|
|
// NewLogin creates a new http.Handler for the login operation
|
|
func NewLogin(ctx *middleware.Context, handler LoginHandler) *Login {
|
|
return &Login{Context: ctx, Handler: handler}
|
|
}
|
|
|
|
/*
|
|
Login swagger:route POST /login account login
|
|
|
|
Login login API
|
|
*/
|
|
type Login struct {
|
|
Context *middleware.Context
|
|
Handler LoginHandler
|
|
}
|
|
|
|
func (o *Login) ServeHTTP(rw http.ResponseWriter, r *http.Request) {
|
|
route, rCtx, _ := o.Context.RouteInfo(r)
|
|
if rCtx != nil {
|
|
*r = *rCtx
|
|
}
|
|
var Params = NewLoginParams()
|
|
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)
|
|
|
|
}
|
|
|
|
// LoginBody login body
|
|
//
|
|
// swagger:model LoginBody
|
|
type LoginBody struct {
|
|
|
|
// email
|
|
Email string `json:"email,omitempty"`
|
|
|
|
// password
|
|
Password string `json:"password,omitempty"`
|
|
}
|
|
|
|
// Validate validates this login body
|
|
func (o *LoginBody) Validate(formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validates this login body based on context it is used
|
|
func (o *LoginBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (o *LoginBody) MarshalBinary() ([]byte, error) {
|
|
if o == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(o)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (o *LoginBody) UnmarshalBinary(b []byte) error {
|
|
var res LoginBody
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*o = res
|
|
return nil
|
|
}
|