mirror of
https://github.com/gfleury/go-bitbucket-v1.git
synced 2025-04-04 17:00:12 -05:00
Fix Get Raw Content
Add the missing variables, projectKey, repositorySlug. Buffer the http response body and use a response struct that does not assume that the raw content is valid JSON
This commit is contained in:
parent
47e160ef65
commit
ce0f149308
@ -4577,7 +4577,7 @@ func (a *DefaultApiService) GetContent_10(projectKey, repositorySlug string, loc
|
|||||||
/*
|
/*
|
||||||
DefaultApiService
|
DefaultApiService
|
||||||
Retrieve the raw content for a file path at a specified revision. <p> The authenticated user must have <strong>REPO_READ</strong> permission for the specified repository to call this resource.
|
Retrieve the raw content for a file path at a specified revision. <p> The authenticated user must have <strong>REPO_READ</strong> permission for the specified repository to call this resource.
|
||||||
|
* @param ctx context.Context for authentication, logging, tracing, etc.
|
||||||
@param path the file path to retrieve content from
|
@param path the file path to retrieve content from
|
||||||
@param optional (nil or map[string]interface{}) with one or more of:
|
@param optional (nil or map[string]interface{}) with one or more of:
|
||||||
@param "at" (string) the commit ID or ref to retrieve the content for.
|
@param "at" (string) the commit ID or ref to retrieve the content for.
|
||||||
@ -4586,7 +4586,7 @@ func (a *DefaultApiService) GetContent_10(projectKey, repositorySlug string, loc
|
|||||||
@param "htmlEscape" (bool) (Optional) true if HTML should be escaped in the input markup, false otherwise. If not specified, {@link MarkupService} will use the value of the <code>markup.render.html.escape</code> property, which is <code>true</code> by default
|
@param "htmlEscape" (bool) (Optional) true if HTML should be escaped in the input markup, false otherwise. If not specified, {@link MarkupService} will use the value of the <code>markup.render.html.escape</code> property, which is <code>true</code> by default
|
||||||
@return
|
@return
|
||||||
*/
|
*/
|
||||||
func (a *DefaultApiService) GetContent_11(projectKey, repositorySlug, path string, localVarOptionals map[string]interface{}) (*APIResponse, error) {
|
func (a *DefaultApiService) GetRawContent(projectKey, repositorySlug, path string, localVarOptionals map[string]interface{}) (*APIResponse, error) {
|
||||||
var (
|
var (
|
||||||
localVarHTTPMethod = strings.ToUpper("Get")
|
localVarHTTPMethod = strings.ToUpper("Get")
|
||||||
localVarPostBody interface{}
|
localVarPostBody interface{}
|
||||||
@ -4663,7 +4663,9 @@ func (a *DefaultApiService) GetContent_11(projectKey, repositorySlug, path strin
|
|||||||
return NewAPIResponseWithError(localVarHTTPResponse, bodyBytes, reportError("Status: %v, Body: %s", localVarHTTPResponse.Status, bodyBytes))
|
return NewAPIResponseWithError(localVarHTTPResponse, bodyBytes, reportError("Status: %v, Body: %s", localVarHTTPResponse.Status, bodyBytes))
|
||||||
}
|
}
|
||||||
|
|
||||||
return NewRawAPIResponse(localVarHTTPResponse)
|
result := NewAPIResponse(localVarHTTPResponse)
|
||||||
|
result.Payload, err = ioutil.ReadAll(localVarHTTPResponse.Body)
|
||||||
|
return result, err
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user