github.com/emreu/go-swagger@v0.22.1/examples/task-tracker/restapi/operations/tasks/create_task_parameters.go (about) 1 // Code generated by go-swagger; DO NOT EDIT. 2 3 package tasks 4 5 // This file was generated by the swagger tool. 6 // Editing this file might prove futile when you re-run the swagger generate command 7 8 import ( 9 "io" 10 "net/http" 11 12 "github.com/go-openapi/errors" 13 "github.com/go-openapi/runtime" 14 "github.com/go-openapi/runtime/middleware" 15 16 models "github.com/go-swagger/go-swagger/examples/task-tracker/models" 17 ) 18 19 // NewCreateTaskParams creates a new CreateTaskParams object 20 // no default values defined in spec. 21 func NewCreateTaskParams() CreateTaskParams { 22 23 return CreateTaskParams{} 24 } 25 26 // CreateTaskParams contains all the bound params for the create task operation 27 // typically these are obtained from a http.Request 28 // 29 // swagger:parameters createTask 30 type CreateTaskParams struct { 31 32 // HTTP Request Object 33 HTTPRequest *http.Request `json:"-"` 34 35 /*The task to create 36 Required: true 37 In: body 38 */ 39 Body *models.Task 40 } 41 42 // BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface 43 // for simple values it will use straight method calls. 44 // 45 // To ensure default values, the struct must have been initialized with NewCreateTaskParams() beforehand. 46 func (o *CreateTaskParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error { 47 var res []error 48 49 o.HTTPRequest = r 50 51 if runtime.HasBody(r) { 52 defer r.Body.Close() 53 var body models.Task 54 if err := route.Consumer.Consume(r.Body, &body); err != nil { 55 if err == io.EOF { 56 res = append(res, errors.Required("body", "body")) 57 } else { 58 res = append(res, errors.NewParseError("body", "body", "", err)) 59 } 60 } else { 61 // validate body object 62 if err := body.Validate(route.Formats); err != nil { 63 res = append(res, err) 64 } 65 66 if len(res) == 0 { 67 o.Body = &body 68 } 69 } 70 } else { 71 res = append(res, errors.Required("body", "body")) 72 } 73 if len(res) > 0 { 74 return errors.CompositeValidationError(res...) 75 } 76 return nil 77 }