From 9d1c827cd28e3556e7b2da867894bf6a29dd5675 Mon Sep 17 00:00:00 2001 From: gfleury Date: Wed, 12 Jun 2019 14:59:37 +0200 Subject: [PATCH] Adding Content response type structure --- api_response.go | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/api_response.go b/api_response.go index 89dc5d3..71daeae 100644 --- a/api_response.go +++ b/api_response.go @@ -244,6 +244,35 @@ type Branch struct { IsDefault bool `json:"isDefault"` } +// Content contains repository content information (and files content) +type Content struct { + Children struct { + IsLastPage bool `json:"isLastPage"` + Limit int `json:"limit"` + Size int `json:"size"` + Start int `json:"start"` + Values []struct { + ContentID string `json:"contentId,omitempty"` + Path struct { + Components []string `json:"components"` + Extension string `json:"extension"` + Name string `json:"name"` + Parent string `json:"parent"` + ToString string `json:"toString"` + } `json:"path"` + Size int `json:"size,omitempty"` + Type string `json:"type"` + Node string `json:"node,omitempty"` + } `json:"values"` + } `json:"children"` + Path struct { + Components []string `json:"components"` + Name string `json:"name"` + ToString string `json:"toString"` + } `json:"path"` + Revision string `json:"revision"` +} + func (k *SSHKey) String() string { parts := make([]string, 1, 2) parts[0] = strings.TrimSpace(k.Text) @@ -306,6 +335,13 @@ func GetPullRequestResponse(r *APIResponse) (PullRequest, error) { return m, err } +// GetContentResponse cast Content into structure +func GetContentResponse(r *APIResponse) (Content, error) { + var c Content + err := mapstructure.Decode(r.Values, &c) + return c, err +} + // NewAPIResponse create new APIResponse from http.Response func NewAPIResponse(r *http.Response) *APIResponse {