2019-05-07 01:12:51 +00:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
|
|
// Copyright 2018 Jonas Franz. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-05-07 01:12:51 +00:00
|
|
|
|
2021-11-16 15:25:33 +00:00
|
|
|
package migration
|
2019-05-07 01:12:51 +00:00
|
|
|
|
2019-10-13 13:23:14 +00:00
|
|
|
import "code.gitea.io/gitea/modules/structs"
|
2019-05-07 01:12:51 +00:00
|
|
|
|
2019-10-13 13:23:14 +00:00
|
|
|
// MigrateOptions defines the way a repository gets migrated
|
2020-09-10 22:29:19 +00:00
|
|
|
// this is for internal usage by migrations module and func who interact with it
|
|
|
|
type MigrateOptions struct {
|
|
|
|
// required: true
|
2021-05-31 08:25:47 +00:00
|
|
|
CloneAddr string `json:"clone_addr" binding:"Required"`
|
|
|
|
CloneAddrEncrypted string `json:"clone_addr_encrypted,omitempty"`
|
|
|
|
AuthUsername string `json:"auth_username"`
|
|
|
|
AuthPassword string `json:"-"`
|
|
|
|
AuthPasswordEncrypted string `json:"auth_password_encrypted,omitempty"`
|
|
|
|
AuthToken string `json:"-"`
|
|
|
|
AuthTokenEncrypted string `json:"auth_token_encrypted,omitempty"`
|
2020-09-10 22:29:19 +00:00
|
|
|
// required: true
|
|
|
|
UID int `json:"uid" binding:"Required"`
|
|
|
|
// required: true
|
|
|
|
RepoName string `json:"repo_name" binding:"Required"`
|
|
|
|
Mirror bool `json:"mirror"`
|
2021-04-08 22:25:57 +00:00
|
|
|
LFS bool `json:"lfs"`
|
|
|
|
LFSEndpoint string `json:"lfs_endpoint"`
|
2020-09-10 22:29:19 +00:00
|
|
|
Private bool `json:"private"`
|
|
|
|
Description string `json:"description"`
|
|
|
|
OriginalURL string
|
|
|
|
GitServiceType structs.GitServiceType
|
|
|
|
Wiki bool
|
|
|
|
Issues bool
|
|
|
|
Milestones bool
|
|
|
|
Labels bool
|
|
|
|
Releases bool
|
|
|
|
Comments bool
|
|
|
|
PullRequests bool
|
2020-12-27 03:34:19 +00:00
|
|
|
ReleaseAssets bool
|
2020-09-10 22:29:19 +00:00
|
|
|
MigrateToRepoID int64
|
2021-01-02 23:47:47 +00:00
|
|
|
MirrorInterval string `json:"mirror_interval"`
|
2020-09-10 22:29:19 +00:00
|
|
|
}
|