2019-05-07 01:12:51 +00: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 15:25:33 +00:00
|
|
|
package migration
|
2019-05-07 01:12:51 +00:00
|
|
|
|
2019-11-16 08:30:06 +00:00
|
|
|
import (
|
2019-12-17 04:16:54 +00:00
|
|
|
"context"
|
2019-11-16 08:30:06 +00:00
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/structs"
|
|
|
|
)
|
2019-10-14 06:10:42 +00:00
|
|
|
|
2021-06-30 07:23:49 +00:00
|
|
|
// GetCommentOptions represents an options for get comment
|
|
|
|
type GetCommentOptions struct {
|
2021-08-21 22:47:45 +00:00
|
|
|
Context IssueContext
|
|
|
|
Page int
|
|
|
|
PageSize int
|
2021-06-30 07:23:49 +00:00
|
|
|
}
|
|
|
|
|
2021-07-08 11:38:13 +00:00
|
|
|
// Downloader downloads the site repo information
|
2019-05-07 01:12:51 +00:00
|
|
|
type Downloader interface {
|
2019-12-17 04:16:54 +00:00
|
|
|
SetContext(context.Context)
|
2019-05-07 01:12:51 +00:00
|
|
|
GetRepoInfo() (*Repository, error)
|
2019-08-14 06:16:12 +00:00
|
|
|
GetTopics() ([]string, error)
|
2019-05-07 01:12:51 +00:00
|
|
|
GetMilestones() ([]*Milestone, error)
|
|
|
|
GetReleases() ([]*Release, error)
|
|
|
|
GetLabels() ([]*Label, error)
|
2019-05-30 20:26:57 +00:00
|
|
|
GetIssues(page, perPage int) ([]*Issue, bool, error)
|
2021-06-30 07:23:49 +00:00
|
|
|
GetComments(opts GetCommentOptions) ([]*Comment, bool, error)
|
|
|
|
SupportGetRepoComments() bool
|
2020-10-14 04:06:00 +00:00
|
|
|
GetPullRequests(page, perPage int) ([]*PullRequest, bool, error)
|
2021-08-21 22:47:45 +00:00
|
|
|
GetReviews(pullRequestContext IssueContext) ([]*Review, error)
|
2021-01-21 19:33:58 +00:00
|
|
|
FormatCloneURL(opts MigrateOptions, remoteAddr string) (string, error)
|
2019-05-07 01:12:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DownloaderFactory defines an interface to match a downloader implementation and create a downloader
|
|
|
|
type DownloaderFactory interface {
|
2020-09-02 17:49:25 +00:00
|
|
|
New(ctx context.Context, opts MigrateOptions) (Downloader, error)
|
2019-10-14 06:10:42 +00:00
|
|
|
GitServiceType() structs.GitServiceType
|
2019-05-07 01:12:51 +00:00
|
|
|
}
|