mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-01 08:47:40 -04:00
08069dc465
* add migrations * fix package dependency * fix lints * implements migrations except pull requests * add releases * migrating releases * fix bug * fix lint * fix migrate releases * fix tests * add rollback * pull request migtations * fix import * fix go module vendor * add tests for upload to gitea * more migrate options * fix swagger-check * fix misspell * add options on migration UI * fix log error * improve UI options on migrating * add support for username password when migrating from github * fix tests * remove comments and fix migrate limitation * improve error handles * migrate API will also support migrate milestones/labels/issues/pulls/releases * fix tests and remove unused codes * add DownloaderFactory and docs about how to create a new Downloader * fix misspell * fix migration docs * Add hints about migrate options on migration page * fix tests
230 lines
8.0 KiB
Go
230 lines
8.0 KiB
Go
// Copyright 2014 The go-github AUTHORS. All rights reserved.
|
|
//
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package github
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"strings"
|
|
)
|
|
|
|
// Deployment represents a deployment in a repo
|
|
type Deployment struct {
|
|
URL *string `json:"url,omitempty"`
|
|
ID *int64 `json:"id,omitempty"`
|
|
SHA *string `json:"sha,omitempty"`
|
|
Ref *string `json:"ref,omitempty"`
|
|
Task *string `json:"task,omitempty"`
|
|
Payload json.RawMessage `json:"payload,omitempty"`
|
|
Environment *string `json:"environment,omitempty"`
|
|
Description *string `json:"description,omitempty"`
|
|
Creator *User `json:"creator,omitempty"`
|
|
CreatedAt *Timestamp `json:"created_at,omitempty"`
|
|
UpdatedAt *Timestamp `json:"updated_at,omitempty"`
|
|
StatusesURL *string `json:"statuses_url,omitempty"`
|
|
RepositoryURL *string `json:"repository_url,omitempty"`
|
|
NodeID *string `json:"node_id,omitempty"`
|
|
}
|
|
|
|
// DeploymentRequest represents a deployment request
|
|
type DeploymentRequest struct {
|
|
Ref *string `json:"ref,omitempty"`
|
|
Task *string `json:"task,omitempty"`
|
|
AutoMerge *bool `json:"auto_merge,omitempty"`
|
|
RequiredContexts *[]string `json:"required_contexts,omitempty"`
|
|
Payload *string `json:"payload,omitempty"`
|
|
Environment *string `json:"environment,omitempty"`
|
|
Description *string `json:"description,omitempty"`
|
|
TransientEnvironment *bool `json:"transient_environment,omitempty"`
|
|
ProductionEnvironment *bool `json:"production_environment,omitempty"`
|
|
}
|
|
|
|
// DeploymentsListOptions specifies the optional parameters to the
|
|
// RepositoriesService.ListDeployments method.
|
|
type DeploymentsListOptions struct {
|
|
// SHA of the Deployment.
|
|
SHA string `url:"sha,omitempty"`
|
|
|
|
// List deployments for a given ref.
|
|
Ref string `url:"ref,omitempty"`
|
|
|
|
// List deployments for a given task.
|
|
Task string `url:"task,omitempty"`
|
|
|
|
// List deployments for a given environment.
|
|
Environment string `url:"environment,omitempty"`
|
|
|
|
ListOptions
|
|
}
|
|
|
|
// ListDeployments lists the deployments of a repository.
|
|
//
|
|
// GitHub API docs: https://developer.github.com/v3/repos/deployments/#list-deployments
|
|
func (s *RepositoriesService) ListDeployments(ctx context.Context, owner, repo string, opt *DeploymentsListOptions) ([]*Deployment, *Response, error) {
|
|
u := fmt.Sprintf("repos/%v/%v/deployments", owner, repo)
|
|
u, err := addOptions(u, opt)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
req, err := s.client.NewRequest("GET", u, nil)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
var deployments []*Deployment
|
|
resp, err := s.client.Do(ctx, req, &deployments)
|
|
if err != nil {
|
|
return nil, resp, err
|
|
}
|
|
|
|
return deployments, resp, nil
|
|
}
|
|
|
|
// GetDeployment returns a single deployment of a repository.
|
|
//
|
|
// GitHub API docs: https://developer.github.com/v3/repos/deployments/#get-a-single-deployment
|
|
func (s *RepositoriesService) GetDeployment(ctx context.Context, owner, repo string, deploymentID int64) (*Deployment, *Response, error) {
|
|
u := fmt.Sprintf("repos/%v/%v/deployments/%v", owner, repo, deploymentID)
|
|
|
|
req, err := s.client.NewRequest("GET", u, nil)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
deployment := new(Deployment)
|
|
resp, err := s.client.Do(ctx, req, deployment)
|
|
if err != nil {
|
|
return nil, resp, err
|
|
}
|
|
|
|
return deployment, resp, nil
|
|
}
|
|
|
|
// CreateDeployment creates a new deployment for a repository.
|
|
//
|
|
// GitHub API docs: https://developer.github.com/v3/repos/deployments/#create-a-deployment
|
|
func (s *RepositoriesService) CreateDeployment(ctx context.Context, owner, repo string, request *DeploymentRequest) (*Deployment, *Response, error) {
|
|
u := fmt.Sprintf("repos/%v/%v/deployments", owner, repo)
|
|
|
|
req, err := s.client.NewRequest("POST", u, request)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
// TODO: remove custom Accept headers when APIs fully launch.
|
|
acceptHeaders := []string{mediaTypeDeploymentStatusPreview, mediaTypeExpandDeploymentStatusPreview}
|
|
req.Header.Set("Accept", strings.Join(acceptHeaders, ", "))
|
|
|
|
d := new(Deployment)
|
|
resp, err := s.client.Do(ctx, req, d)
|
|
if err != nil {
|
|
return nil, resp, err
|
|
}
|
|
|
|
return d, resp, nil
|
|
}
|
|
|
|
// DeploymentStatus represents the status of a
|
|
// particular deployment.
|
|
type DeploymentStatus struct {
|
|
ID *int64 `json:"id,omitempty"`
|
|
// State is the deployment state.
|
|
// Possible values are: "pending", "success", "failure", "error", "inactive".
|
|
State *string `json:"state,omitempty"`
|
|
Creator *User `json:"creator,omitempty"`
|
|
Description *string `json:"description,omitempty"`
|
|
TargetURL *string `json:"target_url,omitempty"`
|
|
CreatedAt *Timestamp `json:"created_at,omitempty"`
|
|
UpdatedAt *Timestamp `json:"updated_at,omitempty"`
|
|
DeploymentURL *string `json:"deployment_url,omitempty"`
|
|
RepositoryURL *string `json:"repository_url,omitempty"`
|
|
NodeID *string `json:"node_id,omitempty"`
|
|
}
|
|
|
|
// DeploymentStatusRequest represents a deployment request
|
|
type DeploymentStatusRequest struct {
|
|
State *string `json:"state,omitempty"`
|
|
LogURL *string `json:"log_url,omitempty"`
|
|
Description *string `json:"description,omitempty"`
|
|
Environment *string `json:"environment,omitempty"`
|
|
EnvironmentURL *string `json:"environment_url,omitempty"`
|
|
AutoInactive *bool `json:"auto_inactive,omitempty"`
|
|
}
|
|
|
|
// ListDeploymentStatuses lists the statuses of a given deployment of a repository.
|
|
//
|
|
// GitHub API docs: https://developer.github.com/v3/repos/deployments/#list-deployment-statuses
|
|
func (s *RepositoriesService) ListDeploymentStatuses(ctx context.Context, owner, repo string, deployment int64, opt *ListOptions) ([]*DeploymentStatus, *Response, error) {
|
|
u := fmt.Sprintf("repos/%v/%v/deployments/%v/statuses", owner, repo, deployment)
|
|
u, err := addOptions(u, opt)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
req, err := s.client.NewRequest("GET", u, nil)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
var statuses []*DeploymentStatus
|
|
resp, err := s.client.Do(ctx, req, &statuses)
|
|
if err != nil {
|
|
return nil, resp, err
|
|
}
|
|
|
|
return statuses, resp, nil
|
|
}
|
|
|
|
// GetDeploymentStatus returns a single deployment status of a repository.
|
|
//
|
|
// GitHub API docs: https://developer.github.com/v3/repos/deployments/#get-a-single-deployment-status
|
|
func (s *RepositoriesService) GetDeploymentStatus(ctx context.Context, owner, repo string, deploymentID, deploymentStatusID int64) (*DeploymentStatus, *Response, error) {
|
|
u := fmt.Sprintf("repos/%v/%v/deployments/%v/statuses/%v", owner, repo, deploymentID, deploymentStatusID)
|
|
|
|
req, err := s.client.NewRequest("GET", u, nil)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
// TODO: remove custom Accept headers when APIs fully launch.
|
|
acceptHeaders := []string{mediaTypeDeploymentStatusPreview, mediaTypeExpandDeploymentStatusPreview}
|
|
req.Header.Set("Accept", strings.Join(acceptHeaders, ", "))
|
|
|
|
d := new(DeploymentStatus)
|
|
resp, err := s.client.Do(ctx, req, d)
|
|
if err != nil {
|
|
return nil, resp, err
|
|
}
|
|
|
|
return d, resp, nil
|
|
}
|
|
|
|
// CreateDeploymentStatus creates a new status for a deployment.
|
|
//
|
|
// GitHub API docs: https://developer.github.com/v3/repos/deployments/#create-a-deployment-status
|
|
func (s *RepositoriesService) CreateDeploymentStatus(ctx context.Context, owner, repo string, deployment int64, request *DeploymentStatusRequest) (*DeploymentStatus, *Response, error) {
|
|
u := fmt.Sprintf("repos/%v/%v/deployments/%v/statuses", owner, repo, deployment)
|
|
|
|
req, err := s.client.NewRequest("POST", u, request)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
// TODO: remove custom Accept headers when APIs fully launch.
|
|
acceptHeaders := []string{mediaTypeDeploymentStatusPreview, mediaTypeExpandDeploymentStatusPreview}
|
|
req.Header.Set("Accept", strings.Join(acceptHeaders, ", "))
|
|
|
|
d := new(DeploymentStatus)
|
|
resp, err := s.client.Do(ctx, req, d)
|
|
if err != nil {
|
|
return nil, resp, err
|
|
}
|
|
|
|
return d, resp, nil
|
|
}
|