github.com/emreu/go-swagger@v0.22.1/examples/task-tracker/restapi/operations/tasks/add_comment_to_task_urlbuilder.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 "errors" 10 "net/url" 11 golangswaggerpaths "path" 12 "strings" 13 14 "github.com/go-openapi/swag" 15 ) 16 17 // AddCommentToTaskURL generates an URL for the add comment to task operation 18 type AddCommentToTaskURL struct { 19 ID int64 20 21 _basePath string 22 // avoid unkeyed usage 23 _ struct{} 24 } 25 26 // WithBasePath sets the base path for this url builder, only required when it's different from the 27 // base path specified in the swagger spec. 28 // When the value of the base path is an empty string 29 func (o *AddCommentToTaskURL) WithBasePath(bp string) *AddCommentToTaskURL { 30 o.SetBasePath(bp) 31 return o 32 } 33 34 // SetBasePath sets the base path for this url builder, only required when it's different from the 35 // base path specified in the swagger spec. 36 // When the value of the base path is an empty string 37 func (o *AddCommentToTaskURL) SetBasePath(bp string) { 38 o._basePath = bp 39 } 40 41 // Build a url path and query string 42 func (o *AddCommentToTaskURL) Build() (*url.URL, error) { 43 var _result url.URL 44 45 var _path = "/tasks/{id}/comments" 46 47 id := swag.FormatInt64(o.ID) 48 if id != "" { 49 _path = strings.Replace(_path, "{id}", id, -1) 50 } else { 51 return nil, errors.New("id is required on AddCommentToTaskURL") 52 } 53 54 _basePath := o._basePath 55 if _basePath == "" { 56 _basePath = "/api" 57 } 58 _result.Path = golangswaggerpaths.Join(_basePath, _path) 59 60 return &_result, nil 61 } 62 63 // Must is a helper function to panic when the url builder returns an error 64 func (o *AddCommentToTaskURL) Must(u *url.URL, err error) *url.URL { 65 if err != nil { 66 panic(err) 67 } 68 if u == nil { 69 panic("url can't be nil") 70 } 71 return u 72 } 73 74 // String returns the string representation of the path with query string 75 func (o *AddCommentToTaskURL) String() string { 76 return o.Must(o.Build()).String() 77 } 78 79 // BuildFull builds a full url with scheme, host, path and query string 80 func (o *AddCommentToTaskURL) BuildFull(scheme, host string) (*url.URL, error) { 81 if scheme == "" { 82 return nil, errors.New("scheme is required for a full url on AddCommentToTaskURL") 83 } 84 if host == "" { 85 return nil, errors.New("host is required for a full url on AddCommentToTaskURL") 86 } 87 88 base, err := o.Build() 89 if err != nil { 90 return nil, err 91 } 92 93 base.Scheme = scheme 94 base.Host = host 95 return base, nil 96 } 97 98 // StringFull returns the string representation of a complete url 99 func (o *AddCommentToTaskURL) StringFull(scheme, host string) string { 100 return o.Must(o.BuildFull(scheme, host)).String() 101 }