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