Adding changes to abstract better

This commit is contained in:
gfleury 2017-12-26 21:41:19 +02:00
parent df4e6ecbbf
commit 98ce84d1c0
7 changed files with 5461 additions and 5718 deletions

View File

@ -1,4 +1,4 @@
# Go API client for swagger
# Go API client for Bitbucket (bitbucket-server V1)
## Overview
@ -6,13 +6,6 @@ This API client was generated by the [swagger-codegen](https://github.com/swagge
- API version:
- Package version: 1.0.0
- Build package: io.swagger.codegen.languages.GoClientCodegen
## Installation
Put the package under your project folder and add the following in import:
```
"./swagger"
```
## Documentation for API Endpoints

View File

@ -2,28 +2,29 @@
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package swagger
package bitbucketv1
import (
"bytes"
"encoding/json"
"encoding/xml"
"fmt"
"errors"
"fmt"
"io"
"mime/multipart"
"golang.org/x/oauth2"
"golang.org/x/net/context"
"net/http"
"net/url"
"time"
"os"
"path/filepath"
"reflect"
"regexp"
"strings"
"unicode/utf8"
"strconv"
"strings"
"time"
"unicode/utf8"
"golang.org/x/net/context"
"golang.org/x/oauth2"
)
var (
@ -36,7 +37,7 @@ var (
type APIClient struct {
cfg *Configuration
common service // Reuse a single struct instead of allocating one for each service on the heap.
ctx context.Context
// API Services
DefaultApi *DefaultApiService
}
@ -47,12 +48,13 @@ type service struct {
// NewAPIClient creates a new API client. Requires a userAgent string describing your application.
// optionally a custom http.Client to allow for advanced features such as caching.
func NewAPIClient(cfg *Configuration) *APIClient {
func NewAPIClient(ctx context.Context, cfg *Configuration) *APIClient {
if cfg.HTTPClient == nil {
cfg.HTTPClient = http.DefaultClient
}
c := &APIClient{}
c.ctx = ctx
c.cfg = cfg
c.common.client = c
@ -66,7 +68,6 @@ func atoi(in string) (int, error) {
return strconv.Atoi(in)
}
// selectHeaderContentType select a content type from the available list.
func selectHeaderContentType(contentTypes []string) string {
if len(contentTypes) == 0 {
@ -258,7 +259,6 @@ func (c *APIClient) prepareRequest (
// Add the user agent to the request.
localVarRequest.Header.Add("User-Agent", c.cfg.UserAgent)
if ctx != nil {
// add context to the request
localVarRequest = localVarRequest.WithContext(ctx)
@ -294,7 +294,6 @@ func (c *APIClient) prepareRequest (
return localVarRequest, nil
}
// Add a file to the multipart request
func addFile(w *multipart.Writer, fieldName, path string) error {
file, err := os.Open(path)
@ -313,7 +312,7 @@ func addFile(w *multipart.Writer, fieldName, path string) error {
}
// Prevent trying to import "fmt"
func reportError(format string, a ...interface{}) (error) {
func reportError(format string, a ...interface{}) error {
return fmt.Errorf(format, a...)
}
@ -367,7 +366,6 @@ func detectContentType(body interface{}) string {
return contentType
}
// Ripped from https://github.com/gregjones/httpcache/blob/master/httpcache.go
type cacheControl map[string]string
@ -390,7 +388,7 @@ func parseCacheControl(headers http.Header) cacheControl {
}
// CacheExpires helper function to determine remaining time before repeating a request.
func CacheExpires(r *http.Response) (time.Time) {
func CacheExpires(r *http.Response) time.Time {
// Figure out when the cache expires.
var expires time.Time
now, err := time.Parse(time.RFC1123, r.Header.Get("date"))
@ -417,7 +415,6 @@ func CacheExpires(r *http.Response) (time.Time) {
return expires
}
func strlen(s string) (int) {
func strlen(s string) int {
return utf8.RuneCountInString(s)
}

View File

@ -2,12 +2,14 @@
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package swagger
package bitbucketv1
import (
"encoding/json"
"net/http"
)
// APIResponse contains generic data from API Response
type APIResponse struct {
*http.Response `json:"-"`
Message string `json:"message,omitempty"`
@ -23,16 +25,29 @@ type APIResponse struct {
// This is provided here as the raw response.Body() reader will have already
// been drained.
Payload []byte `json:"-"`
Values map[string]interface{}
}
// NewAPIResponse create new APIResponse from http.Response
func NewAPIResponse(r *http.Response) *APIResponse {
response := &APIResponse{Response: r}
return response
}
func NewAPIResponseWithError(errorMessage string) *APIResponse {
// NewAPIResponseWithError create new erroneous API response from http.response and error
func NewAPIResponseWithError(r *http.Response, err error) (*APIResponse, error) {
response := &APIResponse{Message: errorMessage}
return response
response := &APIResponse{Response: r, Message: err.Error()}
return response, err
}
// NewBitbucketAPIResponse create new API response from http.response
func NewBitbucketAPIResponse(r *http.Response) (*APIResponse, error) {
response := &APIResponse{Response: r}
err := json.NewDecoder(r.Body).Decode(&response.Values)
if err != nil {
return nil, err
}
return response, err
}

BIN
cmd/debug Executable file

Binary file not shown.

27
cmd/main.go Normal file
View File

@ -0,0 +1,27 @@
package main
import (
"context"
"fmt"
"time"
"github.com/gfleury/go-bitbucket-v1"
)
func main() {
basicAuth := bitbucketv1.BasicAuth{UserName: "gfleury", Password: "killmore"}
ctx, cancel := context.WithTimeout(context.Background(), 6000*time.Millisecond)
ctx = context.WithValue(ctx, bitbucketv1.ContextBasicAuth, basicAuth)
defer cancel()
client := bitbucketv1.NewAPIClient(
ctx,
bitbucketv1.NewConfiguration("http://ec2-54-186-25-213.us-west-2.compute.amazonaws.com/rest"),
)
response, err := client.DefaultApi.GetUsers(nil)
if err != nil {
fmt.Printf("%s\n", err.Error())
}
fmt.Printf("%v", response)
}

View File

@ -2,7 +2,7 @@
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package swagger
package bitbucketv1
import (
"net/http"
@ -44,6 +44,7 @@ type APIKey struct {
Prefix string
}
// Configuration provides the configuration to connect
type Configuration struct {
BasePath string `json:"basePath,omitempty"`
Host string `json:"host,omitempty"`
@ -53,15 +54,17 @@ type Configuration struct {
HTTPClient *http.Client
}
func NewConfiguration() *Configuration {
// NewConfiguration create new configuration
func NewConfiguration(basePath string) *Configuration {
cfg := &Configuration{
BasePath: "http://example.com/rest/",
BasePath: basePath,
DefaultHeader: make(map[string]string),
UserAgent: "Swagger-Codegen/1.0.0/go",
UserAgent: "go-bitbucket/1.0.0/go",
}
return cfg
}
// AddDefaultHeader adds defaults headers to requests
func (c *Configuration) AddDefaultHeader(key string, value string) {
c.DefaultHeader[key] = value
}

File diff suppressed because it is too large Load Diff