github.com/circl-dev/go-swagger@v0.31.0/examples/task-tracker/restapi/operations/tasks/update_task.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 generate command
     7  
     8  import (
     9  	"net/http"
    10  
    11  	"github.com/circl-dev/runtime/middleware"
    12  )
    13  
    14  // UpdateTaskHandlerFunc turns a function with the right signature into a update task handler
    15  type UpdateTaskHandlerFunc func(UpdateTaskParams, interface{}) middleware.Responder
    16  
    17  // Handle executing the request and returning a response
    18  func (fn UpdateTaskHandlerFunc) Handle(params UpdateTaskParams, principal interface{}) middleware.Responder {
    19  	return fn(params, principal)
    20  }
    21  
    22  // UpdateTaskHandler interface for that can handle valid update task params
    23  type UpdateTaskHandler interface {
    24  	Handle(UpdateTaskParams, interface{}) middleware.Responder
    25  }
    26  
    27  // NewUpdateTask creates a new http.Handler for the update task operation
    28  func NewUpdateTask(ctx *middleware.Context, handler UpdateTaskHandler) *UpdateTask {
    29  	return &UpdateTask{Context: ctx, Handler: handler}
    30  }
    31  
    32  /* UpdateTask swagger:route PUT /tasks/{id} tasks updateTask
    33  
    34  Updates the details for a task.
    35  
    36  Allows for updating a task.
    37  This operation requires authentication so that we know which user
    38  last updated the task.
    39  
    40  
    41  */
    42  type UpdateTask struct {
    43  	Context *middleware.Context
    44  	Handler UpdateTaskHandler
    45  }
    46  
    47  func (o *UpdateTask) ServeHTTP(rw http.ResponseWriter, r *http.Request) {
    48  	route, rCtx, _ := o.Context.RouteInfo(r)
    49  	if rCtx != nil {
    50  		*r = *rCtx
    51  	}
    52  	var Params = NewUpdateTaskParams()
    53  	uprinc, aCtx, err := o.Context.Authorize(r, route)
    54  	if err != nil {
    55  		o.Context.Respond(rw, r, route.Produces, route, err)
    56  		return
    57  	}
    58  	if aCtx != nil {
    59  		*r = *aCtx
    60  	}
    61  	var principal interface{}
    62  	if uprinc != nil {
    63  		principal = uprinc.(interface{}) // this is really a interface{}, I promise
    64  	}
    65  
    66  	if err := o.Context.BindValidRequest(r, route, &Params); err != nil { // bind params
    67  		o.Context.Respond(rw, r, route.Produces, route, err)
    68  		return
    69  	}
    70  
    71  	res := o.Handler.Handle(Params, principal) // actually handle the request
    72  	o.Context.Respond(rw, r, route.Produces, route, res)
    73  
    74  }