|
|
|
// 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 migrations
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
Store the foreign ID of issues during migration (#18446)
Storing the foreign identifier of an imported issue in the database is a prerequisite to implement idempotent migrations or mirror for issues. It is a baby step towards mirroring that introduces a new table.
At the moment when an issue is created by the Gitea uploader, it fails if the issue already exists. The Gitea uploader could be modified so that, instead of failing, it looks up the database to find an existing issue. And if it does it would update the issue instead of creating a new one. However this is not currently possible because an information is missing from the database: the foreign identifier that uniquely represents the issue being migrated is not persisted. With this change, the foreign identifier is stored in the database and the Gitea uploader will then be able to run a query to figure out if a given issue being imported already exists.
The implementation of mirroring for issues, pull requests, releases, etc. can be done in three steps:
1. Store an identifier for the element being mirrored (issue, pull request...) in the database (this is the purpose of these changes)
2. Modify the Gitea uploader to be able to update an existing repository with all it contains (issues, pull request...) instead of failing if it exists
3. Optimize the Gitea uploader to speed up the updates, when possible.
The second step creates code that does not yet exist to enable idempotent migrations with the Gitea uploader. When a migration is done for the first time, the behavior is not changed. But when a migration is done for a repository that already exists, this new code is used to update it.
The third step can use the code created in the second step to optimize and speed up migrations. For instance, when a migration is resumed, an issue that has an update time that is not more recent can be skipped and only newly created issues or updated ones will be updated. Another example of optimization could be that a webhook notifies Gitea when an issue is updated. The code triggered by the webhook would download only this issue and call the code created in the second step to update the issue, as if it was in the process of an idempotent migration.
The ForeignReferences table is added to contain local and foreign ID pairs relative to a given repository. It can later be used for pull requests and other artifacts that can be mirrored. Although the foreign id could be added as a single field in issues or pull requests, it would need to be added to all tables that represent something that can be mirrored. Creating a new table makes for a simpler and more generic design. The drawback is that it requires an extra lookup to obtain the information. However, this extra information is only required during migration or mirroring and does not impact the way Gitea currently works.
The foreign identifier of an issue or pull request is similar to the identifier of an external user, which is stored in reactions, issues, etc. as OriginalPosterID and so on. The representation of a user is however different and the ability of users to link their account to an external user at a later time is also a logic that is different from what is involved in mirroring or migrations. For these reasons, despite some commonalities, it is unclear at this time how the two tables (foreign reference and external user) could be merged together.
The ForeignID field is extracted from the issue migration context so that it can be dumped in files with dump-repo and later restored via restore-repo.
The GetAllComments downloader method is introduced to simplify the implementation and not overload the Context for the purpose of pagination. It also clarifies in which context the comments are paginated and in which context they are not.
The Context interface is no longer useful for the purpose of retrieving the LocalID and ForeignID since they are now both available from the PullRequest and Issue struct. The Reviewable and Commentable interfaces replace and serve the same purpose.
The Context data member of PullRequest and Issue becomes a DownloaderContext to clarify that its purpose is not to support in memory operations while the current downloader is acting but is not otherwise persisted. It is, for instance, used by the GitLab downloader to store the IsMergeRequest boolean and sort out issues.
---
[source](https://lab.forgefriends.org/forgefriends/forgefriends/-/merge_requests/36)
Signed-off-by: Loïc Dachary <loic@dachary.org>
Co-authored-by: Loïc Dachary <loic@dachary.org>
3 years ago
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/models/db"
|
Store the foreign ID of issues during migration (#18446)
Storing the foreign identifier of an imported issue in the database is a prerequisite to implement idempotent migrations or mirror for issues. It is a baby step towards mirroring that introduces a new table.
At the moment when an issue is created by the Gitea uploader, it fails if the issue already exists. The Gitea uploader could be modified so that, instead of failing, it looks up the database to find an existing issue. And if it does it would update the issue instead of creating a new one. However this is not currently possible because an information is missing from the database: the foreign identifier that uniquely represents the issue being migrated is not persisted. With this change, the foreign identifier is stored in the database and the Gitea uploader will then be able to run a query to figure out if a given issue being imported already exists.
The implementation of mirroring for issues, pull requests, releases, etc. can be done in three steps:
1. Store an identifier for the element being mirrored (issue, pull request...) in the database (this is the purpose of these changes)
2. Modify the Gitea uploader to be able to update an existing repository with all it contains (issues, pull request...) instead of failing if it exists
3. Optimize the Gitea uploader to speed up the updates, when possible.
The second step creates code that does not yet exist to enable idempotent migrations with the Gitea uploader. When a migration is done for the first time, the behavior is not changed. But when a migration is done for a repository that already exists, this new code is used to update it.
The third step can use the code created in the second step to optimize and speed up migrations. For instance, when a migration is resumed, an issue that has an update time that is not more recent can be skipped and only newly created issues or updated ones will be updated. Another example of optimization could be that a webhook notifies Gitea when an issue is updated. The code triggered by the webhook would download only this issue and call the code created in the second step to update the issue, as if it was in the process of an idempotent migration.
The ForeignReferences table is added to contain local and foreign ID pairs relative to a given repository. It can later be used for pull requests and other artifacts that can be mirrored. Although the foreign id could be added as a single field in issues or pull requests, it would need to be added to all tables that represent something that can be mirrored. Creating a new table makes for a simpler and more generic design. The drawback is that it requires an extra lookup to obtain the information. However, this extra information is only required during migration or mirroring and does not impact the way Gitea currently works.
The foreign identifier of an issue or pull request is similar to the identifier of an external user, which is stored in reactions, issues, etc. as OriginalPosterID and so on. The representation of a user is however different and the ability of users to link their account to an external user at a later time is also a logic that is different from what is involved in mirroring or migrations. For these reasons, despite some commonalities, it is unclear at this time how the two tables (foreign reference and external user) could be merged together.
The ForeignID field is extracted from the issue migration context so that it can be dumped in files with dump-repo and later restored via restore-repo.
The GetAllComments downloader method is introduced to simplify the implementation and not overload the Context for the purpose of pagination. It also clarifies in which context the comments are paginated and in which context they are not.
The Context interface is no longer useful for the purpose of retrieving the LocalID and ForeignID since they are now both available from the PullRequest and Issue struct. The Reviewable and Commentable interfaces replace and serve the same purpose.
The Context data member of PullRequest and Issue becomes a DownloaderContext to clarify that its purpose is not to support in memory operations while the current downloader is acting but is not otherwise persisted. It is, for instance, used by the GitLab downloader to store the IsMergeRequest boolean and sort out issues.
---
[source](https://lab.forgefriends.org/forgefriends/forgefriends/-/merge_requests/36)
Signed-off-by: Loïc Dachary <loic@dachary.org>
Co-authored-by: Loïc Dachary <loic@dachary.org>
3 years ago
|
|
|
"code.gitea.io/gitea/models/foreignreference"
|
|
|
|
issues_model "code.gitea.io/gitea/models/issues"
|
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
|
|
|
"code.gitea.io/gitea/modules/git"
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
base "code.gitea.io/gitea/modules/migration"
|
|
|
|
repo_module "code.gitea.io/gitea/modules/repository"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
"code.gitea.io/gitea/modules/storage"
|
|
|
|
"code.gitea.io/gitea/modules/structs"
|
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
|
|
|
"code.gitea.io/gitea/modules/uri"
|
|
|
|
"code.gitea.io/gitea/services/pull"
|
|
|
|
|
|
|
|
gouuid "github.com/google/uuid"
|
|
|
|
)
|
|
|
|
|
|
|
|
var _ base.Uploader = &GiteaLocalUploader{}
|
|
|
|
|
|
|
|
// GiteaLocalUploader implements an Uploader to gitea sites
|
|
|
|
type GiteaLocalUploader struct {
|
|
|
|
ctx context.Context
|
|
|
|
doer *user_model.User
|
|
|
|
repoOwner string
|
|
|
|
repoName string
|
|
|
|
repo *repo_model.Repository
|
|
|
|
labels map[string]*issues_model.Label
|
|
|
|
milestones map[string]int64
|
|
|
|
issues map[int64]*issues_model.Issue
|
|
|
|
gitRepo *git.Repository
|
|
|
|
prHeadCache map[string]struct{}
|
|
|
|
sameApp bool
|
|
|
|
userMap map[int64]int64 // external user id mapping to user id
|
|
|
|
prCache map[int64]*issues_model.PullRequest
|
|
|
|
gitServiceType structs.GitServiceType
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewGiteaLocalUploader creates an gitea Uploader via gitea API v1
|
|
|
|
func NewGiteaLocalUploader(ctx context.Context, doer *user_model.User, repoOwner, repoName string) *GiteaLocalUploader {
|
|
|
|
return &GiteaLocalUploader{
|
|
|
|
ctx: ctx,
|
|
|
|
doer: doer,
|
|
|
|
repoOwner: repoOwner,
|
|
|
|
repoName: repoName,
|
|
|
|
labels: make(map[string]*issues_model.Label),
|
|
|
|
milestones: make(map[string]int64),
|
|
|
|
issues: make(map[int64]*issues_model.Issue),
|
|
|
|
prHeadCache: make(map[string]struct{}),
|
|
|
|
userMap: make(map[int64]int64),
|
|
|
|
prCache: make(map[int64]*issues_model.PullRequest),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// MaxBatchInsertSize returns the table's max batch insert size
|
|
|
|
func (g *GiteaLocalUploader) MaxBatchInsertSize(tp string) int {
|
|
|
|
switch tp {
|
|
|
|
case "issue":
|
|
|
|
return db.MaxBatchInsertSize(new(issues_model.Issue))
|
|
|
|
case "comment":
|
|
|
|
return db.MaxBatchInsertSize(new(issues_model.Comment))
|
|
|
|
case "milestone":
|
|
|
|
return db.MaxBatchInsertSize(new(issues_model.Milestone))
|
|
|
|
case "label":
|
|
|
|
return db.MaxBatchInsertSize(new(issues_model.Label))
|
|
|
|
case "release":
|
|
|
|
return db.MaxBatchInsertSize(new(models.Release))
|
|
|
|
case "pullrequest":
|
|
|
|
return db.MaxBatchInsertSize(new(issues_model.PullRequest))
|
|
|
|
}
|
|
|
|
return 10
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateRepo creates a repository
|
|
|
|
func (g *GiteaLocalUploader) CreateRepo(repo *base.Repository, opts base.MigrateOptions) error {
|
|
|
|
owner, err := user_model.GetUserByName(g.ctx, g.repoOwner)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
var r *repo_model.Repository
|
|
|
|
if opts.MigrateToRepoID <= 0 {
|
|
|
|
r, err = repo_module.CreateRepository(g.doer, owner, models.CreateRepoOptions{
|
|
|
|
Name: g.repoName,
|
|
|
|
Description: repo.Description,
|
|
|
|
OriginalURL: repo.OriginalURL,
|
|
|
|
GitServiceType: opts.GitServiceType,
|
|
|
|
IsPrivate: opts.Private,
|
|
|
|
IsMirror: opts.Mirror,
|
|
|
|
Status: repo_model.RepositoryBeingMigrated,
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
r, err = repo_model.GetRepositoryByID(opts.MigrateToRepoID)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
r.DefaultBranch = repo.DefaultBranch
|
|
|
|
r.Description = repo.Description
|
|
|
|
|
|
|
|
r, err = repo_module.MigrateRepositoryGitData(g.ctx, owner, r, base.MigrateOptions{
|
|
|
|
RepoName: g.repoName,
|
|
|
|
Description: repo.Description,
|
|
|
|
OriginalURL: repo.OriginalURL,
|
|
|
|
GitServiceType: opts.GitServiceType,
|
|
|
|
Mirror: repo.IsMirror,
|
|
|
|
LFS: opts.LFS,
|
|
|
|
LFSEndpoint: opts.LFSEndpoint,
|
|
|
|
CloneAddr: repo.CloneURL,
|
|
|
|
Private: repo.IsPrivate,
|
|
|
|
Wiki: opts.Wiki,
|
|
|
|
Releases: opts.Releases, // if didn't get releases, then sync them from tags
|
|
|
|
MirrorInterval: opts.MirrorInterval,
|
|
|
|
}, NewMigrationHTTPTransport())
|
|
|
|
|
|
|
|
g.sameApp = strings.HasPrefix(repo.OriginalURL, setting.AppURL)
|
|
|
|
g.repo = r
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
g.gitRepo, err = git.OpenRepository(g.ctx, r.RepoPath())
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close closes this uploader
|
|
|
|
func (g *GiteaLocalUploader) Close() {
|
|
|
|
if g.gitRepo != nil {
|
|
|
|
g.gitRepo.Close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateTopics creates topics
|
|
|
|
func (g *GiteaLocalUploader) CreateTopics(topics ...string) error {
|
|
|
|
// ignore topics to long for the db
|
|
|
|
c := 0
|
|
|
|
for i := range topics {
|
|
|
|
if len(topics[i]) <= 50 {
|
|
|
|
topics[c] = topics[i]
|
|
|
|
c++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
topics = topics[:c]
|
|
|
|
return repo_model.SaveTopics(g.repo.ID, topics...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateMilestones creates milestones
|
|
|
|
func (g *GiteaLocalUploader) CreateMilestones(milestones ...*base.Milestone) error {
|
|
|
|
mss := make([]*issues_model.Milestone, 0, len(milestones))
|
|
|
|
for _, milestone := range milestones {
|
|
|
|
var deadline timeutil.TimeStamp
|
|
|
|
if milestone.Deadline != nil {
|
|
|
|
deadline = timeutil.TimeStamp(milestone.Deadline.Unix())
|
|
|
|
}
|
|
|
|
if deadline == 0 {
|
|
|
|
deadline = timeutil.TimeStamp(time.Date(9999, 1, 1, 0, 0, 0, 0, setting.DefaultUILocation).Unix())
|
|
|
|
}
|
|
|
|
|
|
|
|
if milestone.Created.IsZero() {
|
|
|
|
if milestone.Updated != nil {
|
|
|
|
milestone.Created = *milestone.Updated
|
|
|
|
} else if milestone.Deadline != nil {
|
|
|
|
milestone.Created = *milestone.Deadline
|
|
|
|
} else {
|
|
|
|
milestone.Created = time.Now()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if milestone.Updated == nil || milestone.Updated.IsZero() {
|
|
|
|
milestone.Updated = &milestone.Created
|
|
|
|
}
|
|
|
|
|
|
|
|
ms := issues_model.Milestone{
|
|
|
|
RepoID: g.repo.ID,
|
|
|
|
Name: milestone.Title,
|
|
|
|
Content: milestone.Description,
|
|
|
|
IsClosed: milestone.State == "closed",
|
|
|
|
CreatedUnix: timeutil.TimeStamp(milestone.Created.Unix()),
|
|
|
|
UpdatedUnix: timeutil.TimeStamp(milestone.Updated.Unix()),
|
|
|
|
DeadlineUnix: deadline,
|
|
|
|
}
|
|
|
|
if ms.IsClosed && milestone.Closed != nil {
|
|
|
|
ms.ClosedDateUnix = timeutil.TimeStamp(milestone.Closed.Unix())
|
|
|
|
}
|
|
|
|
mss = append(mss, &ms)
|
|
|
|
}
|
|
|
|
|
|
|
|
err := models.InsertMilestones(mss...)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, ms := range mss {
|
|
|
|
g.milestones[ms.Name] = ms.ID
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateLabels creates labels
|
|
|
|
func (g *GiteaLocalUploader) CreateLabels(labels ...*base.Label) error {
|
|
|
|
lbs := make([]*issues_model.Label, 0, len(labels))
|
|
|
|
for _, label := range labels {
|
|
|
|
lbs = append(lbs, &issues_model.Label{
|
|
|
|
RepoID: g.repo.ID,
|
|
|
|
Name: label.Name,
|
|
|
|
Description: label.Description,
|
|
|
|
Color: fmt.Sprintf("#%s", label.Color),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
err := issues_model.NewLabels(lbs...)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for _, lb := range lbs {
|
|
|
|
g.labels[lb.Name] = lb
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateReleases creates releases
|
|
|
|
func (g *GiteaLocalUploader) CreateReleases(releases ...*base.Release) error {
|
|
|
|
rels := make([]*models.Release, 0, len(releases))
|
|
|
|
for _, release := range releases {
|
|
|
|
if release.Created.IsZero() {
|
|
|
|
if !release.Published.IsZero() {
|
|
|
|
release.Created = release.Published
|
|
|
|
} else {
|
|
|
|
release.Created = time.Now()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rel := models.Release{
|
|
|
|
RepoID: g.repo.ID,
|
|
|
|
TagName: release.TagName,
|
|
|
|
LowerTagName: strings.ToLower(release.TagName),
|
|
|
|
Target: release.TargetCommitish,
|
|
|
|
Title: release.Name,
|
|
|
|
Note: release.Body,
|
|
|
|
IsDraft: release.Draft,
|
|
|
|
IsPrerelease: release.Prerelease,
|
|
|
|
IsTag: false,
|
|
|
|
CreatedUnix: timeutil.TimeStamp(release.Created.Unix()),
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := g.remapUser(release, &rel); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// calc NumCommits if possible
|
|
|
|
if rel.TagName != "" {
|
|
|
|
commit, err := g.gitRepo.GetTagCommit(rel.TagName)
|
|
|
|
if !git.IsErrNotExist(err) {
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("GetTagCommit[%v]: %v", rel.TagName, err)
|
|
|
|
}
|
|
|
|
rel.Sha1 = commit.ID.String()
|
|
|
|
rel.NumCommits, err = commit.CommitsCount()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("CommitsCount: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, asset := range release.Assets {
|
|
|
|
if asset.Created.IsZero() {
|
|
|
|
if !asset.Updated.IsZero() {
|
|
|
|
asset.Created = asset.Updated
|
|
|
|
} else {
|
|
|
|
asset.Created = release.Created
|
|
|
|
}
|
|
|
|
}
|
|
|
|
attach := repo_model.Attachment{
|
|
|
|
UUID: gouuid.New().String(),
|
|
|
|
Name: asset.Name,
|
|
|
|
DownloadCount: int64(*asset.DownloadCount),
|
|
|
|
Size: int64(*asset.Size),
|
|
|
|
CreatedUnix: timeutil.TimeStamp(asset.Created.Unix()),
|
|
|
|
}
|
|
|
|
|
|
|
|
// download attachment
|
|
|
|
err := func() error {
|
|
|
|
// asset.DownloadURL maybe a local file
|
|
|
|
var rc io.ReadCloser
|
|
|
|
var err error
|
|
|
|
if asset.DownloadFunc != nil {
|
|
|
|
rc, err = asset.DownloadFunc()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
} else if asset.DownloadURL != nil {
|
|
|
|
rc, err = uri.Open(*asset.DownloadURL)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if rc == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
_, err = storage.Attachments.Save(attach.RelativePath(), rc, int64(*asset.Size))
|
|
|
|
rc.Close()
|
|
|
|
return err
|
|
|
|
}()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
rel.Attachments = append(rel.Attachments, &attach)
|
|
|
|
}
|
|
|
|
|
|
|
|
rels = append(rels, &rel)
|
|
|
|
}
|
|
|
|
|
|
|
|
return models.InsertReleases(rels...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// SyncTags syncs releases with tags in the database
|
|
|
|
func (g *GiteaLocalUploader) SyncTags() error {
|
|
|
|
return repo_module.SyncReleasesWithTags(g.repo, g.gitRepo)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateIssues creates issues
|
|
|
|
func (g *GiteaLocalUploader) CreateIssues(issues ...*base.Issue) error {
|
|
|
|
iss := make([]*issues_model.Issue, 0, len(issues))
|
|
|
|
for _, issue := range issues {
|
|
|
|
var labels []*issues_model.Label
|
|
|
|
for _, label := range issue.Labels {
|
|
|
|
lb, ok := g.labels[label.Name]
|
|
|
|
if ok {
|
|
|
|
labels = append(labels, lb)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
milestoneID := g.milestones[issue.Milestone]
|
|
|
|
|
|
|
|
if issue.Created.IsZero() {
|
|
|
|
if issue.Closed != nil {
|
|
|
|
issue.Created = *issue.Closed
|
|
|
|
} else {
|
|
|
|
issue.Created = time.Now()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if issue.Updated.IsZero() {
|
|
|
|
if issue.Closed != nil {
|
|
|
|
issue.Updated = *issue.Closed
|
|
|
|
} else {
|
|
|
|
issue.Updated = time.Now()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
is := issues_model.Issue{
|
|
|
|
RepoID: g.repo.ID,
|
|
|
|
Repo: g.repo,
|
|
|
|
Index: issue.Number,
|
|
|
|
Title: issue.Title,
|
|
|
|
Content: issue.Content,
|
|
|
|
Ref: issue.Ref,
|
|
|
|
IsClosed: issue.State == "closed",
|
|
|
|
IsLocked: issue.IsLocked,
|
|
|
|
MilestoneID: milestoneID,
|
|
|
|
Labels: labels,
|
|
|
|
CreatedUnix: timeutil.TimeStamp(issue.Created.Unix()),
|
|
|
|
UpdatedUnix: timeutil.TimeStamp(issue.Updated.Unix()),
|
Store the foreign ID of issues during migration (#18446)
Storing the foreign identifier of an imported issue in the database is a prerequisite to implement idempotent migrations or mirror for issues. It is a baby step towards mirroring that introduces a new table.
At the moment when an issue is created by the Gitea uploader, it fails if the issue already exists. The Gitea uploader could be modified so that, instead of failing, it looks up the database to find an existing issue. And if it does it would update the issue instead of creating a new one. However this is not currently possible because an information is missing from the database: the foreign identifier that uniquely represents the issue being migrated is not persisted. With this change, the foreign identifier is stored in the database and the Gitea uploader will then be able to run a query to figure out if a given issue being imported already exists.
The implementation of mirroring for issues, pull requests, releases, etc. can be done in three steps:
1. Store an identifier for the element being mirrored (issue, pull request...) in the database (this is the purpose of these changes)
2. Modify the Gitea uploader to be able to update an existing repository with all it contains (issues, pull request...) instead of failing if it exists
3. Optimize the Gitea uploader to speed up the updates, when possible.
The second step creates code that does not yet exist to enable idempotent migrations with the Gitea uploader. When a migration is done for the first time, the behavior is not changed. But when a migration is done for a repository that already exists, this new code is used to update it.
The third step can use the code created in the second step to optimize and speed up migrations. For instance, when a migration is resumed, an issue that has an update time that is not more recent can be skipped and only newly created issues or updated ones will be updated. Another example of optimization could be that a webhook notifies Gitea when an issue is updated. The code triggered by the webhook would download only this issue and call the code created in the second step to update the issue, as if it was in the process of an idempotent migration.
The ForeignReferences table is added to contain local and foreign ID pairs relative to a given repository. It can later be used for pull requests and other artifacts that can be mirrored. Although the foreign id could be added as a single field in issues or pull requests, it would need to be added to all tables that represent something that can be mirrored. Creating a new table makes for a simpler and more generic design. The drawback is that it requires an extra lookup to obtain the information. However, this extra information is only required during migration or mirroring and does not impact the way Gitea currently works.
The foreign identifier of an issue or pull request is similar to the identifier of an external user, which is stored in reactions, issues, etc. as OriginalPosterID and so on. The representation of a user is however different and the ability of users to link their account to an external user at a later time is also a logic that is different from what is involved in mirroring or migrations. For these reasons, despite some commonalities, it is unclear at this time how the two tables (foreign reference and external user) could be merged together.
The ForeignID field is extracted from the issue migration context so that it can be dumped in files with dump-repo and later restored via restore-repo.
The GetAllComments downloader method is introduced to simplify the implementation and not overload the Context for the purpose of pagination. It also clarifies in which context the comments are paginated and in which context they are not.
The Context interface is no longer useful for the purpose of retrieving the LocalID and ForeignID since they are now both available from the PullRequest and Issue struct. The Reviewable and Commentable interfaces replace and serve the same purpose.
The Context data member of PullRequest and Issue becomes a DownloaderContext to clarify that its purpose is not to support in memory operations while the current downloader is acting but is not otherwise persisted. It is, for instance, used by the GitLab downloader to store the IsMergeRequest boolean and sort out issues.
---
[source](https://lab.forgefriends.org/forgefriends/forgefriends/-/merge_requests/36)
Signed-off-by: Loïc Dachary <loic@dachary.org>
Co-authored-by: Loïc Dachary <loic@dachary.org>
3 years ago
|
|
|
ForeignReference: &foreignreference.ForeignReference{
|
|
|
|
LocalIndex: issue.GetLocalIndex(),
|
|
|
|
ForeignIndex: strconv.FormatInt(issue.GetForeignIndex(), 10),
|
|
|
|
RepoID: g.repo.ID,
|
|
|
|
Type: foreignreference.TypeIssue,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := g.remapUser(issue, &is); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if issue.Closed != nil {
|
|
|
|
is.ClosedUnix = timeutil.TimeStamp(issue.Closed.Unix())
|
|
|
|
}
|
|
|
|
// add reactions
|
|
|
|
for _, reaction := range issue.Reactions {
|
|
|
|
res := issues_model.Reaction{
|
|
|
|
Type: reaction.Content,
|
|
|
|
CreatedUnix: timeutil.TimeStampNow(),
|
|
|
|
}
|
|
|
|
if err := g.remapUser(reaction, &res); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
is.Reactions = append(is.Reactions, &res)
|
|
|
|
}
|
|
|
|
iss = append(iss, &is)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(iss) > 0 {
|
|
|
|
if err := models.InsertIssues(iss...); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, is := range iss {
|
|
|
|
g.issues[is.Index] = is
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateComments creates comments of issues
|
|
|
|
func (g *GiteaLocalUploader) CreateComments(comments ...*base.Comment) error {
|
|
|
|
cms := make([]*issues_model.Comment, 0, len(comments))
|
|
|
|
for _, comment := range comments {
|
|
|
|
var issue *issues_model.Issue
|
|
|
|
issue, ok := g.issues[comment.IssueIndex]
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("comment references non existent IssueIndex %d", comment.IssueIndex)
|
|
|
|
}
|
|
|
|
|
|
|
|
if comment.Created.IsZero() {
|
|
|
|
comment.Created = time.Unix(int64(issue.CreatedUnix), 0)
|
|
|
|
}
|
|
|
|
if comment.Updated.IsZero() {
|
|
|
|
comment.Updated = comment.Created
|
|
|
|
}
|
|
|
|
|
|
|
|
cm := issues_model.Comment{
|
|
|
|
IssueID: issue.ID,
|
|
|
|
Type: issues_model.CommentTypeComment,
|
|
|
|
Content: comment.Content,
|
|
|
|
CreatedUnix: timeutil.TimeStamp(comment.Created.Unix()),
|
|
|
|
UpdatedUnix: timeutil.TimeStamp(comment.Updated.Unix()),
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := g.remapUser(comment, &cm); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// add reactions
|
|
|
|
for _, reaction := range comment.Reactions {
|
|
|
|
res := issues_model.Reaction{
|
|
|
|
Type: reaction.Content,
|
|
|
|
CreatedUnix: timeutil.TimeStampNow(),
|
|
|
|
}
|
|
|
|
if err := g.remapUser(reaction, &res); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
cm.Reactions = append(cm.Reactions, &res)
|
|
|
|
}
|
|
|
|
|
|
|
|
cms = append(cms, &cm)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(cms) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return models.InsertIssueComments(cms)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreatePullRequests creates pull requests
|
|
|
|
func (g *GiteaLocalUploader) CreatePullRequests(prs ...*base.PullRequest) error {
|
|
|
|
gprs := make([]*issues_model.PullRequest, 0, len(prs))
|
|
|
|
for _, pr := range prs {
|
|
|
|
gpr, err := g.newPullRequest(pr)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := g.remapUser(pr, gpr.Issue); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
gprs = append(gprs, gpr)
|
|
|
|
}
|
|
|
|
if err := models.InsertPullRequests(gprs...); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for _, pr := range gprs {
|
|
|
|
g.issues[pr.Issue.Index] = pr.Issue
|
|
|
|
pull.AddToTaskQueue(pr)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (g *GiteaLocalUploader) updateGitForPullRequest(pr *base.PullRequest) (head string, err error) {
|
|
|
|
// download patch file
|
|
|
|
err = func() error {
|
|
|
|
if pr.PatchURL == "" {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
// pr.PatchURL maybe a local file
|
|
|
|
ret, err := uri.Open(pr.PatchURL)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer ret.Close()
|
|
|
|
pullDir := filepath.Join(g.repo.RepoPath(), "pulls")
|
|
|
|
if err = os.MkdirAll(pullDir, os.ModePerm); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
f, err := os.Create(filepath.Join(pullDir, fmt.Sprintf("%d.patch", pr.Number)))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
_, err = io.Copy(f, ret)
|
|
|
|
return err
|
|
|
|
}()
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
// set head information
|
|
|
|
pullHead := filepath.Join(g.repo.RepoPath(), "refs", "pull", fmt.Sprintf("%d", pr.Number))
|
|
|
|
if err := os.MkdirAll(pullHead, os.ModePerm); err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
p, err := os.Create(filepath.Join(pullHead, "head"))
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
_, err = p.WriteString(pr.Head.SHA)
|
|
|
|
p.Close()
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
head = "unknown repository"
|
|
|
|
if pr.IsForkPullRequest() && pr.State != "closed" {
|
|
|
|
if pr.Head.OwnerName != "" {
|
|
|
|
remote := pr.Head.OwnerName
|
|
|
|
_, ok := g.prHeadCache[remote]
|
|
|
|
if !ok {
|
|
|
|
// git remote add
|
|
|
|
err := g.gitRepo.AddRemote(remote, pr.Head.CloneURL, true)
|
|
|
|
if err != nil {
|
|
|
|
log.Error("AddRemote failed: %s", err)
|
|
|
|
} else {
|
|
|
|
g.prHeadCache[remote] = struct{}{}
|
|
|
|
ok = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ok {
|
|
|
|
_, _, err = git.NewCommand(g.ctx, "fetch", "--no-tags", "--", remote, pr.Head.Ref).RunStdString(&git.RunOpts{Dir: g.repo.RepoPath()})
|
|
|
|
if err != nil {
|
|
|
|
log.Error("Fetch branch from %s failed: %v", pr.Head.CloneURL, err)
|
|
|
|
} else {
|
|
|
|
headBranch := filepath.Join(g.repo.RepoPath(), "refs", "heads", pr.Head.OwnerName, pr.Head.Ref)
|
|
|
|
if err := os.MkdirAll(filepath.Dir(headBranch), os.ModePerm); err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
b, err := os.Create(headBranch)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
_, err = b.WriteString(pr.Head.SHA)
|
|
|
|
b.Close()
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
head = pr.Head.OwnerName + "/" + pr.Head.Ref
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
head = pr.Head.Ref
|
|
|
|
// Ensure the closed PR SHA still points to an existing ref
|
|
|
|
_, _, err = git.NewCommand(g.ctx, "rev-list", "--quiet", "-1", pr.Head.SHA).RunStdString(&git.RunOpts{Dir: g.repo.RepoPath()})
|
|
|
|
if err != nil {
|
|
|
|
if pr.Head.SHA != "" {
|
|
|
|
// Git update-ref remove bad references with a relative path
|
|
|
|
log.Warn("Deprecated local head, removing : %v", pr.Head.SHA)
|
|
|
|
err = g.gitRepo.RemoveReference(pr.GetGitRefName())
|
|
|
|
} else {
|
|
|
|
// The SHA is empty, remove the head file
|
|
|
|
log.Warn("Empty reference, removing : %v", pullHead)
|
|
|
|
err = os.Remove(filepath.Join(pullHead, "head"))
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
log.Error("Cannot remove local head ref, %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return head, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (g *GiteaLocalUploader) newPullRequest(pr *base.PullRequest) (*issues_model.PullRequest, error) {
|
|
|
|
var labels []*issues_model.Label
|
|
|
|
for _, label := range pr.Labels {
|
|
|
|
lb, ok := g.labels[label.Name]
|
|
|
|
if ok {
|
|
|
|
labels = append(labels, lb)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
milestoneID := g.milestones[pr.Milestone]
|
|
|
|
|
|
|
|
head, err := g.updateGitForPullRequest(pr)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("updateGitForPullRequest: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if pr.Created.IsZero() {
|
|
|
|
if pr.Closed != nil {
|
|
|
|
pr.Created = *pr.Closed
|
|
|
|
} else if pr.MergedTime != nil {
|
|
|
|
pr.Created = *pr.MergedTime
|
|
|
|
} else {
|
|
|
|
pr.Created = time.Now()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if pr.Updated.IsZero() {
|
|
|
|
pr.Updated = pr.Created
|
|
|
|
}
|
|
|
|
|
|
|
|
issue := issues_model.Issue{
|
|
|
|
RepoID: g.repo.ID,
|
|
|
|
Repo: g.repo,
|
|
|
|
Title: pr.Title,
|
|
|
|
Index: pr.Number,
|
|
|
|
Content: pr.Content,
|
|
|
|
MilestoneID: milestoneID,
|
|
|
|
IsPull: true,
|
|
|
|
IsClosed: pr.State == "closed",
|
|
|
|
IsLocked: pr.IsLocked,
|
|
|
|
Labels: labels,
|
|
|
|
CreatedUnix: timeutil.TimeStamp(pr.Created.Unix()),
|
|
|
|
UpdatedUnix: timeutil.TimeStamp(pr.Updated.Unix()),
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := g.remapUser(pr, &issue); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// add reactions
|
|
|
|
for _, reaction := range pr.Reactions {
|
|
|
|
res := issues_model.Reaction{
|
|
|
|
Type: reaction.Content,
|
|
|
|
CreatedUnix: timeutil.TimeStampNow(),
|
|
|
|
}
|
|
|
|
if err := g.remapUser(reaction, &res); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
issue.Reactions = append(issue.Reactions, &res)
|
|
|
|
}
|
|
|
|
|
|
|
|
pullRequest := issues_model.PullRequest{
|
|
|
|
HeadRepoID: g.repo.ID,
|
|
|
|
HeadBranch: head,
|
|
|
|
BaseRepoID: g.repo.ID,
|
|
|
|
BaseBranch: pr.Base.Ref,
|
|
|
|
MergeBase: pr.Base.SHA,
|
|
|
|
Index: pr.Number,
|
|
|
|
HasMerged: pr.Merged,
|
|
|
|
|
|
|
|
Issue: &issue,
|
|
|
|
}
|
|
|
|
|
|
|
|
if pullRequest.Issue.IsClosed && pr.Closed != nil {
|
|
|
|
pullRequest.Issue.ClosedUnix = timeutil.TimeStamp(pr.Closed.Unix())
|
|
|
|
}
|
|
|
|
if pullRequest.HasMerged && pr.MergedTime != nil {
|
|
|
|
pullRequest.MergedUnix = timeutil.TimeStamp(pr.MergedTime.Unix())
|
|
|
|
pullRequest.MergedCommitID = pr.MergeCommitSHA
|
|
|
|
pullRequest.MergerID = g.doer.ID
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: assignees
|
|
|
|
|
|
|
|
return &pullRequest, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func convertReviewState(state string) issues_model.ReviewType {
|
|
|
|
switch state {
|
|
|
|
case base.ReviewStatePending:
|
|
|
|
return issues_model.ReviewTypePending
|
|
|
|
case base.ReviewStateApproved:
|
|
|
|
return issues_model.ReviewTypeApprove
|
|
|
|
case base.ReviewStateChangesRequested:
|
|
|
|
return issues_model.ReviewTypeReject
|
|
|
|
case base.ReviewStateCommented:
|
|
|
|
return issues_model.ReviewTypeComment
|
|
|
|
case base.ReviewStateRequestReview:
|
|
|
|
return issues_model.ReviewTypeRequest
|
|
|
|
default:
|
|
|
|
return issues_model.ReviewTypePending
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateReviews create pull request reviews of currently migrated issues
|
|
|
|
func (g *GiteaLocalUploader) CreateReviews(reviews ...*base.Review) error {
|
|
|
|
cms := make([]*issues_model.Review, 0, len(reviews))
|
|
|
|
for _, review := range reviews {
|
|
|
|
var issue *issues_model.Issue
|
|
|
|
issue, ok := g.issues[review.IssueIndex]
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("review references non existent IssueIndex %d", review.IssueIndex)
|
|
|
|
}
|
|
|
|
if review.CreatedAt.IsZero() {
|
|
|
|
review.CreatedAt = time.Unix(int64(issue.CreatedUnix), 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
cm := issues_model.Review{
|
|
|
|
Type: convertReviewState(review.State),
|
|
|
|
IssueID: issue.ID,
|
|
|
|
Content: review.Content,
|
|
|
|
Official: review.Official,
|
|
|
|
CreatedUnix: timeutil.TimeStamp(review.CreatedAt.Unix()),
|
|
|
|
UpdatedUnix: timeutil.TimeStamp(review.CreatedAt.Unix()),
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := g.remapUser(review, &cm); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// get pr
|
|
|
|
pr, ok := g.prCache[issue.ID]
|
|
|
|
if !ok {
|
|
|
|
var err error
|
|
|
|
pr, err = issues_model.GetPullRequestByIssueIDWithNoAttributes(issue.ID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
g.prCache[issue.ID] = pr
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, comment := range review.Comments {
|
|
|
|
line := comment.Line
|
|
|
|
if line != 0 {
|
|
|
|
comment.Position = 1
|
|
|
|
} else {
|
|
|
|
_, _, line, _ = git.ParseDiffHunkString(comment.DiffHunk)
|
|
|
|
}
|
|
|
|
headCommitID, err := g.gitRepo.GetRefCommitID(pr.GetGitRefName())
|
|
|
|
if err != nil {
|
|
|
|
log.Warn("GetRefCommitID[%s]: %v, the review comment will be ignored", pr.GetGitRefName(), err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
var patch string
|
|
|
|
reader, writer := io.Pipe()
|
|
|
|
defer func() {
|
|
|
|
_ = reader.Close()
|
|
|
|
_ = writer.Close()
|
|
|
|
}()
|
|
|
|
go func(comment *base.ReviewComment) {
|
|
|
|
if err := git.GetRepoRawDiffForFile(g.gitRepo, pr.MergeBase, headCommitID, git.RawDiffNormal, comment.TreePath, writer); err != nil {
|
|
|
|
// We should ignore the error since the commit maybe removed when force push to the pull request
|
|
|
|
log.Warn("GetRepoRawDiffForFile failed when migrating [%s, %s, %s, %s]: %v", g.gitRepo.Path, pr.MergeBase, headCommitID, comment.TreePath, err)
|
|
|
|
}
|
|
|
|
_ = writer.Close()
|
|
|
|
}(comment)
|
|
|
|
|
|
|
|
patch, _ = git.CutDiffAroundLine(reader, int64((&issues_model.Comment{Line: int64(line + comment.Position - 1)}).UnsignedLine()), line < 0, setting.UI.CodeCommentLines)
|
|
|
|
|
|
|
|
if comment.CreatedAt.IsZero() {
|
|
|
|
comment.CreatedAt = review.CreatedAt
|
|
|
|
}
|
|
|
|
if comment.UpdatedAt.IsZero() {
|
|
|
|
comment.UpdatedAt = comment.CreatedAt
|
|
|
|
}
|
|
|
|
|
|
|
|
c := issues_model.Comment{
|
|
|
|
Type: issues_model.CommentTypeCode,
|
|
|
|
IssueID: issue.ID,
|
|
|
|
Content: comment.Content,
|
|
|
|
Line: int64(line + comment.Position - 1),
|
|
|
|
TreePath: comment.TreePath,
|
|
|
|
CommitSHA: comment.CommitID,
|
|
|
|
Patch: patch,
|
|
|
|
CreatedUnix: timeutil.TimeStamp(comment.CreatedAt.Unix()),
|
|
|
|
UpdatedUnix: timeutil.TimeStamp(comment.UpdatedAt.Unix()),
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := g.remapUser(review, &c); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
cm.Comments = append(cm.Comments, &c)
|
|
|
|
}
|
|
|
|
|
|
|
|
cms = append(cms, &cm)
|
|
|
|
}
|
|
|
|
|
|
|
|
return issues_model.InsertReviews(cms)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rollback when migrating failed, this will rollback all the changes.
|
|
|
|
func (g *GiteaLocalUploader) Rollback() error {
|
|
|
|
if g.repo != nil && g.repo.ID > 0 {
|
|
|
|
g.gitRepo.Close()
|
|
|
|
if err := models.DeleteRepository(g.doer, g.repo.OwnerID, g.repo.ID); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Finish when migrating success, this will do some status update things.
|
|
|
|
func (g *GiteaLocalUploader) Finish() error {
|
|
|
|
if g.repo == nil || g.repo.ID <= 0 {
|
|
|
|
return ErrRepoNotCreated
|
|
|
|
}
|
|
|
|
|
|
|
|
// update issue_index
|
|
|
|
if err := issues_model.RecalculateIssueIndexForRepo(g.repo.ID); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := models.UpdateRepoStats(g.ctx, g.repo.ID); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
g.repo.Status = repo_model.RepositoryReady
|
|
|
|
return repo_model.UpdateRepositoryCols(g.ctx, g.repo, "status")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (g *GiteaLocalUploader) remapUser(source user_model.ExternalUserMigrated, target user_model.ExternalUserRemappable) error {
|
|
|
|
var userid int64
|
|
|
|
var err error
|
|
|
|
if g.sameApp {
|
|
|
|
userid, err = g.remapLocalUser(source, target)
|
|
|
|
} else {
|
|
|
|
userid, err = g.remapExternalUser(source, target)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if userid > 0 {
|
|
|
|
return target.RemapExternalUser("", 0, userid)
|
|
|
|
}
|
|
|
|
return target.RemapExternalUser(source.GetExternalName(), source.GetExternalID(), g.doer.ID)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (g *GiteaLocalUploader) remapLocalUser(source user_model.ExternalUserMigrated, target user_model.ExternalUserRemappable) (int64, error) {
|
|
|
|
userid, ok := g.userMap[source.GetExternalID()]
|
|
|
|
if !ok {
|
|
|
|
name, err := user_model.GetUserNameByID(g.ctx, source.GetExternalID())
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
// let's not reuse an ID when the user was deleted or has a different user name
|
|
|
|
if name != source.GetExternalName() {
|
|
|
|
userid = 0
|
|
|
|
} else {
|
|
|
|
userid = source.GetExternalID()
|
|
|
|
}
|
|
|
|
g.userMap[source.GetExternalID()] = userid
|
|
|
|
}
|
|
|
|
return userid, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (g *GiteaLocalUploader) remapExternalUser(source user_model.ExternalUserMigrated, target user_model.ExternalUserRemappable) (userid int64, err error) {
|
|
|
|
userid, ok := g.userMap[source.GetExternalID()]
|
|
|
|
if !ok {
|
|
|
|
userid, err = user_model.GetUserIDByExternalUserID(g.gitServiceType.Name(), fmt.Sprintf("%d", source.GetExternalID()))
|
|
|
|
if err != nil {
|
|
|
|
log.Error("GetUserIDByExternalUserID: %v", err)
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
g.userMap[source.GetExternalID()] = userid
|
|
|
|
}
|
|
|
|
return userid, nil
|
|
|
|
}
|