init
This commit is contained in:
@@ -0,0 +1,58 @@
|
||||
// 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 generate command
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
|
||||
"github.com/go-openapi/runtime/middleware"
|
||||
)
|
||||
|
||||
// CreateFeedbackHandlerFunc turns a function with the right signature into a create feedback handler
|
||||
type CreateFeedbackHandlerFunc func(CreateFeedbackParams) middleware.Responder
|
||||
|
||||
// Handle executing the request and returning a response
|
||||
func (fn CreateFeedbackHandlerFunc) Handle(params CreateFeedbackParams) middleware.Responder {
|
||||
return fn(params)
|
||||
}
|
||||
|
||||
// CreateFeedbackHandler interface for that can handle valid create feedback params
|
||||
type CreateFeedbackHandler interface {
|
||||
Handle(CreateFeedbackParams) middleware.Responder
|
||||
}
|
||||
|
||||
// NewCreateFeedback creates a new http.Handler for the create feedback operation
|
||||
func NewCreateFeedback(ctx *middleware.Context, handler CreateFeedbackHandler) *CreateFeedback {
|
||||
return &CreateFeedback{Context: ctx, Handler: handler}
|
||||
}
|
||||
|
||||
/*
|
||||
CreateFeedback swagger:route POST /feedback feedback createFeedback
|
||||
|
||||
# Create a feedback
|
||||
|
||||
Create a feedback
|
||||
*/
|
||||
type CreateFeedback struct {
|
||||
Context *middleware.Context
|
||||
Handler CreateFeedbackHandler
|
||||
}
|
||||
|
||||
func (o *CreateFeedback) ServeHTTP(rw http.ResponseWriter, r *http.Request) {
|
||||
route, rCtx, _ := o.Context.RouteInfo(r)
|
||||
if rCtx != nil {
|
||||
*r = *rCtx
|
||||
}
|
||||
var Params = NewCreateFeedbackParams()
|
||||
if err := o.Context.BindValidRequest(r, route, &Params); err != nil { // bind params
|
||||
o.Context.Respond(rw, r, route.Produces, route, err)
|
||||
return
|
||||
}
|
||||
|
||||
res := o.Handler.Handle(Params) // actually handle the request
|
||||
o.Context.Respond(rw, r, route.Produces, route, res)
|
||||
|
||||
}
|
||||
@@ -0,0 +1,118 @@
|
||||
// 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 (
|
||||
"io"
|
||||
"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"
|
||||
|
||||
"gerald/internal/interfaces/rest/models"
|
||||
)
|
||||
|
||||
// NewCreateFeedbackParams creates a new CreateFeedbackParams object
|
||||
//
|
||||
// There are no default values defined in the spec.
|
||||
func NewCreateFeedbackParams() CreateFeedbackParams {
|
||||
|
||||
return CreateFeedbackParams{}
|
||||
}
|
||||
|
||||
// CreateFeedbackParams contains all the bound params for the create feedback operation
|
||||
// typically these are obtained from a http.Request
|
||||
//
|
||||
// swagger:parameters createFeedback
|
||||
type CreateFeedbackParams struct {
|
||||
|
||||
// HTTP Request Object
|
||||
HTTPRequest *http.Request `json:"-"`
|
||||
|
||||
/*Feedback object that needs to be created
|
||||
Required: true
|
||||
In: body
|
||||
*/
|
||||
Body *models.Feedback
|
||||
/*Session ID
|
||||
Required: true
|
||||
In: query
|
||||
*/
|
||||
SessionID 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 NewCreateFeedbackParams() beforehand.
|
||||
func (o *CreateFeedbackParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error {
|
||||
var res []error
|
||||
|
||||
o.HTTPRequest = r
|
||||
|
||||
qs := runtime.Values(r.URL.Query())
|
||||
|
||||
if runtime.HasBody(r) {
|
||||
defer r.Body.Close()
|
||||
var body models.Feedback
|
||||
if err := route.Consumer.Consume(r.Body, &body); err != nil {
|
||||
if err == io.EOF {
|
||||
res = append(res, errors.Required("body", "body", ""))
|
||||
} else {
|
||||
res = append(res, errors.NewParseError("body", "body", "", err))
|
||||
}
|
||||
} else {
|
||||
// validate body object
|
||||
if err := body.Validate(route.Formats); err != nil {
|
||||
res = append(res, err)
|
||||
}
|
||||
|
||||
ctx := validate.WithOperationRequest(r.Context())
|
||||
if err := body.ContextValidate(ctx, route.Formats); err != nil {
|
||||
res = append(res, err)
|
||||
}
|
||||
|
||||
if len(res) == 0 {
|
||||
o.Body = &body
|
||||
}
|
||||
}
|
||||
} else {
|
||||
res = append(res, errors.Required("body", "body", ""))
|
||||
}
|
||||
|
||||
qSessionID, qhkSessionID, _ := qs.GetOK("session_id")
|
||||
if err := o.bindSessionID(qSessionID, qhkSessionID, route.Formats); err != nil {
|
||||
res = append(res, err)
|
||||
}
|
||||
if len(res) > 0 {
|
||||
return errors.CompositeValidationError(res...)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// bindSessionID binds and validates parameter SessionID from query.
|
||||
func (o *CreateFeedbackParams) bindSessionID(rawData []string, hasKey bool, formats strfmt.Registry) error {
|
||||
if !hasKey {
|
||||
return errors.Required("session_id", "query", rawData)
|
||||
}
|
||||
var raw string
|
||||
if len(rawData) > 0 {
|
||||
raw = rawData[len(rawData)-1]
|
||||
}
|
||||
|
||||
// Required: true
|
||||
// AllowEmptyValue: false
|
||||
|
||||
if err := validate.RequiredString("session_id", "query", raw); err != nil {
|
||||
return err
|
||||
}
|
||||
o.SessionID = raw
|
||||
|
||||
return nil
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
// 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/runtime"
|
||||
)
|
||||
|
||||
// CreateFeedbackOKCode is the HTTP code returned for type CreateFeedbackOK
|
||||
const CreateFeedbackOKCode int = 200
|
||||
|
||||
/*
|
||||
CreateFeedbackOK successful operation
|
||||
|
||||
swagger:response createFeedbackOK
|
||||
*/
|
||||
type CreateFeedbackOK struct {
|
||||
}
|
||||
|
||||
// NewCreateFeedbackOK creates CreateFeedbackOK with default headers values
|
||||
func NewCreateFeedbackOK() *CreateFeedbackOK {
|
||||
|
||||
return &CreateFeedbackOK{}
|
||||
}
|
||||
|
||||
// WriteResponse to the client
|
||||
func (o *CreateFeedbackOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
|
||||
|
||||
rw.Header().Del(runtime.HeaderContentType) //Remove Content-Type on empty responses
|
||||
|
||||
rw.WriteHeader(200)
|
||||
}
|
||||
|
||||
// CreateFeedbackForbiddenCode is the HTTP code returned for type CreateFeedbackForbidden
|
||||
const CreateFeedbackForbiddenCode int = 403
|
||||
|
||||
/*
|
||||
CreateFeedbackForbidden Forbidden
|
||||
|
||||
swagger:response createFeedbackForbidden
|
||||
*/
|
||||
type CreateFeedbackForbidden struct {
|
||||
}
|
||||
|
||||
// NewCreateFeedbackForbidden creates CreateFeedbackForbidden with default headers values
|
||||
func NewCreateFeedbackForbidden() *CreateFeedbackForbidden {
|
||||
|
||||
return &CreateFeedbackForbidden{}
|
||||
}
|
||||
|
||||
// WriteResponse to the client
|
||||
func (o *CreateFeedbackForbidden) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
|
||||
|
||||
rw.Header().Del(runtime.HeaderContentType) //Remove Content-Type on empty responses
|
||||
|
||||
rw.WriteHeader(403)
|
||||
}
|
||||
@@ -0,0 +1,100 @@
|
||||
// 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 generate command
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"net/url"
|
||||
golangswaggerpaths "path"
|
||||
)
|
||||
|
||||
// CreateFeedbackURL generates an URL for the create feedback operation
|
||||
type CreateFeedbackURL struct {
|
||||
SessionID string
|
||||
|
||||
_basePath string
|
||||
// avoid unkeyed usage
|
||||
_ struct{}
|
||||
}
|
||||
|
||||
// WithBasePath sets the base path for this url builder, only required when it's different from the
|
||||
// base path specified in the swagger spec.
|
||||
// When the value of the base path is an empty string
|
||||
func (o *CreateFeedbackURL) WithBasePath(bp string) *CreateFeedbackURL {
|
||||
o.SetBasePath(bp)
|
||||
return o
|
||||
}
|
||||
|
||||
// SetBasePath sets the base path for this url builder, only required when it's different from the
|
||||
// base path specified in the swagger spec.
|
||||
// When the value of the base path is an empty string
|
||||
func (o *CreateFeedbackURL) SetBasePath(bp string) {
|
||||
o._basePath = bp
|
||||
}
|
||||
|
||||
// Build a url path and query string
|
||||
func (o *CreateFeedbackURL) Build() (*url.URL, error) {
|
||||
var _result url.URL
|
||||
|
||||
var _path = "/feedback"
|
||||
|
||||
_basePath := o._basePath
|
||||
if _basePath == "" {
|
||||
_basePath = "/"
|
||||
}
|
||||
_result.Path = golangswaggerpaths.Join(_basePath, _path)
|
||||
|
||||
qs := make(url.Values)
|
||||
|
||||
sessionIDQ := o.SessionID
|
||||
if sessionIDQ != "" {
|
||||
qs.Set("session_id", sessionIDQ)
|
||||
}
|
||||
|
||||
_result.RawQuery = qs.Encode()
|
||||
|
||||
return &_result, nil
|
||||
}
|
||||
|
||||
// Must is a helper function to panic when the url builder returns an error
|
||||
func (o *CreateFeedbackURL) Must(u *url.URL, err error) *url.URL {
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
if u == nil {
|
||||
panic("url can't be nil")
|
||||
}
|
||||
return u
|
||||
}
|
||||
|
||||
// String returns the string representation of the path with query string
|
||||
func (o *CreateFeedbackURL) String() string {
|
||||
return o.Must(o.Build()).String()
|
||||
}
|
||||
|
||||
// BuildFull builds a full url with scheme, host, path and query string
|
||||
func (o *CreateFeedbackURL) BuildFull(scheme, host string) (*url.URL, error) {
|
||||
if scheme == "" {
|
||||
return nil, errors.New("scheme is required for a full url on CreateFeedbackURL")
|
||||
}
|
||||
if host == "" {
|
||||
return nil, errors.New("host is required for a full url on CreateFeedbackURL")
|
||||
}
|
||||
|
||||
base, err := o.Build()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
base.Scheme = scheme
|
||||
base.Host = host
|
||||
return base, nil
|
||||
}
|
||||
|
||||
// StringFull returns the string representation of a complete url
|
||||
func (o *CreateFeedbackURL) StringFull(scheme, host string) string {
|
||||
return o.Must(o.BuildFull(scheme, host)).String()
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
// 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 generate command
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
|
||||
"github.com/go-openapi/runtime/middleware"
|
||||
)
|
||||
|
||||
// GetFeedbacksHandlerFunc turns a function with the right signature into a get feedbacks handler
|
||||
type GetFeedbacksHandlerFunc func(GetFeedbacksParams) middleware.Responder
|
||||
|
||||
// Handle executing the request and returning a response
|
||||
func (fn GetFeedbacksHandlerFunc) Handle(params GetFeedbacksParams) middleware.Responder {
|
||||
return fn(params)
|
||||
}
|
||||
|
||||
// GetFeedbacksHandler interface for that can handle valid get feedbacks params
|
||||
type GetFeedbacksHandler interface {
|
||||
Handle(GetFeedbacksParams) middleware.Responder
|
||||
}
|
||||
|
||||
// NewGetFeedbacks creates a new http.Handler for the get feedbacks operation
|
||||
func NewGetFeedbacks(ctx *middleware.Context, handler GetFeedbacksHandler) *GetFeedbacks {
|
||||
return &GetFeedbacks{Context: ctx, Handler: handler}
|
||||
}
|
||||
|
||||
/*
|
||||
GetFeedbacks swagger:route GET /feedbacks feedback getFeedbacks
|
||||
|
||||
# Get all feedbacks
|
||||
|
||||
Get all feedbacks
|
||||
*/
|
||||
type GetFeedbacks struct {
|
||||
Context *middleware.Context
|
||||
Handler GetFeedbacksHandler
|
||||
}
|
||||
|
||||
func (o *GetFeedbacks) ServeHTTP(rw http.ResponseWriter, r *http.Request) {
|
||||
route, rCtx, _ := o.Context.RouteInfo(r)
|
||||
if rCtx != nil {
|
||||
*r = *rCtx
|
||||
}
|
||||
var Params = NewGetFeedbacksParams()
|
||||
if err := o.Context.BindValidRequest(r, route, &Params); err != nil { // bind params
|
||||
o.Context.Respond(rw, r, route.Produces, route, err)
|
||||
return
|
||||
}
|
||||
|
||||
res := o.Handler.Handle(Params) // actually handle the request
|
||||
o.Context.Respond(rw, r, route.Produces, route, res)
|
||||
|
||||
}
|
||||
@@ -0,0 +1,82 @@
|
||||
// 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"
|
||||
)
|
||||
|
||||
// NewGetFeedbacksParams creates a new GetFeedbacksParams object
|
||||
//
|
||||
// There are no default values defined in the spec.
|
||||
func NewGetFeedbacksParams() GetFeedbacksParams {
|
||||
|
||||
return GetFeedbacksParams{}
|
||||
}
|
||||
|
||||
// GetFeedbacksParams contains all the bound params for the get feedbacks operation
|
||||
// typically these are obtained from a http.Request
|
||||
//
|
||||
// swagger:parameters getFeedbacks
|
||||
type GetFeedbacksParams struct {
|
||||
|
||||
// HTTP Request Object
|
||||
HTTPRequest *http.Request `json:"-"`
|
||||
|
||||
/*Session ID
|
||||
Required: true
|
||||
In: query
|
||||
*/
|
||||
SessionID 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 NewGetFeedbacksParams() beforehand.
|
||||
func (o *GetFeedbacksParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error {
|
||||
var res []error
|
||||
|
||||
o.HTTPRequest = r
|
||||
|
||||
qs := runtime.Values(r.URL.Query())
|
||||
|
||||
qSessionID, qhkSessionID, _ := qs.GetOK("session_id")
|
||||
if err := o.bindSessionID(qSessionID, qhkSessionID, route.Formats); err != nil {
|
||||
res = append(res, err)
|
||||
}
|
||||
if len(res) > 0 {
|
||||
return errors.CompositeValidationError(res...)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// bindSessionID binds and validates parameter SessionID from query.
|
||||
func (o *GetFeedbacksParams) bindSessionID(rawData []string, hasKey bool, formats strfmt.Registry) error {
|
||||
if !hasKey {
|
||||
return errors.Required("session_id", "query", rawData)
|
||||
}
|
||||
var raw string
|
||||
if len(rawData) > 0 {
|
||||
raw = rawData[len(rawData)-1]
|
||||
}
|
||||
|
||||
// Required: true
|
||||
// AllowEmptyValue: false
|
||||
|
||||
if err := validate.RequiredString("session_id", "query", raw); err != nil {
|
||||
return err
|
||||
}
|
||||
o.SessionID = raw
|
||||
|
||||
return nil
|
||||
}
|
||||
@@ -0,0 +1,87 @@
|
||||
// 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/runtime"
|
||||
|
||||
"gerald/internal/interfaces/rest/models"
|
||||
)
|
||||
|
||||
// GetFeedbacksOKCode is the HTTP code returned for type GetFeedbacksOK
|
||||
const GetFeedbacksOKCode int = 200
|
||||
|
||||
/*
|
||||
GetFeedbacksOK successful operation
|
||||
|
||||
swagger:response getFeedbacksOK
|
||||
*/
|
||||
type GetFeedbacksOK struct {
|
||||
|
||||
/*
|
||||
In: Body
|
||||
*/
|
||||
Payload []*models.Feedback `json:"body,omitempty"`
|
||||
}
|
||||
|
||||
// NewGetFeedbacksOK creates GetFeedbacksOK with default headers values
|
||||
func NewGetFeedbacksOK() *GetFeedbacksOK {
|
||||
|
||||
return &GetFeedbacksOK{}
|
||||
}
|
||||
|
||||
// WithPayload adds the payload to the get feedbacks o k response
|
||||
func (o *GetFeedbacksOK) WithPayload(payload []*models.Feedback) *GetFeedbacksOK {
|
||||
o.Payload = payload
|
||||
return o
|
||||
}
|
||||
|
||||
// SetPayload sets the payload to the get feedbacks o k response
|
||||
func (o *GetFeedbacksOK) SetPayload(payload []*models.Feedback) {
|
||||
o.Payload = payload
|
||||
}
|
||||
|
||||
// WriteResponse to the client
|
||||
func (o *GetFeedbacksOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
|
||||
|
||||
rw.WriteHeader(200)
|
||||
payload := o.Payload
|
||||
if payload == nil {
|
||||
// return empty array
|
||||
payload = make([]*models.Feedback, 0, 50)
|
||||
}
|
||||
|
||||
if err := producer.Produce(rw, payload); err != nil {
|
||||
panic(err) // let the recovery middleware deal with this
|
||||
}
|
||||
}
|
||||
|
||||
// GetFeedbacksForbiddenCode is the HTTP code returned for type GetFeedbacksForbidden
|
||||
const GetFeedbacksForbiddenCode int = 403
|
||||
|
||||
/*
|
||||
GetFeedbacksForbidden Forbidden
|
||||
|
||||
swagger:response getFeedbacksForbidden
|
||||
*/
|
||||
type GetFeedbacksForbidden struct {
|
||||
}
|
||||
|
||||
// NewGetFeedbacksForbidden creates GetFeedbacksForbidden with default headers values
|
||||
func NewGetFeedbacksForbidden() *GetFeedbacksForbidden {
|
||||
|
||||
return &GetFeedbacksForbidden{}
|
||||
}
|
||||
|
||||
// WriteResponse to the client
|
||||
func (o *GetFeedbacksForbidden) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
|
||||
|
||||
rw.Header().Del(runtime.HeaderContentType) //Remove Content-Type on empty responses
|
||||
|
||||
rw.WriteHeader(403)
|
||||
}
|
||||
@@ -0,0 +1,100 @@
|
||||
// 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 generate command
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"net/url"
|
||||
golangswaggerpaths "path"
|
||||
)
|
||||
|
||||
// GetFeedbacksURL generates an URL for the get feedbacks operation
|
||||
type GetFeedbacksURL struct {
|
||||
SessionID string
|
||||
|
||||
_basePath string
|
||||
// avoid unkeyed usage
|
||||
_ struct{}
|
||||
}
|
||||
|
||||
// WithBasePath sets the base path for this url builder, only required when it's different from the
|
||||
// base path specified in the swagger spec.
|
||||
// When the value of the base path is an empty string
|
||||
func (o *GetFeedbacksURL) WithBasePath(bp string) *GetFeedbacksURL {
|
||||
o.SetBasePath(bp)
|
||||
return o
|
||||
}
|
||||
|
||||
// SetBasePath sets the base path for this url builder, only required when it's different from the
|
||||
// base path specified in the swagger spec.
|
||||
// When the value of the base path is an empty string
|
||||
func (o *GetFeedbacksURL) SetBasePath(bp string) {
|
||||
o._basePath = bp
|
||||
}
|
||||
|
||||
// Build a url path and query string
|
||||
func (o *GetFeedbacksURL) Build() (*url.URL, error) {
|
||||
var _result url.URL
|
||||
|
||||
var _path = "/feedbacks"
|
||||
|
||||
_basePath := o._basePath
|
||||
if _basePath == "" {
|
||||
_basePath = "/"
|
||||
}
|
||||
_result.Path = golangswaggerpaths.Join(_basePath, _path)
|
||||
|
||||
qs := make(url.Values)
|
||||
|
||||
sessionIDQ := o.SessionID
|
||||
if sessionIDQ != "" {
|
||||
qs.Set("session_id", sessionIDQ)
|
||||
}
|
||||
|
||||
_result.RawQuery = qs.Encode()
|
||||
|
||||
return &_result, nil
|
||||
}
|
||||
|
||||
// Must is a helper function to panic when the url builder returns an error
|
||||
func (o *GetFeedbacksURL) Must(u *url.URL, err error) *url.URL {
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
if u == nil {
|
||||
panic("url can't be nil")
|
||||
}
|
||||
return u
|
||||
}
|
||||
|
||||
// String returns the string representation of the path with query string
|
||||
func (o *GetFeedbacksURL) String() string {
|
||||
return o.Must(o.Build()).String()
|
||||
}
|
||||
|
||||
// BuildFull builds a full url with scheme, host, path and query string
|
||||
func (o *GetFeedbacksURL) BuildFull(scheme, host string) (*url.URL, error) {
|
||||
if scheme == "" {
|
||||
return nil, errors.New("scheme is required for a full url on GetFeedbacksURL")
|
||||
}
|
||||
if host == "" {
|
||||
return nil, errors.New("host is required for a full url on GetFeedbacksURL")
|
||||
}
|
||||
|
||||
base, err := o.Build()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
base.Scheme = scheme
|
||||
base.Host = host
|
||||
return base, nil
|
||||
}
|
||||
|
||||
// StringFull returns the string representation of a complete url
|
||||
func (o *GetFeedbacksURL) StringFull(scheme, host string) string {
|
||||
return o.Must(o.BuildFull(scheme, host)).String()
|
||||
}
|
||||
Reference in New Issue
Block a user