forked from TrueCloudLab/frostfs-rest-gw
[#73] Add missed CORS
Allow X-Bearer-For-All-Users, X-Bearer-Lifetime headers. Add CORS to /auth/bearer route. Signed-off-by: Denis Kirillov <denis@nspcc.ru>
This commit is contained in:
parent
b2fdb8c5f8
commit
feaea15aa7
8 changed files with 247 additions and 1 deletions
46
gen/restapi/operations/options_auth_bearer_parameters.go
Normal file
46
gen/restapi/operations/options_auth_bearer_parameters.go
Normal file
|
@ -0,0 +1,46 @@
|
|||
// 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 (
|
||||
"net/http"
|
||||
|
||||
"github.com/go-openapi/errors"
|
||||
"github.com/go-openapi/runtime/middleware"
|
||||
)
|
||||
|
||||
// NewOptionsAuthBearerParams creates a new OptionsAuthBearerParams object
|
||||
//
|
||||
// There are no default values defined in the spec.
|
||||
func NewOptionsAuthBearerParams() OptionsAuthBearerParams {
|
||||
|
||||
return OptionsAuthBearerParams{}
|
||||
}
|
||||
|
||||
// OptionsAuthBearerParams contains all the bound params for the options auth bearer operation
|
||||
// typically these are obtained from a http.Request
|
||||
//
|
||||
// swagger:parameters optionsAuthBearer
|
||||
type OptionsAuthBearerParams struct {
|
||||
|
||||
// HTTP Request Object
|
||||
HTTPRequest *http.Request `json:"-"`
|
||||
}
|
||||
|
||||
// BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface
|
||||
// for simple values it will use straight method calls.
|
||||
//
|
||||
// To ensure default values, the struct must have been initialized with NewOptionsAuthBearerParams() beforehand.
|
||||
func (o *OptionsAuthBearerParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error {
|
||||
var res []error
|
||||
|
||||
o.HTTPRequest = r
|
||||
|
||||
if len(res) > 0 {
|
||||
return errors.CompositeValidationError(res...)
|
||||
}
|
||||
return nil
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue