123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329 |
- package github
- import (
- "context"
- "fmt"
- )
- type Import struct {
-
- VCSURL *string `json:"vcs_url,omitempty"`
-
-
-
-
- VCS *string `json:"vcs,omitempty"`
-
-
- VCSUsername *string `json:"vcs_username,omitempty"`
- VCSPassword *string `json:"vcs_password,omitempty"`
-
- TFVCProject *string `json:"tfvc_project,omitempty"`
-
-
-
-
- UseLFS *string `json:"use_lfs,omitempty"`
-
-
- HasLargeFiles *bool `json:"has_large_files,omitempty"`
-
-
- LargeFilesSize *int `json:"large_files_size,omitempty"`
-
-
- LargeFilesCount *int `json:"large_files_count,omitempty"`
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Status *string `json:"status,omitempty"`
- CommitCount *int `json:"commit_count,omitempty"`
- StatusText *string `json:"status_text,omitempty"`
- AuthorsCount *int `json:"authors_count,omitempty"`
- Percent *int `json:"percent,omitempty"`
- PushPercent *int `json:"push_percent,omitempty"`
- URL *string `json:"url,omitempty"`
- HTMLURL *string `json:"html_url,omitempty"`
- AuthorsURL *string `json:"authors_url,omitempty"`
- RepositoryURL *string `json:"repository_url,omitempty"`
- Message *string `json:"message,omitempty"`
- FailedStep *string `json:"failed_step,omitempty"`
-
-
- HumanName *string `json:"human_name,omitempty"`
-
-
-
- ProjectChoices []Import `json:"project_choices,omitempty"`
- }
- func (i Import) String() string {
- return Stringify(i)
- }
- type SourceImportAuthor struct {
- ID *int64 `json:"id,omitempty"`
- RemoteID *string `json:"remote_id,omitempty"`
- RemoteName *string `json:"remote_name,omitempty"`
- Email *string `json:"email,omitempty"`
- Name *string `json:"name,omitempty"`
- URL *string `json:"url,omitempty"`
- ImportURL *string `json:"import_url,omitempty"`
- }
- func (a SourceImportAuthor) String() string {
- return Stringify(a)
- }
- type LargeFile struct {
- RefName *string `json:"ref_name,omitempty"`
- Path *string `json:"path,omitempty"`
- OID *string `json:"oid,omitempty"`
- Size *int `json:"size,omitempty"`
- }
- func (f LargeFile) String() string {
- return Stringify(f)
- }
- func (s *MigrationService) StartImport(ctx context.Context, owner, repo string, in *Import) (*Import, *Response, error) {
- u := fmt.Sprintf("repos/%v/%v/import", owner, repo)
- req, err := s.client.NewRequest("PUT", u, in)
- if err != nil {
- return nil, nil, err
- }
-
- req.Header.Set("Accept", mediaTypeImportPreview)
- out := new(Import)
- resp, err := s.client.Do(ctx, req, out)
- if err != nil {
- return nil, resp, err
- }
- return out, resp, nil
- }
- func (s *MigrationService) ImportProgress(ctx context.Context, owner, repo string) (*Import, *Response, error) {
- u := fmt.Sprintf("repos/%v/%v/import", owner, repo)
- req, err := s.client.NewRequest("GET", u, nil)
- if err != nil {
- return nil, nil, err
- }
-
- req.Header.Set("Accept", mediaTypeImportPreview)
- out := new(Import)
- resp, err := s.client.Do(ctx, req, out)
- if err != nil {
- return nil, resp, err
- }
- return out, resp, nil
- }
- func (s *MigrationService) UpdateImport(ctx context.Context, owner, repo string, in *Import) (*Import, *Response, error) {
- u := fmt.Sprintf("repos/%v/%v/import", owner, repo)
- req, err := s.client.NewRequest("PATCH", u, in)
- if err != nil {
- return nil, nil, err
- }
-
- req.Header.Set("Accept", mediaTypeImportPreview)
- out := new(Import)
- resp, err := s.client.Do(ctx, req, out)
- if err != nil {
- return nil, resp, err
- }
- return out, resp, nil
- }
- func (s *MigrationService) CommitAuthors(ctx context.Context, owner, repo string) ([]*SourceImportAuthor, *Response, error) {
- u := fmt.Sprintf("repos/%v/%v/import/authors", owner, repo)
- req, err := s.client.NewRequest("GET", u, nil)
- if err != nil {
- return nil, nil, err
- }
-
- req.Header.Set("Accept", mediaTypeImportPreview)
- var authors []*SourceImportAuthor
- resp, err := s.client.Do(ctx, req, &authors)
- if err != nil {
- return nil, resp, err
- }
- return authors, resp, nil
- }
- func (s *MigrationService) MapCommitAuthor(ctx context.Context, owner, repo string, id int64, author *SourceImportAuthor) (*SourceImportAuthor, *Response, error) {
- u := fmt.Sprintf("repos/%v/%v/import/authors/%v", owner, repo, id)
- req, err := s.client.NewRequest("PATCH", u, author)
- if err != nil {
- return nil, nil, err
- }
-
- req.Header.Set("Accept", mediaTypeImportPreview)
- out := new(SourceImportAuthor)
- resp, err := s.client.Do(ctx, req, out)
- if err != nil {
- return nil, resp, err
- }
- return out, resp, nil
- }
- func (s *MigrationService) SetLFSPreference(ctx context.Context, owner, repo string, in *Import) (*Import, *Response, error) {
- u := fmt.Sprintf("repos/%v/%v/import/lfs", owner, repo)
- req, err := s.client.NewRequest("PATCH", u, in)
- if err != nil {
- return nil, nil, err
- }
-
- req.Header.Set("Accept", mediaTypeImportPreview)
- out := new(Import)
- resp, err := s.client.Do(ctx, req, out)
- if err != nil {
- return nil, resp, err
- }
- return out, resp, nil
- }
- func (s *MigrationService) LargeFiles(ctx context.Context, owner, repo string) ([]*LargeFile, *Response, error) {
- u := fmt.Sprintf("repos/%v/%v/import/large_files", owner, repo)
- req, err := s.client.NewRequest("GET", u, nil)
- if err != nil {
- return nil, nil, err
- }
-
- req.Header.Set("Accept", mediaTypeImportPreview)
- var files []*LargeFile
- resp, err := s.client.Do(ctx, req, &files)
- if err != nil {
- return nil, resp, err
- }
- return files, resp, nil
- }
- func (s *MigrationService) CancelImport(ctx context.Context, owner, repo string) (*Response, error) {
- u := fmt.Sprintf("repos/%v/%v/import", owner, repo)
- req, err := s.client.NewRequest("DELETE", u, nil)
- if err != nil {
- return nil, err
- }
-
- req.Header.Set("Accept", mediaTypeImportPreview)
- return s.client.Do(ctx, req, nil)
- }
|