2019-05-07 04:12:51 +03: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.
|
|
|
|
|
|
|
|
package base
|
|
|
|
|
2019-06-29 16:38:22 +03:00
|
|
|
// Uploader uploads all the informations of one repository
|
2019-05-07 04:12:51 +03:00
|
|
|
type Uploader interface {
|
2019-07-06 22:24:50 +03:00
|
|
|
MaxBatchInsertSize(tp string) int
|
2019-07-02 00:17:16 +03:00
|
|
|
CreateRepo(repo *Repository, opts MigrateOptions) error
|
2019-08-14 09:16:12 +03:00
|
|
|
CreateTopics(topic ...string) error
|
2019-06-29 16:38:22 +03:00
|
|
|
CreateMilestones(milestones ...*Milestone) error
|
2020-12-27 06:34:19 +03:00
|
|
|
CreateReleases(releases ...*Release) error
|
2019-12-12 03:20:11 +03:00
|
|
|
SyncTags() error
|
2019-06-29 16:38:22 +03:00
|
|
|
CreateLabels(labels ...*Label) error
|
|
|
|
CreateIssues(issues ...*Issue) error
|
|
|
|
CreateComments(comments ...*Comment) error
|
|
|
|
CreatePullRequests(prs ...*PullRequest) error
|
2020-01-23 20:28:15 +03:00
|
|
|
CreateReviews(reviews ...*Review) error
|
2019-05-07 04:12:51 +03:00
|
|
|
Rollback() error
|
2020-12-27 06:34:19 +03:00
|
|
|
Finish() error
|
2019-11-13 10:01:19 +03:00
|
|
|
Close()
|
2019-05-07 04:12:51 +03:00
|
|
|
}
|