// Package cloudapi provides primitives to interact the openapi HTTP API. // // Code generated by github.com/deepmap/oapi-codegen DO NOT EDIT. package cloudapi import ( "bytes" "compress/gzip" "context" "encoding/base64" "encoding/json" "fmt" "github.com/deepmap/oapi-codegen/pkg/runtime" "github.com/getkin/kin-openapi/openapi3" "github.com/go-chi/chi" "io" "io/ioutil" "net/http" "net/url" "strings" ) // AWSUploadRequestOptions defines model for AWSUploadRequestOptions. type AWSUploadRequestOptions struct { Ec2 AWSUploadRequestOptionsEc2 `json:"ec2"` Region string `json:"region"` S3 AWSUploadRequestOptionsS3 `json:"s3"` } // AWSUploadRequestOptionsEc2 defines model for AWSUploadRequestOptionsEc2. type AWSUploadRequestOptionsEc2 struct { AccessKeyId string `json:"access_key_id"` SecretAccessKey string `json:"secret_access_key"` ShareWithAccounts *[]string `json:"share_with_accounts,omitempty"` SnapshotName *string `json:"snapshot_name,omitempty"` } // AWSUploadRequestOptionsS3 defines model for AWSUploadRequestOptionsS3. type AWSUploadRequestOptionsS3 struct { AccessKeyId string `json:"access_key_id"` Bucket string `json:"bucket"` SecretAccessKey string `json:"secret_access_key"` } // AWSUploadStatus defines model for AWSUploadStatus. type AWSUploadStatus struct { Ami string `json:"ami"` Region string `json:"region"` } // AzureUploadRequestOptions defines model for AzureUploadRequestOptions. type AzureUploadRequestOptions struct { // Name of the uploaded image. It must be unique in the given resource group. // If name is omitted from the request, a random one based on a UUID is // generated. ImageName *string `json:"image_name,omitempty"` // Location where the image should be uploaded and registered. This link explain // how to list all locations: // https://docs.microsoft.com/en-us/cli/azure/account?view=azure-cli-latest#az_account_list_locations' Location string `json:"location"` // Name of the resource group where the image should be uploaded. ResourceGroup string `json:"resource_group"` // ID of subscription where the image should be uploaded. SubscriptionId string `json:"subscription_id"` // ID of the tenant where the image should be uploaded. This link explains how // to find it in the Azure Portal: // https://docs.microsoft.com/en-us/azure/active-directory/fundamentals/active-directory-how-to-find-tenant TenantId string `json:"tenant_id"` } // AzureUploadStatus defines model for AzureUploadStatus. type AzureUploadStatus struct { ImageName string `json:"image_name"` } // ComposeRequest defines model for ComposeRequest. type ComposeRequest struct { Customizations *Customizations `json:"customizations,omitempty"` Distribution string `json:"distribution"` ImageRequests []ImageRequest `json:"image_requests"` } // ComposeResult defines model for ComposeResult. type ComposeResult struct { Id string `json:"id"` } // ComposeStatus defines model for ComposeStatus. type ComposeStatus struct { ImageStatus ImageStatus `json:"image_status"` } // Customizations defines model for Customizations. type Customizations struct { Packages *[]string `json:"packages,omitempty"` Subscription *Subscription `json:"subscription,omitempty"` } // GCPUploadRequestOptions defines model for GCPUploadRequestOptions. type GCPUploadRequestOptions struct { // Name of an existing STANDARD Storage class Bucket. Bucket string `json:"bucket"` // The name to use for the imported and shared Compute Engine image. // The image name must be unique within the GCP project, which is used // for the OS image upload and import. If not specified a random // 'composer-api-' string is used as the image name. ImageName *string `json:"image_name,omitempty"` // The GCP region where the OS image will be imported to and shared from. // The value must be a valid GCP location. See https://cloud.google.com/storage/docs/locations. // If not specified, the multi-region location closest to the source // (source Storage Bucket location) is chosen automatically. Region *string `json:"region,omitempty"` // List of valid Google accounts to share the imported Compute Engine image with. // Each string must contain a specifier of the account type. Valid formats are: // - 'user:{emailid}': An email address that represents a specific // Google account. For example, 'alice@example.com'. // - 'serviceAccount:{emailid}': An email address that represents a // service account. For example, 'my-other-app@appspot.gserviceaccount.com'. // - 'group:{emailid}': An email address that represents a Google group. // For example, 'admins@example.com'. // - 'domain:{domain}': The G Suite domain (primary) that represents all // the users of that domain. For example, 'google.com' or 'example.com'. // If not specified, the imported Compute Engine image is not shared with any // account. ShareWithAccounts *[]string `json:"share_with_accounts,omitempty"` } // GCPUploadStatus defines model for GCPUploadStatus. type GCPUploadStatus struct { ImageName string `json:"image_name"` ProjectId string `json:"project_id"` } // ImageRequest defines model for ImageRequest. type ImageRequest struct { Architecture string `json:"architecture"` ImageType string `json:"image_type"` Repositories []Repository `json:"repositories"` UploadRequest UploadRequest `json:"upload_request"` } // ImageStatus defines model for ImageStatus. type ImageStatus struct { Status ImageStatusValue `json:"status"` UploadStatus *UploadStatus `json:"upload_status,omitempty"` } // ImageStatusValue defines model for ImageStatusValue. type ImageStatusValue string // List of ImageStatusValue const ( ImageStatusValue_building ImageStatusValue = "building" ImageStatusValue_failure ImageStatusValue = "failure" ImageStatusValue_pending ImageStatusValue = "pending" ImageStatusValue_registering ImageStatusValue = "registering" ImageStatusValue_success ImageStatusValue = "success" ImageStatusValue_uploading ImageStatusValue = "uploading" ) // Repository defines model for Repository. type Repository struct { Baseurl *string `json:"baseurl,omitempty"` Metalink *string `json:"metalink,omitempty"` Mirrorlist *string `json:"mirrorlist,omitempty"` Rhsm bool `json:"rhsm"` } // Subscription defines model for Subscription. type Subscription struct { ActivationKey string `json:"activation-key"` BaseUrl string `json:"base-url"` Insights bool `json:"insights"` Organization int `json:"organization"` ServerUrl string `json:"server-url"` } // UploadRequest defines model for UploadRequest. type UploadRequest struct { Options interface{} `json:"options"` Type UploadTypes `json:"type"` } // UploadStatus defines model for UploadStatus. type UploadStatus struct { Options interface{} `json:"options"` Status string `json:"status"` Type UploadTypes `json:"type"` } // UploadTypes defines model for UploadTypes. type UploadTypes string // List of UploadTypes const ( UploadTypes_aws UploadTypes = "aws" UploadTypes_azure UploadTypes = "azure" UploadTypes_gcp UploadTypes = "gcp" ) // Version defines model for Version. type Version struct { Version string `json:"version"` } // ComposeJSONBody defines parameters for Compose. type ComposeJSONBody ComposeRequest // ComposeRequestBody defines body for Compose for application/json ContentType. type ComposeJSONRequestBody ComposeJSONBody // RequestEditorFn is the function signature for the RequestEditor callback function type RequestEditorFn func(ctx context.Context, req *http.Request) error // Doer performs HTTP requests. // // The standard http.Client implements this interface. type HttpRequestDoer interface { Do(req *http.Request) (*http.Response, error) } // Client which conforms to the OpenAPI3 specification for this service. type Client struct { // The endpoint of the server conforming to this interface, with scheme, // https://api.deepmap.com for example. Server string // Doer for performing requests, typically a *http.Client with any // customized settings, such as certificate chains. Client HttpRequestDoer // A callback for modifying requests which are generated before sending over // the network. RequestEditor RequestEditorFn } // ClientOption allows setting custom parameters during construction type ClientOption func(*Client) error // Creates a new Client, with reasonable defaults func NewClient(server string, opts ...ClientOption) (*Client, error) { // create a client with sane default values client := Client{ Server: server, } // mutate client and add all optional params for _, o := range opts { if err := o(&client); err != nil { return nil, err } } // ensure the server URL always has a trailing slash if !strings.HasSuffix(client.Server, "/") { client.Server += "/" } // create httpClient, if not already present if client.Client == nil { client.Client = http.DefaultClient } return &client, nil } // WithHTTPClient allows overriding the default Doer, which is // automatically created using http.Client. This is useful for tests. func WithHTTPClient(doer HttpRequestDoer) ClientOption { return func(c *Client) error { c.Client = doer return nil } } // WithRequestEditorFn allows setting up a callback function, which will be // called right before sending the request. This can be used to mutate the request. func WithRequestEditorFn(fn RequestEditorFn) ClientOption { return func(c *Client) error { c.RequestEditor = fn return nil } } // The interface specification for the client above. type ClientInterface interface { // Compose request with any body ComposeWithBody(ctx context.Context, contentType string, body io.Reader) (*http.Response, error) Compose(ctx context.Context, body ComposeJSONRequestBody) (*http.Response, error) // ComposeStatus request ComposeStatus(ctx context.Context, id string) (*http.Response, error) // GetOpenapiJson request GetOpenapiJson(ctx context.Context) (*http.Response, error) // GetVersion request GetVersion(ctx context.Context) (*http.Response, error) } func (c *Client) ComposeWithBody(ctx context.Context, contentType string, body io.Reader) (*http.Response, error) { req, err := NewComposeRequestWithBody(c.Server, contentType, body) if err != nil { return nil, err } req = req.WithContext(ctx) if c.RequestEditor != nil { err = c.RequestEditor(ctx, req) if err != nil { return nil, err } } return c.Client.Do(req) } func (c *Client) Compose(ctx context.Context, body ComposeJSONRequestBody) (*http.Response, error) { req, err := NewComposeRequest(c.Server, body) if err != nil { return nil, err } req = req.WithContext(ctx) if c.RequestEditor != nil { err = c.RequestEditor(ctx, req) if err != nil { return nil, err } } return c.Client.Do(req) } func (c *Client) ComposeStatus(ctx context.Context, id string) (*http.Response, error) { req, err := NewComposeStatusRequest(c.Server, id) if err != nil { return nil, err } req = req.WithContext(ctx) if c.RequestEditor != nil { err = c.RequestEditor(ctx, req) if err != nil { return nil, err } } return c.Client.Do(req) } func (c *Client) GetOpenapiJson(ctx context.Context) (*http.Response, error) { req, err := NewGetOpenapiJsonRequest(c.Server) if err != nil { return nil, err } req = req.WithContext(ctx) if c.RequestEditor != nil { err = c.RequestEditor(ctx, req) if err != nil { return nil, err } } return c.Client.Do(req) } func (c *Client) GetVersion(ctx context.Context) (*http.Response, error) { req, err := NewGetVersionRequest(c.Server) if err != nil { return nil, err } req = req.WithContext(ctx) if c.RequestEditor != nil { err = c.RequestEditor(ctx, req) if err != nil { return nil, err } } return c.Client.Do(req) } // NewComposeRequest calls the generic Compose builder with application/json body func NewComposeRequest(server string, body ComposeJSONRequestBody) (*http.Request, error) { var bodyReader io.Reader buf, err := json.Marshal(body) if err != nil { return nil, err } bodyReader = bytes.NewReader(buf) return NewComposeRequestWithBody(server, "application/json", bodyReader) } // NewComposeRequestWithBody generates requests for Compose with any type of body func NewComposeRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) { var err error queryUrl, err := url.Parse(server) if err != nil { return nil, err } basePath := fmt.Sprintf("/compose") if basePath[0] == '/' { basePath = basePath[1:] } queryUrl, err = queryUrl.Parse(basePath) if err != nil { return nil, err } req, err := http.NewRequest("POST", queryUrl.String(), body) if err != nil { return nil, err } req.Header.Add("Content-Type", contentType) return req, nil } // NewComposeStatusRequest generates requests for ComposeStatus func NewComposeStatusRequest(server string, id string) (*http.Request, error) { var err error var pathParam0 string pathParam0, err = runtime.StyleParam("simple", false, "id", id) if err != nil { return nil, err } queryUrl, err := url.Parse(server) if err != nil { return nil, err } basePath := fmt.Sprintf("/compose/%s", pathParam0) if basePath[0] == '/' { basePath = basePath[1:] } queryUrl, err = queryUrl.Parse(basePath) if err != nil { return nil, err } req, err := http.NewRequest("GET", queryUrl.String(), nil) if err != nil { return nil, err } return req, nil } // NewGetOpenapiJsonRequest generates requests for GetOpenapiJson func NewGetOpenapiJsonRequest(server string) (*http.Request, error) { var err error queryUrl, err := url.Parse(server) if err != nil { return nil, err } basePath := fmt.Sprintf("/openapi.json") if basePath[0] == '/' { basePath = basePath[1:] } queryUrl, err = queryUrl.Parse(basePath) if err != nil { return nil, err } req, err := http.NewRequest("GET", queryUrl.String(), nil) if err != nil { return nil, err } return req, nil } // NewGetVersionRequest generates requests for GetVersion func NewGetVersionRequest(server string) (*http.Request, error) { var err error queryUrl, err := url.Parse(server) if err != nil { return nil, err } basePath := fmt.Sprintf("/version") if basePath[0] == '/' { basePath = basePath[1:] } queryUrl, err = queryUrl.Parse(basePath) if err != nil { return nil, err } req, err := http.NewRequest("GET", queryUrl.String(), nil) if err != nil { return nil, err } return req, nil } // ClientWithResponses builds on ClientInterface to offer response payloads type ClientWithResponses struct { ClientInterface } // NewClientWithResponses creates a new ClientWithResponses, which wraps // Client with return type handling func NewClientWithResponses(server string, opts ...ClientOption) (*ClientWithResponses, error) { client, err := NewClient(server, opts...) if err != nil { return nil, err } return &ClientWithResponses{client}, nil } // WithBaseURL overrides the baseURL. func WithBaseURL(baseURL string) ClientOption { return func(c *Client) error { newBaseURL, err := url.Parse(baseURL) if err != nil { return err } c.Server = newBaseURL.String() return nil } } // ClientWithResponsesInterface is the interface specification for the client with responses above. type ClientWithResponsesInterface interface { // Compose request with any body ComposeWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader) (*ComposeResponse, error) ComposeWithResponse(ctx context.Context, body ComposeJSONRequestBody) (*ComposeResponse, error) // ComposeStatus request ComposeStatusWithResponse(ctx context.Context, id string) (*ComposeStatusResponse, error) // GetOpenapiJson request GetOpenapiJsonWithResponse(ctx context.Context) (*GetOpenapiJsonResponse, error) // GetVersion request GetVersionWithResponse(ctx context.Context) (*GetVersionResponse, error) } type ComposeResponse struct { Body []byte HTTPResponse *http.Response JSON201 *ComposeResult } // Status returns HTTPResponse.Status func (r ComposeResponse) Status() string { if r.HTTPResponse != nil { return r.HTTPResponse.Status } return http.StatusText(0) } // StatusCode returns HTTPResponse.StatusCode func (r ComposeResponse) StatusCode() int { if r.HTTPResponse != nil { return r.HTTPResponse.StatusCode } return 0 } type ComposeStatusResponse struct { Body []byte HTTPResponse *http.Response JSON200 *ComposeStatus } // Status returns HTTPResponse.Status func (r ComposeStatusResponse) Status() string { if r.HTTPResponse != nil { return r.HTTPResponse.Status } return http.StatusText(0) } // StatusCode returns HTTPResponse.StatusCode func (r ComposeStatusResponse) StatusCode() int { if r.HTTPResponse != nil { return r.HTTPResponse.StatusCode } return 0 } type GetOpenapiJsonResponse struct { Body []byte HTTPResponse *http.Response } // Status returns HTTPResponse.Status func (r GetOpenapiJsonResponse) Status() string { if r.HTTPResponse != nil { return r.HTTPResponse.Status } return http.StatusText(0) } // StatusCode returns HTTPResponse.StatusCode func (r GetOpenapiJsonResponse) StatusCode() int { if r.HTTPResponse != nil { return r.HTTPResponse.StatusCode } return 0 } type GetVersionResponse struct { Body []byte HTTPResponse *http.Response JSON200 *Version } // Status returns HTTPResponse.Status func (r GetVersionResponse) Status() string { if r.HTTPResponse != nil { return r.HTTPResponse.Status } return http.StatusText(0) } // StatusCode returns HTTPResponse.StatusCode func (r GetVersionResponse) StatusCode() int { if r.HTTPResponse != nil { return r.HTTPResponse.StatusCode } return 0 } // ComposeWithBodyWithResponse request with arbitrary body returning *ComposeResponse func (c *ClientWithResponses) ComposeWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader) (*ComposeResponse, error) { rsp, err := c.ComposeWithBody(ctx, contentType, body) if err != nil { return nil, err } return ParseComposeResponse(rsp) } func (c *ClientWithResponses) ComposeWithResponse(ctx context.Context, body ComposeJSONRequestBody) (*ComposeResponse, error) { rsp, err := c.Compose(ctx, body) if err != nil { return nil, err } return ParseComposeResponse(rsp) } // ComposeStatusWithResponse request returning *ComposeStatusResponse func (c *ClientWithResponses) ComposeStatusWithResponse(ctx context.Context, id string) (*ComposeStatusResponse, error) { rsp, err := c.ComposeStatus(ctx, id) if err != nil { return nil, err } return ParseComposeStatusResponse(rsp) } // GetOpenapiJsonWithResponse request returning *GetOpenapiJsonResponse func (c *ClientWithResponses) GetOpenapiJsonWithResponse(ctx context.Context) (*GetOpenapiJsonResponse, error) { rsp, err := c.GetOpenapiJson(ctx) if err != nil { return nil, err } return ParseGetOpenapiJsonResponse(rsp) } // GetVersionWithResponse request returning *GetVersionResponse func (c *ClientWithResponses) GetVersionWithResponse(ctx context.Context) (*GetVersionResponse, error) { rsp, err := c.GetVersion(ctx) if err != nil { return nil, err } return ParseGetVersionResponse(rsp) } // ParseComposeResponse parses an HTTP response from a ComposeWithResponse call func ParseComposeResponse(rsp *http.Response) (*ComposeResponse, error) { bodyBytes, err := ioutil.ReadAll(rsp.Body) defer rsp.Body.Close() if err != nil { return nil, err } response := &ComposeResponse{ Body: bodyBytes, HTTPResponse: rsp, } switch { case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 201: var dest ComposeResult if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON201 = &dest } return response, nil } // ParseComposeStatusResponse parses an HTTP response from a ComposeStatusWithResponse call func ParseComposeStatusResponse(rsp *http.Response) (*ComposeStatusResponse, error) { bodyBytes, err := ioutil.ReadAll(rsp.Body) defer rsp.Body.Close() if err != nil { return nil, err } response := &ComposeStatusResponse{ Body: bodyBytes, HTTPResponse: rsp, } switch { case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 200: var dest ComposeStatus if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON200 = &dest } return response, nil } // ParseGetOpenapiJsonResponse parses an HTTP response from a GetOpenapiJsonWithResponse call func ParseGetOpenapiJsonResponse(rsp *http.Response) (*GetOpenapiJsonResponse, error) { bodyBytes, err := ioutil.ReadAll(rsp.Body) defer rsp.Body.Close() if err != nil { return nil, err } response := &GetOpenapiJsonResponse{ Body: bodyBytes, HTTPResponse: rsp, } switch { } return response, nil } // ParseGetVersionResponse parses an HTTP response from a GetVersionWithResponse call func ParseGetVersionResponse(rsp *http.Response) (*GetVersionResponse, error) { bodyBytes, err := ioutil.ReadAll(rsp.Body) defer rsp.Body.Close() if err != nil { return nil, err } response := &GetVersionResponse{ Body: bodyBytes, HTTPResponse: rsp, } switch { case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 200: var dest Version if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON200 = &dest } return response, nil } // ServerInterface represents all server handlers. type ServerInterface interface { // Create compose // (POST /compose) Compose(w http.ResponseWriter, r *http.Request) // The status of a compose // (GET /compose/{id}) ComposeStatus(w http.ResponseWriter, r *http.Request, id string) // get the openapi json specification // (GET /openapi.json) GetOpenapiJson(w http.ResponseWriter, r *http.Request) // get the service version // (GET /version) GetVersion(w http.ResponseWriter, r *http.Request) } // ServerInterfaceWrapper converts contexts to parameters. type ServerInterfaceWrapper struct { Handler ServerInterface } // Compose operation middleware func (siw *ServerInterfaceWrapper) Compose(w http.ResponseWriter, r *http.Request) { ctx := r.Context() siw.Handler.Compose(w, r.WithContext(ctx)) } // ComposeStatus operation middleware func (siw *ServerInterfaceWrapper) ComposeStatus(w http.ResponseWriter, r *http.Request) { ctx := r.Context() var err error // ------------- Path parameter "id" ------------- var id string err = runtime.BindStyledParameter("simple", false, "id", chi.URLParam(r, "id"), &id) if err != nil { http.Error(w, fmt.Sprintf("Invalid format for parameter id: %s", err), http.StatusBadRequest) return } siw.Handler.ComposeStatus(w, r.WithContext(ctx), id) } // GetOpenapiJson operation middleware func (siw *ServerInterfaceWrapper) GetOpenapiJson(w http.ResponseWriter, r *http.Request) { ctx := r.Context() siw.Handler.GetOpenapiJson(w, r.WithContext(ctx)) } // GetVersion operation middleware func (siw *ServerInterfaceWrapper) GetVersion(w http.ResponseWriter, r *http.Request) { ctx := r.Context() siw.Handler.GetVersion(w, r.WithContext(ctx)) } // Handler creates http.Handler with routing matching OpenAPI spec. func Handler(si ServerInterface) http.Handler { return HandlerFromMux(si, chi.NewRouter()) } // HandlerFromMux creates http.Handler with routing matching OpenAPI spec based on the provided mux. func HandlerFromMux(si ServerInterface, r chi.Router) http.Handler { wrapper := ServerInterfaceWrapper{ Handler: si, } r.Group(func(r chi.Router) { r.Post("/compose", wrapper.Compose) }) r.Group(func(r chi.Router) { r.Get("/compose/{id}", wrapper.ComposeStatus) }) r.Group(func(r chi.Router) { r.Get("/openapi.json", wrapper.GetOpenapiJson) }) r.Group(func(r chi.Router) { r.Get("/version", wrapper.GetVersion) }) return r } // Base64 encoded, gzipped, json marshaled Swagger object var swaggerSpec = []string{ "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", } // GetSwagger returns the Swagger specification corresponding to the generated code // in this file. func GetSwagger() (*openapi3.Swagger, error) { zipped, err := base64.StdEncoding.DecodeString(strings.Join(swaggerSpec, "")) if err != nil { return nil, fmt.Errorf("error base64 decoding spec: %s", err) } zr, err := gzip.NewReader(bytes.NewReader(zipped)) if err != nil { return nil, fmt.Errorf("error decompressing spec: %s", err) } var buf bytes.Buffer _, err = buf.ReadFrom(zr) if err != nil { return nil, fmt.Errorf("error decompressing spec: %s", err) } swagger, err := openapi3.NewSwaggerLoader().LoadSwaggerFromData(buf.Bytes()) if err != nil { return nil, fmt.Errorf("error loading Swagger: %s", err) } return swagger, nil }