-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #147 from ctreminiom/feature/confluence-service-re…
…factor ✅ Added more Test Cases
- Loading branch information
Showing
117 changed files
with
12,672 additions
and
20,693 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,164 @@ | ||
package confluence | ||
|
||
import ( | ||
"bytes" | ||
"context" | ||
"encoding/json" | ||
"github.com/ctreminiom/go-atlassian/confluence/internal" | ||
"github.com/ctreminiom/go-atlassian/pkg/infra/models" | ||
"github.com/ctreminiom/go-atlassian/service/common" | ||
"io" | ||
"io/ioutil" | ||
"net/http" | ||
"net/url" | ||
"reflect" | ||
"strings" | ||
) | ||
|
||
func New(httpClient common.HttpClient, site string) (*Client, error) { | ||
|
||
if httpClient == nil { | ||
httpClient = http.DefaultClient | ||
} | ||
|
||
if !strings.HasSuffix(site, "/") { | ||
site += "/" | ||
} | ||
|
||
siteAsURL, err := url.Parse(site) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
client := &Client{ | ||
HTTP: httpClient, | ||
Site: siteAsURL, | ||
} | ||
|
||
contentSubServices := &internal.ContentSubServices{ | ||
Attachment: internal.NewAttachmentService(client), | ||
ChildrenDescendant: internal.NewChildrenDescandantsService(client), | ||
Comment: internal.NewCommentService(client), | ||
Permission: internal.NewPermissionService(client), | ||
Label: internal.NewContentLabelService(client), | ||
Property: internal.NewPropertyService(client), | ||
Version: internal.NewVersionService(client), | ||
Restriction: internal.NewRestrictionService(client, | ||
internal.NewRestrictionOperationService(client, | ||
internal.NewRestrictionOperationGroupService(client), | ||
internal.NewRestrictionOperationUserService(client))), | ||
} | ||
|
||
client.Auth = internal.NewAuthenticationService(client) | ||
client.Content = internal.NewContentService(client, contentSubServices) | ||
client.Space = internal.NewSpaceService(client, internal.NewSpacePermissionService(client)) | ||
client.Label = internal.NewLabelService(client) | ||
client.Search = internal.NewSearchService(client) | ||
client.LongTask = internal.NewTaskService(client) | ||
|
||
return client, nil | ||
} | ||
|
||
type Client struct { | ||
HTTP common.HttpClient | ||
Site *url.URL | ||
Auth common.Authentication | ||
Content *internal.ContentService | ||
Space *internal.SpaceService | ||
Label *internal.LabelService | ||
Search *internal.SearchService | ||
LongTask *internal.TaskService | ||
} | ||
|
||
func (c *Client) NewFormRequest(ctx context.Context, method, apiEndpoint, contentType string, payload io.Reader) (*http.Request, error) { | ||
return nil, nil | ||
} | ||
|
||
func (c *Client) NewRequest(ctx context.Context, method, apiEndpoint string, payload io.Reader) (*http.Request, error) { | ||
|
||
relativePath, err := url.Parse(apiEndpoint) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
var endpoint = c.Site.ResolveReference(relativePath).String() | ||
|
||
request, err := http.NewRequestWithContext(ctx, method, endpoint, payload) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
request.Header.Set("Accept", "application/json") | ||
|
||
if payload != nil { | ||
request.Header.Set("Content-Type", "application/json") | ||
} | ||
|
||
if c.Auth.HasBasicAuth() { | ||
request.SetBasicAuth(c.Auth.GetBasicAuth()) | ||
} | ||
|
||
if c.Auth.HasUserAgent() { | ||
request.Header.Set("User-Agent", c.Auth.GetUserAgent()) | ||
} | ||
|
||
return request, nil | ||
} | ||
|
||
func (c *Client) Call(request *http.Request, structure interface{}) (*models.ResponseScheme, error) { | ||
|
||
response, err := c.HTTP.Do(request) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return c.TransformTheHTTPResponse(response, structure) | ||
} | ||
|
||
func (c *Client) TransformTheHTTPResponse(response *http.Response, structure interface{}) (*models.ResponseScheme, error) { | ||
|
||
responseTransformed := &models.ResponseScheme{ | ||
Response: response, | ||
Code: response.StatusCode, | ||
Endpoint: response.Request.URL.String(), | ||
Method: response.Request.Method, | ||
} | ||
|
||
responseAsBytes, err := ioutil.ReadAll(response.Body) | ||
if err != nil { | ||
return responseTransformed, err | ||
} | ||
|
||
responseTransformed.Bytes.Write(responseAsBytes) | ||
|
||
var wasSuccess = response.StatusCode >= 200 && response.StatusCode < 300 | ||
if !wasSuccess { | ||
return responseTransformed, models.ErrInvalidStatusCodeError | ||
} | ||
|
||
if structure != nil { | ||
if err = json.Unmarshal(responseAsBytes, &structure); err != nil { | ||
return responseTransformed, err | ||
} | ||
} | ||
|
||
return responseTransformed, nil | ||
} | ||
|
||
func (c *Client) TransformStructToReader(structure interface{}) (io.Reader, error) { | ||
|
||
if structure == nil { | ||
return nil, models.ErrNilPayloadError | ||
} | ||
|
||
if reflect.ValueOf(structure).Type().Kind() == reflect.Struct { | ||
return nil, models.ErrNonPayloadPointerError | ||
} | ||
|
||
structureAsBodyBytes, err := json.Marshal(structure) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return bytes.NewReader(structureAsBodyBytes), nil | ||
} |
Oops, something went wrong.