119 lines
3.0 KiB
Go
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 UUID
|
|
Required: true
|
|
In: query
|
|
*/
|
|
SessionUUID 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", ""))
|
|
}
|
|
|
|
qSessionUUID, qhkSessionUUID, _ := qs.GetOK("session_uuid")
|
|
if err := o.bindSessionUUID(qSessionUUID, qhkSessionUUID, route.Formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// bindSessionUUID binds and validates parameter SessionUUID from query.
|
|
func (o *CreateFeedbackParams) bindSessionUUID(rawData []string, hasKey bool, formats strfmt.Registry) error {
|
|
if !hasKey {
|
|
return errors.Required("session_uuid", "query", rawData)
|
|
}
|
|
var raw string
|
|
if len(rawData) > 0 {
|
|
raw = rawData[len(rawData)-1]
|
|
}
|
|
|
|
// Required: true
|
|
// AllowEmptyValue: false
|
|
|
|
if err := validate.RequiredString("session_uuid", "query", raw); err != nil {
|
|
return err
|
|
}
|
|
o.SessionUUID = raw
|
|
|
|
return nil
|
|
}
|