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.
|
|
|
|
|
|
|
|
package base
|
|
|
|
|
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
|
|
|
|
2019-05-06 19:12:51 -06:00
|
|
|
// Downloader downloads the site repo informations
|
|
|
|
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)
|
2019-05-06 19:12:51 -06:00
|
|
|
GetComments(issueNumber int64) ([]*Comment, error)
|
2020-10-13 22:06:00 -06:00
|
|
|
GetPullRequests(page, perPage int) ([]*PullRequest, bool, error)
|
2020-01-23 10:28:15 -07:00
|
|
|
GetReviews(pullRequestNumber int64) ([]*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
|
|
|
}
|