forked from loafle/openapi-generator-original
* remove php apache license * remove apache license from C# * remove apache license in objc code * remove license from swift 3 code * remove apache license from perl code * remove license from scala code * remove license from ts, go, android, cpp, scala * remove license from java api client * restore clojure petstore files * remove license from travis file * clean up apache-related terms in php, ruby, python mustache tempaltes * remove license from JS API cilent
68 lines
2.1 KiB
Go
68 lines
2.1 KiB
Go
/*
|
|
* Swagger Petstore
|
|
*
|
|
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
|
*
|
|
* OpenAPI spec version: 1.0.0
|
|
* Contact: apiteam@swagger.io
|
|
* Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
*/
|
|
|
|
package petstore
|
|
|
|
import (
|
|
"encoding/base64"
|
|
"net/http"
|
|
"time"
|
|
)
|
|
|
|
|
|
type Configuration struct {
|
|
UserName string `json:"userName,omitempty"`
|
|
Password string `json:"password,omitempty"`
|
|
APIKeyPrefix map[string]string `json:"APIKeyPrefix,omitempty"`
|
|
APIKey map[string]string `json:"APIKey,omitempty"`
|
|
Debug bool `json:"debug,omitempty"`
|
|
DebugFile string `json:"debugFile,omitempty"`
|
|
OAuthToken string `json:"oAuthToken,omitempty"`
|
|
BasePath string `json:"basePath,omitempty"`
|
|
Host string `json:"host,omitempty"`
|
|
Scheme string `json:"scheme,omitempty"`
|
|
AccessToken string `json:"accessToken,omitempty"`
|
|
DefaultHeader map[string]string `json:"defaultHeader,omitempty"`
|
|
UserAgent string `json:"userAgent,omitempty"`
|
|
APIClient *APIClient
|
|
Transport *http.Transport
|
|
Timeout *time.Duration `json:"timeout,omitempty"`
|
|
}
|
|
|
|
func NewConfiguration() *Configuration {
|
|
cfg := &Configuration{
|
|
BasePath: "http://petstore.swagger.io/v2",
|
|
DefaultHeader: make(map[string]string),
|
|
APIKey: make(map[string]string),
|
|
APIKeyPrefix: make(map[string]string),
|
|
UserAgent: "Swagger-Codegen/1.0.0/go",
|
|
APIClient: &APIClient{},
|
|
}
|
|
|
|
cfg.APIClient.config = cfg
|
|
return cfg
|
|
}
|
|
|
|
func (c *Configuration) GetBasicAuthEncodedString() string {
|
|
return base64.StdEncoding.EncodeToString([]byte(c.UserName + ":" + c.Password))
|
|
}
|
|
|
|
func (c *Configuration) AddDefaultHeader(key string, value string) {
|
|
c.DefaultHeader[key] = value
|
|
}
|
|
|
|
func (c *Configuration) GetAPIKeyWithPrefix(APIKeyIdentifier string) string {
|
|
if c.APIKeyPrefix[APIKeyIdentifier] != "" {
|
|
return c.APIKeyPrefix[APIKeyIdentifier] + " " + c.APIKey[APIKeyIdentifier]
|
|
}
|
|
|
|
return c.APIKey[APIKeyIdentifier]
|
|
}
|