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