mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-04 08:17:24 -05:00
5c092eb0ef
* First stab at a Gitlab migrations interface. * Modify JS to show migration for Gitlab * Properly strip out #gitlab tag from repo name * Working Gitlab migrations! Still need to figure out how to hide tokens/etc from showing up in opts.CloneAddr * Try #2 at trying to hide credentials. CloneAddr was being used as OriginalURL. Now passing OriginalURL through from the form and saving it. * Add go-gitlab dependency * Vendor go-gitlab * Use gitlab.BasicAuthClient Correct CloneURL. This should be functioning! Previous commits fixed "Migrated from" from including the migration credentials. * Replaced repoPath with repoID globally. RepoID is grabbed in NewGitlabDownloader * Logging touchup * Properly set private repo status. Properly set milestone deadline time. Consistently use Gitlab username for 'Name'. * Add go-gitlab vendor cache * Fix PR migrations: - Count of issues is kept to set a non-conflicting PR.ID - Bool is used to tell whether to fetch Issue or PR comments * Ensure merged PRs are closed and set with the proper time * Remove copyright and some commented code * Rip out '#gitlab' based self-hosted Gitlab support * Hide given credentials for migrated repos. CloneAddr was being saved as OriginalURL. Now passing OriginalURL through from the form and saving it in it's place * Use asset.URL directly, no point in parsing. Opened PRs should fall through to false. * Fix importing Milestones. Allow importing using Personal Tokens or anonymous access. * Fix Gitlab Milestone migration if DueDate isn't set * Empty Milestone due dates properly return nil, not zero time * Add GITLAB_READ_TOKEN to drone unit-test step * Add working gitlab_test.go. A Personal Access Token, given in env variable GITLAB_READ_TOKEN is required to run the test. * Fix linting issues * Add modified JS files * Remove pre-build JS files * Only merged PRs are marged as merged/closed * Test topics * Skip test if gitlab is inaccessible * Grab personal token from username, not password. Matches Github migration implementation * Add SetContext() to GitlabDownloader. * Checking Updated field in Issues. * Actually fetch Issue Updated time from Gitlab * Add Gitlab migration GetReviews() stub * Fix Patch and Clone URLs * check Updated too * fix mod * make vendor with go1.14 Co-authored-by: techknowlogick <techknowlogick@gitea.io> Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
194 lines
5.5 KiB
Go
194 lines
5.5 KiB
Go
package gitlab
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
)
|
|
|
|
// PagesDomainsService handles communication with the pages domains
|
|
// related methods of the GitLab API.
|
|
//
|
|
// GitLab API docs: https://docs.gitlab.com/ce/api/pages_domains.html
|
|
type PagesDomainsService struct {
|
|
client *Client
|
|
}
|
|
|
|
// PagesDomain represents a pages domain.
|
|
//
|
|
// GitLab API docs: https://docs.gitlab.com/ce/api/pages_domains.html
|
|
type PagesDomain struct {
|
|
Domain string `json:"domain"`
|
|
URL string `json:"url"`
|
|
ProjectID int `json:"project_id"`
|
|
Verified bool `json:"verified"`
|
|
VerificationCode string `json:"verification_code"`
|
|
EnabledUntil *time.Time `json:"enabled_until"`
|
|
Certificate struct {
|
|
Expired bool `json:"expired"`
|
|
Expiration *time.Time `json:"expiration"`
|
|
} `json:"certificate"`
|
|
}
|
|
|
|
// ListPagesDomainsOptions represents the available ListPagesDomains() options.
|
|
//
|
|
// GitLab API docs:
|
|
// https://docs.gitlab.com/ce/api/pages_domains.html#list-pages-domains
|
|
type ListPagesDomainsOptions ListOptions
|
|
|
|
// ListPagesDomains gets a list of project pages domains.
|
|
//
|
|
// GitLab API docs:
|
|
// https://docs.gitlab.com/ce/api/pages_domains.html#list-pages-domains
|
|
func (s *PagesDomainsService) ListPagesDomains(pid interface{}, opt *ListPagesDomainsOptions, options ...OptionFunc) ([]*PagesDomain, *Response, error) {
|
|
project, err := parseID(pid)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
u := fmt.Sprintf("projects/%s/pages/domains", pathEscape(project))
|
|
|
|
req, err := s.client.NewRequest("GET", u, opt, options)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
var pd []*PagesDomain
|
|
resp, err := s.client.Do(req, &pd)
|
|
if err != nil {
|
|
return nil, resp, err
|
|
}
|
|
|
|
return pd, resp, err
|
|
}
|
|
|
|
// ListAllPagesDomains gets a list of all pages domains.
|
|
//
|
|
// GitLab API docs:
|
|
// https://docs.gitlab.com/ce/api/pages_domains.html#list-all-pages-domains
|
|
func (s *PagesDomainsService) ListAllPagesDomains(options ...OptionFunc) ([]*PagesDomain, *Response, error) {
|
|
req, err := s.client.NewRequest("GET", "pages/domains", nil, options)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
var pd []*PagesDomain
|
|
resp, err := s.client.Do(req, &pd)
|
|
if err != nil {
|
|
return nil, resp, err
|
|
}
|
|
|
|
return pd, resp, err
|
|
}
|
|
|
|
// GetPagesDomain get a specific pages domain for a project.
|
|
//
|
|
// GitLab API docs:
|
|
// https://docs.gitlab.com/ce/api/pages_domains.html#single-pages-domain
|
|
func (s *PagesDomainsService) GetPagesDomain(pid interface{}, domain string, options ...OptionFunc) (*PagesDomain, *Response, error) {
|
|
project, err := parseID(pid)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
u := fmt.Sprintf("projects/%s/pages/domains/%s", pathEscape(project), domain)
|
|
|
|
req, err := s.client.NewRequest("GET", u, nil, options)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
pd := new(PagesDomain)
|
|
resp, err := s.client.Do(req, pd)
|
|
if err != nil {
|
|
return nil, resp, err
|
|
}
|
|
|
|
return pd, resp, err
|
|
}
|
|
|
|
// CreatePagesDomainOptions represents the available CreatePagesDomain() options.
|
|
//
|
|
// GitLab API docs:
|
|
// // https://docs.gitlab.com/ce/api/pages_domains.html#create-new-pages-domain
|
|
type CreatePagesDomainOptions struct {
|
|
Domain *string `url:"domain,omitempty" json:"domain,omitempty"`
|
|
Certificate *string `url:"certifiate,omitempty" json:"certifiate,omitempty"`
|
|
Key *string `url:"key,omitempty" json:"key,omitempty"`
|
|
}
|
|
|
|
// CreatePagesDomain creates a new project pages domain.
|
|
//
|
|
// GitLab API docs:
|
|
// https://docs.gitlab.com/ce/api/pages_domains.html#create-new-pages-domain
|
|
func (s *PagesDomainsService) CreatePagesDomain(pid interface{}, opt *CreatePagesDomainOptions, options ...OptionFunc) (*PagesDomain, *Response, error) {
|
|
project, err := parseID(pid)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
u := fmt.Sprintf("projects/%s/pages/domains", pathEscape(project))
|
|
|
|
req, err := s.client.NewRequest("POST", u, opt, options)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
pd := new(PagesDomain)
|
|
resp, err := s.client.Do(req, pd)
|
|
if err != nil {
|
|
return nil, resp, err
|
|
}
|
|
|
|
return pd, resp, err
|
|
}
|
|
|
|
// UpdatePagesDomainOptions represents the available UpdatePagesDomain() options.
|
|
//
|
|
// GitLab API docs:
|
|
// https://docs.gitlab.com/ce/api/pages_domains.html#update-pages-domain
|
|
type UpdatePagesDomainOptions struct {
|
|
Cerificate *string `url:"certifiate" json:"certifiate"`
|
|
Key *string `url:"key" json:"key"`
|
|
}
|
|
|
|
// UpdatePagesDomain updates an existing project pages domain.
|
|
//
|
|
// GitLab API docs:
|
|
// https://docs.gitlab.com/ce/api/pages_domains.html#update-pages-domain
|
|
func (s *PagesDomainsService) UpdatePagesDomain(pid interface{}, domain string, opt *UpdatePagesDomainOptions, options ...OptionFunc) (*PagesDomain, *Response, error) {
|
|
project, err := parseID(pid)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
u := fmt.Sprintf("projects/%s/pages/domains/%s", pathEscape(project), domain)
|
|
|
|
req, err := s.client.NewRequest("PUT", u, opt, options)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
pd := new(PagesDomain)
|
|
resp, err := s.client.Do(req, pd)
|
|
if err != nil {
|
|
return nil, resp, err
|
|
}
|
|
|
|
return pd, resp, err
|
|
}
|
|
|
|
// DeletePagesDomain deletes an existing prject pages domain.
|
|
//
|
|
// GitLab API docs:
|
|
// https://docs.gitlab.com/ce/api/pages_domains.html#delete-pages-domain
|
|
func (s *PagesDomainsService) DeletePagesDomain(pid interface{}, domain string, options ...OptionFunc) (*Response, error) {
|
|
project, err := parseID(pid)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
u := fmt.Sprintf("projects/%s/pages/domains/%s", pathEscape(project), domain)
|
|
|
|
req, err := s.client.NewRequest("DELETE", u, nil, options)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return s.client.Do(req, nil)
|
|
}
|