2019-05-06 21:12:51 -04:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
|
|
// Copyright 2018 Jonas Franz. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2021-11-16 10:25:33 -05:00
|
|
|
package migration
|
2019-05-06 21:12:51 -04:00
|
|
|
|
2021-07-08 07:38:13 -04:00
|
|
|
// Uploader uploads all the information of one repository
|
2019-05-06 21:12:51 -04:00
|
|
|
type Uploader interface {
|
2019-07-06 15:24:50 -04:00
|
|
|
MaxBatchInsertSize(tp string) int
|
2019-07-01 17:17:16 -04:00
|
|
|
CreateRepo(repo *Repository, opts MigrateOptions) error
|
2019-08-14 02:16:12 -04:00
|
|
|
CreateTopics(topic ...string) error
|
2019-06-29 09:38:22 -04:00
|
|
|
CreateMilestones(milestones ...*Milestone) error
|
2020-12-26 22:34:19 -05:00
|
|
|
CreateReleases(releases ...*Release) error
|
2019-12-11 19:20:11 -05:00
|
|
|
SyncTags() error
|
2019-06-29 09:38:22 -04:00
|
|
|
CreateLabels(labels ...*Label) error
|
|
|
|
CreateIssues(issues ...*Issue) error
|
|
|
|
CreateComments(comments ...*Comment) error
|
|
|
|
CreatePullRequests(prs ...*PullRequest) error
|
2020-01-23 12:28:15 -05:00
|
|
|
CreateReviews(reviews ...*Review) error
|
2019-05-06 21:12:51 -04:00
|
|
|
Rollback() error
|
2020-12-26 22:34:19 -05:00
|
|
|
Finish() error
|
2019-11-13 02:01:19 -05:00
|
|
|
Close()
|
2019-05-06 21:12:51 -04:00
|
|
|
}
|