Files
gerald/internal/interfaces/rest/restapi/operations/feedback/create_feedback_parameters.go
2024-04-20 16:45:56 +03:00

119 lines
3.0 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
package feedback
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"io"
"net/http"
"github.com/go-openapi/errors"
"github.com/go-openapi/runtime"
"github.com/go-openapi/runtime/middleware"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/validate"
"gerald/internal/interfaces/rest/models"
)
// NewCreateFeedbackParams creates a new CreateFeedbackParams object
//
// There are no default values defined in the spec.
func NewCreateFeedbackParams() CreateFeedbackParams {
return CreateFeedbackParams{}
}
// CreateFeedbackParams contains all the bound params for the create feedback operation
// typically these are obtained from a http.Request
//
// swagger:parameters createFeedback
type CreateFeedbackParams struct {
// HTTP Request Object
HTTPRequest *http.Request `json:"-"`
/*Feedback object that needs to be created
Required: true
In: body
*/
Body *models.Feedback
/*Session ID
Required: true
In: query
*/
SessionID string
}
// 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 NewCreateFeedbackParams() beforehand.
func (o *CreateFeedbackParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error {
var res []error
o.HTTPRequest = r
qs := runtime.Values(r.URL.Query())
if runtime.HasBody(r) {
defer r.Body.Close()
var body models.Feedback
if err := route.Consumer.Consume(r.Body, &body); err != nil {
if err == io.EOF {
res = append(res, errors.Required("body", "body", ""))
} else {
res = append(res, errors.NewParseError("body", "body", "", err))
}
} else {
// validate body object
if err := body.Validate(route.Formats); err != nil {
res = append(res, err)
}
ctx := validate.WithOperationRequest(r.Context())
if err := body.ContextValidate(ctx, route.Formats); err != nil {
res = append(res, err)
}
if len(res) == 0 {
o.Body = &body
}
}
} else {
res = append(res, errors.Required("body", "body", ""))
}
qSessionID, qhkSessionID, _ := qs.GetOK("session_id")
if err := o.bindSessionID(qSessionID, qhkSessionID, route.Formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
// bindSessionID binds and validates parameter SessionID from query.
func (o *CreateFeedbackParams) bindSessionID(rawData []string, hasKey bool, formats strfmt.Registry) error {
if !hasKey {
return errors.Required("session_id", "query", rawData)
}
var raw string
if len(rawData) > 0 {
raw = rawData[len(rawData)-1]
}
// Required: true
// AllowEmptyValue: false
if err := validate.RequiredString("session_id", "query", raw); err != nil {
return err
}
o.SessionID = raw
return nil
}