Skip to content

Commit

Permalink
Merge pull request #42 from Nelwhix/Nelwhix-main-5
Browse files Browse the repository at this point in the history
feat: deprecating api-version query param in api calls
  • Loading branch information
speatzle authored Mar 6, 2025
2 parents 7a23a1a + 9eb3776 commit 03ce37a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
7 changes: 6 additions & 1 deletion api/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,14 @@ func (c *Client) DoCustomRequest(ctx context.Context, method, path, version stri

// DoCustomRequestAndReturnRawResponse Executes a Custom Request and returns a APIResponse and the Raw HTTP Response
func (c *Client) DoCustomRequestAndReturnRawResponse(ctx context.Context, method, path, version string, body interface{}, opts interface{}) (*http.Response, *APIResponse, error) {
// version is no longer used and is ignored.
return c.DoCustomRequestAndReturnRawResponseV5(ctx, method, path, body, opts)
}

func (c *Client) DoCustomRequestAndReturnRawResponseV5(ctx context.Context, method, path string, body interface{}, opts interface{}) (*http.Response, *APIResponse, error) {
firstTime := true
start:
u, err := generateURL(*c.baseURL, path, version, opts)
u, err := generateURL(*c.baseURL, path, opts)
if err != nil {
return nil, nil, fmt.Errorf("Generating Path: %w", err)
}
Expand Down
7 changes: 2 additions & 5 deletions api/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -169,17 +169,14 @@ func (c *Client) log(msg string, args ...interface{}) {
fmt.Printf("[go-passbolt] "+msg+"\n", args...)
}

func generateURL(base url.URL, p, version string, opt interface{}) (string, error) {
func generateURL(base url.URL, p string, opt interface{}) (string, error) {
base.Path = path.Join(base.Path, p)

vs, err := query.Values(opt)
if err != nil {
return "", fmt.Errorf("Getting URL Query Values: %w", err)
}
if version != "" {
vs.Add("api-version", version)
}
base.RawQuery = vs.Encode()

return base.String(), nil
}

Expand Down

0 comments on commit 03ce37a

Please sign in to comment.