github.com/rzurga/go-swagger@v0.28.1-0.20211109195225-5d1f453ffa3a/examples/todo-list/restapi/operations/todos/find_urlbuilder.go (about) 1 // Code generated by go-swagger; DO NOT EDIT. 2 3 package todos 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 ) 13 14 // FindURL generates an URL for the find operation 15 type FindURL struct { 16 _basePath string 17 } 18 19 // WithBasePath sets the base path for this url builder, only required when it's different from the 20 // base path specified in the swagger spec. 21 // When the value of the base path is an empty string 22 func (o *FindURL) WithBasePath(bp string) *FindURL { 23 o.SetBasePath(bp) 24 return o 25 } 26 27 // SetBasePath sets the base path for this url builder, only required when it's different from the 28 // base path specified in the swagger spec. 29 // When the value of the base path is an empty string 30 func (o *FindURL) SetBasePath(bp string) { 31 o._basePath = bp 32 } 33 34 // Build a url path and query string 35 func (o *FindURL) Build() (*url.URL, error) { 36 var _result url.URL 37 38 var _path = "/" 39 40 _basePath := o._basePath 41 if _basePath == "" { 42 _basePath = "/" 43 } 44 _result.Path = golangswaggerpaths.Join(_basePath, _path) 45 46 return &_result, nil 47 } 48 49 // Must is a helper function to panic when the url builder returns an error 50 func (o *FindURL) Must(u *url.URL, err error) *url.URL { 51 if err != nil { 52 panic(err) 53 } 54 if u == nil { 55 panic("url can't be nil") 56 } 57 return u 58 } 59 60 // String returns the string representation of the path with query string 61 func (o *FindURL) String() string { 62 return o.Must(o.Build()).String() 63 } 64 65 // BuildFull builds a full url with scheme, host, path and query string 66 func (o *FindURL) BuildFull(scheme, host string) (*url.URL, error) { 67 if scheme == "" { 68 return nil, errors.New("scheme is required for a full url on FindURL") 69 } 70 if host == "" { 71 return nil, errors.New("host is required for a full url on FindURL") 72 } 73 74 base, err := o.Build() 75 if err != nil { 76 return nil, err 77 } 78 79 base.Scheme = scheme 80 base.Host = host 81 return base, nil 82 } 83 84 // StringFull returns the string representation of a complete url 85 func (o *FindURL) StringFull(scheme, host string) string { 86 return o.Must(o.BuildFull(scheme, host)).String() 87 }