Files
gerald/internal/interfaces/rest/restapi/operations/feedback/upvote_feedback_parameters.go
aspasskiy ed403c2c72
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/promote/production Build is passing
upvotes
2024-04-23 19:13:48 +03:00

152 lines
3.8 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 (
"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"
)
// NewUpvoteFeedbackParams creates a new UpvoteFeedbackParams object
//
// There are no default values defined in the spec.
func NewUpvoteFeedbackParams() UpvoteFeedbackParams {
return UpvoteFeedbackParams{}
}
// UpvoteFeedbackParams contains all the bound params for the upvote feedback operation
// typically these are obtained from a http.Request
//
// swagger:parameters upvoteFeedback
type UpvoteFeedbackParams struct {
// HTTP Request Object
HTTPRequest *http.Request `json:"-"`
/*
Required: true
In: query
*/
Action string
/*Feedback UUID
Required: true
In: path
*/
FeedbackUUID string
/*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 NewUpvoteFeedbackParams() beforehand.
func (o *UpvoteFeedbackParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error {
var res []error
o.HTTPRequest = r
qs := runtime.Values(r.URL.Query())
qAction, qhkAction, _ := qs.GetOK("action")
if err := o.bindAction(qAction, qhkAction, route.Formats); err != nil {
res = append(res, err)
}
rFeedbackUUID, rhkFeedbackUUID, _ := route.Params.GetOK("feedback_uuid")
if err := o.bindFeedbackUUID(rFeedbackUUID, rhkFeedbackUUID, route.Formats); err != nil {
res = append(res, err)
}
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
}
// bindAction binds and validates parameter Action from query.
func (o *UpvoteFeedbackParams) bindAction(rawData []string, hasKey bool, formats strfmt.Registry) error {
if !hasKey {
return errors.Required("action", "query", rawData)
}
var raw string
if len(rawData) > 0 {
raw = rawData[len(rawData)-1]
}
// Required: true
// AllowEmptyValue: false
if err := validate.RequiredString("action", "query", raw); err != nil {
return err
}
o.Action = raw
if err := o.validateAction(formats); err != nil {
return err
}
return nil
}
// validateAction carries on validations for parameter Action
func (o *UpvoteFeedbackParams) validateAction(formats strfmt.Registry) error {
if err := validate.EnumCase("action", "query", o.Action, []interface{}{"upvote", "downvote"}, true); err != nil {
return err
}
return nil
}
// bindFeedbackUUID binds and validates parameter FeedbackUUID from path.
func (o *UpvoteFeedbackParams) bindFeedbackUUID(rawData []string, hasKey bool, formats strfmt.Registry) error {
var raw string
if len(rawData) > 0 {
raw = rawData[len(rawData)-1]
}
// Required: true
// Parameter is provided by construction from the route
o.FeedbackUUID = raw
return nil
}
// bindSessionUUID binds and validates parameter SessionUUID from query.
func (o *UpvoteFeedbackParams) 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
}