mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	* update code.gitea.io/sdk/gitea v0.13.1 -> v0.13.2 * update github.com/go-swagger/go-swagger v0.25.0 -> v0.26.0 * update github.com/google/uuid v1.1.2 -> v1.2.0 * update github.com/klauspost/compress v1.11.3 -> v1.11.7 * update github.com/lib/pq 083382b7e6fc -> v1.9.0 * update github.com/markbates/goth v1.65.0 -> v1.66.1 * update github.com/mattn/go-sqlite3 v1.14.4 -> v1.14.6 * update github.com/mgechev/revive 246eac737dc7 -> v1.0.3 * update github.com/minio/minio-go/v7 v7.0.6 -> v7.0.7 * update github.com/niklasfasching/go-org v1.3.2 -> v1.4.0 * update github.com/olivere/elastic/v7 v7.0.21 -> v7.0.22 * update github.com/pquerna/otp v1.2.0 -> v1.3.0 * update github.com/xanzy/go-gitlab v0.39.0 -> v0.42.0 * update github.com/yuin/goldmark v1.2.1 -> v1.3.1
		
			
				
	
	
		
			124 lines
		
	
	
	
		
			3.9 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			124 lines
		
	
	
	
		
			3.9 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
// Copyright 2020 The Gitea Authors. All rights reserved.
 | 
						|
// Use of this source code is governed by a MIT-style
 | 
						|
// license that can be found in the LICENSE file.
 | 
						|
 | 
						|
package gitea
 | 
						|
 | 
						|
import (
 | 
						|
	"bytes"
 | 
						|
	"encoding/json"
 | 
						|
	"fmt"
 | 
						|
)
 | 
						|
 | 
						|
// GitServiceType represents a git service
 | 
						|
type GitServiceType string
 | 
						|
 | 
						|
const (
 | 
						|
	// GitServicePlain represents a plain git service
 | 
						|
	GitServicePlain GitServiceType = "git"
 | 
						|
	//GitServiceGithub represents github.com
 | 
						|
	GitServiceGithub GitServiceType = "github"
 | 
						|
	// GitServiceGitlab represents a gitlab service
 | 
						|
	GitServiceGitlab GitServiceType = "gitlab"
 | 
						|
	// GitServiceGitea represents a gitea service
 | 
						|
	GitServiceGitea GitServiceType = "gitea"
 | 
						|
 | 
						|
	// Not supported jet
 | 
						|
	// // GitServiceGogs represents a gogs service
 | 
						|
	// GitServiceGogs GitServiceType = "gogs"
 | 
						|
)
 | 
						|
 | 
						|
// MigrateRepoOption options for migrating a repository from an external service
 | 
						|
type MigrateRepoOption struct {
 | 
						|
	RepoName  string `json:"repo_name"`
 | 
						|
	RepoOwner string `json:"repo_owner"`
 | 
						|
	// deprecated use RepoOwner
 | 
						|
	RepoOwnerID  int64          `json:"uid"`
 | 
						|
	CloneAddr    string         `json:"clone_addr"`
 | 
						|
	Service      GitServiceType `json:"service"`
 | 
						|
	AuthUsername string         `json:"auth_username"`
 | 
						|
	AuthPassword string         `json:"auth_password"`
 | 
						|
	AuthToken    string         `json:"auth_token"`
 | 
						|
	Mirror       bool           `json:"mirror"`
 | 
						|
	Private      bool           `json:"private"`
 | 
						|
	Description  string         `json:"description"`
 | 
						|
	Wiki         bool           `json:"wiki"`
 | 
						|
	Milestones   bool           `json:"milestones"`
 | 
						|
	Labels       bool           `json:"labels"`
 | 
						|
	Issues       bool           `json:"issues"`
 | 
						|
	PullRequests bool           `json:"pull_requests"`
 | 
						|
	Releases     bool           `json:"releases"`
 | 
						|
}
 | 
						|
 | 
						|
// Validate the MigrateRepoOption struct
 | 
						|
func (opt *MigrateRepoOption) Validate(c *Client) error {
 | 
						|
	// check user options
 | 
						|
	if len(opt.CloneAddr) == 0 {
 | 
						|
		return fmt.Errorf("CloneAddr required")
 | 
						|
	}
 | 
						|
	if len(opt.RepoName) == 0 {
 | 
						|
		return fmt.Errorf("RepoName required")
 | 
						|
	} else if len(opt.RepoName) > 100 {
 | 
						|
		return fmt.Errorf("RepoName to long")
 | 
						|
	}
 | 
						|
	if len(opt.Description) > 255 {
 | 
						|
		return fmt.Errorf("Description to long")
 | 
						|
	}
 | 
						|
	switch opt.Service {
 | 
						|
	case GitServiceGithub:
 | 
						|
		if len(opt.AuthToken) == 0 {
 | 
						|
			return fmt.Errorf("github require token authentication")
 | 
						|
		}
 | 
						|
	case GitServiceGitlab, GitServiceGitea:
 | 
						|
		if len(opt.AuthToken) == 0 {
 | 
						|
			return fmt.Errorf("%s require token authentication", opt.Service)
 | 
						|
		}
 | 
						|
		// Gitlab is supported since 1.12.0 but api cant handle it until 1.13.0
 | 
						|
		// https://github.com/go-gitea/gitea/pull/12672
 | 
						|
		if c.checkServerVersionGreaterThanOrEqual(version1_13_0) != nil {
 | 
						|
			return fmt.Errorf("migrate from service %s need gitea >= 1.13.0", opt.Service)
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
// MigrateRepo migrates a repository from other Git hosting sources for the authenticated user.
 | 
						|
//
 | 
						|
// To migrate a repository for a organization, the authenticated user must be a
 | 
						|
// owner of the specified organization.
 | 
						|
func (c *Client) MigrateRepo(opt MigrateRepoOption) (*Repository, *Response, error) {
 | 
						|
	if err := opt.Validate(c); err != nil {
 | 
						|
		return nil, nil, err
 | 
						|
	}
 | 
						|
 | 
						|
	if err := c.checkServerVersionGreaterThanOrEqual(version1_13_0); err != nil {
 | 
						|
		if len(opt.AuthToken) != 0 {
 | 
						|
			// gitea <= 1.12 dont understand AuthToken
 | 
						|
			opt.AuthUsername = opt.AuthToken
 | 
						|
			opt.AuthPassword, opt.AuthToken = "", ""
 | 
						|
		}
 | 
						|
		if len(opt.RepoOwner) != 0 {
 | 
						|
			// gitea <= 1.12 dont understand RepoOwner
 | 
						|
			u, _, err := c.GetUserInfo(opt.RepoOwner)
 | 
						|
			if err != nil {
 | 
						|
				return nil, nil, err
 | 
						|
			}
 | 
						|
			opt.RepoOwnerID = u.ID
 | 
						|
		} else if opt.RepoOwnerID == 0 {
 | 
						|
			// gitea <= 1.12 require RepoOwnerID
 | 
						|
			u, _, err := c.GetMyUserInfo()
 | 
						|
			if err != nil {
 | 
						|
				return nil, nil, err
 | 
						|
			}
 | 
						|
			opt.RepoOwnerID = u.ID
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	body, err := json.Marshal(&opt)
 | 
						|
	if err != nil {
 | 
						|
		return nil, nil, err
 | 
						|
	}
 | 
						|
	repo := new(Repository)
 | 
						|
	resp, err := c.getParsedResponse("POST", "/repos/migrate", jsonHeader, bytes.NewReader(body), repo)
 | 
						|
	return repo, resp, err
 | 
						|
}
 |