2019-05-07 03:12:51 +02:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package migrations
|
|
|
|
|
|
|
|
import (
|
2019-12-17 05:16:54 +01:00
|
|
|
"context"
|
|
|
|
|
2021-11-16 16:25:33 +01:00
|
|
|
base "code.gitea.io/gitea/modules/migration"
|
2019-05-07 03:12:51 +02:00
|
|
|
)
|
|
|
|
|
2022-01-20 18:46:10 +01:00
|
|
|
var _ base.Downloader = &PlainGitDownloader{}
|
2019-05-07 03:12:51 +02:00
|
|
|
|
|
|
|
// PlainGitDownloader implements a Downloader interface to clone git from a http/https URL
|
|
|
|
type PlainGitDownloader struct {
|
2021-01-21 20:33:58 +01:00
|
|
|
base.NullDownloader
|
2019-05-07 03:12:51 +02:00
|
|
|
ownerName string
|
|
|
|
repoName string
|
|
|
|
remoteURL string
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewPlainGitDownloader creates a git Downloader
|
|
|
|
func NewPlainGitDownloader(ownerName, repoName, remoteURL string) *PlainGitDownloader {
|
|
|
|
return &PlainGitDownloader{
|
|
|
|
ownerName: ownerName,
|
|
|
|
repoName: repoName,
|
|
|
|
remoteURL: remoteURL,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-17 05:16:54 +01:00
|
|
|
// SetContext set context
|
|
|
|
func (g *PlainGitDownloader) SetContext(ctx context.Context) {
|
|
|
|
}
|
|
|
|
|
2019-05-07 03:12:51 +02:00
|
|
|
// GetRepoInfo returns a repository information
|
|
|
|
func (g *PlainGitDownloader) GetRepoInfo() (*base.Repository, error) {
|
|
|
|
// convert github repo to stand Repo
|
|
|
|
return &base.Repository{
|
|
|
|
Owner: g.ownerName,
|
|
|
|
Name: g.repoName,
|
|
|
|
CloneURL: g.remoteURL,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2021-01-21 20:33:58 +01:00
|
|
|
// GetTopics return empty string slice
|
|
|
|
func (g PlainGitDownloader) GetTopics() ([]string, error) {
|
2019-08-14 08:16:12 +02:00
|
|
|
return []string{}, nil
|
|
|
|
}
|