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