github.com/Bio-core/jtree@v0.0.0-20190705165106-1d7a7e7d6272/restapi/operations/add_patient.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  // AddPatientHandlerFunc turns a function with the right signature into a add patient handler
    15  type AddPatientHandlerFunc func(AddPatientParams) middleware.Responder
    16  
    17  // Handle executing the request and returning a response
    18  func (fn AddPatientHandlerFunc) Handle(params AddPatientParams) middleware.Responder {
    19  	return fn(params)
    20  }
    21  
    22  // AddPatientHandler interface for that can handle valid add patient params
    23  type AddPatientHandler interface {
    24  	Handle(AddPatientParams) middleware.Responder
    25  }
    26  
    27  // NewAddPatient creates a new http.Handler for the add patient operation
    28  func NewAddPatient(ctx *middleware.Context, handler AddPatientHandler) *AddPatient {
    29  	return &AddPatient{Context: ctx, Handler: handler}
    30  }
    31  
    32  /*AddPatient swagger:route POST /patient addPatient
    33  
    34  adds a patient item
    35  
    36  Adds a patient to the system
    37  
    38  */
    39  type AddPatient struct {
    40  	Context *middleware.Context
    41  	Handler AddPatientHandler
    42  }
    43  
    44  func (o *AddPatient) ServeHTTP(rw http.ResponseWriter, r *http.Request) {
    45  	route, rCtx, _ := o.Context.RouteInfo(r)
    46  	if rCtx != nil {
    47  		r = rCtx
    48  	}
    49  	var Params = NewAddPatientParams()
    50  
    51  	if err := o.Context.BindValidRequest(r, route, &Params); err != nil { // bind params
    52  		o.Context.Respond(rw, r, route.Produces, route, err)
    53  		return
    54  	}
    55  
    56  	res := o.Handler.Handle(Params) // actually handle the request
    57  
    58  	o.Context.Respond(rw, r, route.Produces, route, res)
    59  
    60  }