github.com/Bio-core/jtree@v0.0.0-20190705165106-1d7a7e7d6272/restapi/operations/post_upload.go (about)

     1  // Code generated by go-swagger; DO NOT EDIT.
     2  
     3  package operations
     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  	middleware "github.com/go-openapi/runtime/middleware"
    12  )
    13  
    14  // PostUploadHandlerFunc turns a function with the right signature into a post upload handler
    15  type PostUploadHandlerFunc func(PostUploadParams) middleware.Responder
    16  
    17  // Handle executing the request and returning a response
    18  func (fn PostUploadHandlerFunc) Handle(params PostUploadParams) middleware.Responder {
    19  	return fn(params)
    20  }
    21  
    22  // PostUploadHandler interface for that can handle valid post upload params
    23  type PostUploadHandler interface {
    24  	Handle(PostUploadParams) middleware.Responder
    25  }
    26  
    27  // NewPostUpload creates a new http.Handler for the post upload operation
    28  func NewPostUpload(ctx *middleware.Context, handler PostUploadHandler) *PostUpload {
    29  	return &PostUpload{Context: ctx, Handler: handler}
    30  }
    31  
    32  /*PostUpload swagger:route POST /upload postUpload
    33  
    34  Uploads a file.
    35  
    36  */
    37  type PostUpload struct {
    38  	Context *middleware.Context
    39  	Handler PostUploadHandler
    40  }
    41  
    42  func (o *PostUpload) ServeHTTP(rw http.ResponseWriter, r *http.Request) {
    43  	route, rCtx, _ := o.Context.RouteInfo(r)
    44  	if rCtx != nil {
    45  		r = rCtx
    46  	}
    47  	var Params = NewPostUploadParams()
    48  
    49  	if err := o.Context.BindValidRequest(r, route, &Params); err != nil { // bind params
    50  		o.Context.Respond(rw, r, route.Produces, route, err)
    51  		return
    52  	}
    53  
    54  	res := o.Handler.Handle(Params) // actually handle the request
    55  
    56  	o.Context.Respond(rw, r, route.Produces, route, res)
    57  
    58  }