2019-10-01 15:40:17 +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 mirror
|
|
|
|
|
|
|
|
import (
|
2019-12-15 10:51:28 +01:00
|
|
|
"context"
|
2019-10-01 15:40:17 +02:00
|
|
|
"fmt"
|
|
|
|
"net/url"
|
2020-12-25 10:59:32 +01:00
|
|
|
"strconv"
|
2019-10-01 15:40:17 +02:00
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/cache"
|
|
|
|
"code.gitea.io/gitea/modules/git"
|
2020-01-14 04:38:04 +01:00
|
|
|
"code.gitea.io/gitea/modules/graceful"
|
2019-10-01 15:40:17 +02:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2019-11-24 06:16:59 +01:00
|
|
|
"code.gitea.io/gitea/modules/notification"
|
2020-01-14 04:38:04 +01:00
|
|
|
repo_module "code.gitea.io/gitea/modules/repository"
|
2019-10-01 15:40:17 +02:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
"code.gitea.io/gitea/modules/sync"
|
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
|
|
|
"code.gitea.io/gitea/modules/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
// mirrorQueue holds an UniqueQueue object of the mirror
|
|
|
|
var mirrorQueue = sync.NewUniqueQueue(setting.Repository.MirrorQueueLength)
|
|
|
|
|
|
|
|
func readAddress(m *models.Mirror) {
|
|
|
|
if len(m.Address) > 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
var err error
|
|
|
|
m.Address, err = remoteAddress(m.Repo.RepoPath())
|
|
|
|
if err != nil {
|
|
|
|
log.Error("remoteAddress: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func remoteAddress(repoPath string) (string, error) {
|
|
|
|
var cmd *git.Command
|
2020-09-05 18:42:58 +02:00
|
|
|
err := git.LoadGitVersion()
|
2019-10-01 15:40:17 +02:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2020-10-21 17:42:08 +02:00
|
|
|
if git.CheckGitVersionAtLeast("2.7") == nil {
|
2019-10-01 15:40:17 +02:00
|
|
|
cmd = git.NewCommand("remote", "get-url", "origin")
|
|
|
|
} else {
|
|
|
|
cmd = git.NewCommand("config", "--get", "remote.origin.url")
|
|
|
|
}
|
|
|
|
|
|
|
|
result, err := cmd.RunInDir(repoPath)
|
|
|
|
if err != nil {
|
|
|
|
if strings.HasPrefix(err.Error(), "exit status 128 - fatal: No such remote ") {
|
|
|
|
return "", nil
|
|
|
|
}
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
if len(result) > 0 {
|
|
|
|
return result[:len(result)-1], nil
|
|
|
|
}
|
|
|
|
return "", nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// sanitizeOutput sanitizes output of a command, replacing occurrences of the
|
|
|
|
// repository's remote address with a sanitized version.
|
|
|
|
func sanitizeOutput(output, repoPath string) (string, error) {
|
|
|
|
remoteAddr, err := remoteAddress(repoPath)
|
|
|
|
if err != nil {
|
|
|
|
// if we're unable to load the remote address, then we're unable to
|
|
|
|
// sanitize.
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return util.SanitizeMessage(output, remoteAddr), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddressNoCredentials returns mirror address from Git repository config without credentials.
|
|
|
|
func AddressNoCredentials(m *models.Mirror) string {
|
|
|
|
readAddress(m)
|
|
|
|
u, err := url.Parse(m.Address)
|
|
|
|
if err != nil {
|
|
|
|
// this shouldn't happen but just return it unsanitised
|
|
|
|
return m.Address
|
|
|
|
}
|
|
|
|
u.User = nil
|
|
|
|
return u.String()
|
|
|
|
}
|
|
|
|
|
2020-09-28 21:00:52 +02:00
|
|
|
// UpdateAddress writes new address to Git repository and database
|
|
|
|
func UpdateAddress(m *models.Mirror, addr string) error {
|
2019-10-01 15:40:17 +02:00
|
|
|
repoPath := m.Repo.RepoPath()
|
|
|
|
// Remove old origin
|
2019-10-12 02:13:27 +02:00
|
|
|
_, err := git.NewCommand("remote", "rm", "origin").RunInDir(repoPath)
|
2019-10-01 15:40:17 +02:00
|
|
|
if err != nil && !strings.HasPrefix(err.Error(), "exit status 128 - fatal: No such remote ") {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = git.NewCommand("remote", "add", "origin", "--mirror=fetch", addr).RunInDir(repoPath)
|
2020-07-06 04:08:32 +02:00
|
|
|
if err != nil && !strings.HasPrefix(err.Error(), "exit status 128 - fatal: No such remote ") {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if m.Repo.HasWiki() {
|
|
|
|
wikiPath := m.Repo.WikiPath()
|
|
|
|
wikiRemotePath := repo_module.WikiRemoteURL(addr)
|
|
|
|
// Remove old origin of wiki
|
|
|
|
_, err := git.NewCommand("remote", "rm", "origin").RunInDir(wikiPath)
|
|
|
|
if err != nil && !strings.HasPrefix(err.Error(), "exit status 128 - fatal: No such remote ") {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = git.NewCommand("remote", "add", "origin", "--mirror=fetch", wikiRemotePath).RunInDir(wikiPath)
|
|
|
|
if err != nil && !strings.HasPrefix(err.Error(), "exit status 128 - fatal: No such remote ") {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2020-09-28 21:00:52 +02:00
|
|
|
|
|
|
|
m.Repo.OriginalURL = addr
|
|
|
|
return models.UpdateRepositoryCols(m.Repo, "original_url")
|
2019-10-01 15:40:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// gitShortEmptySha Git short empty SHA
|
|
|
|
const gitShortEmptySha = "0000000"
|
|
|
|
|
|
|
|
// mirrorSyncResult contains information of a updated reference.
|
|
|
|
// If the oldCommitID is "0000000", it means a new reference, the value of newCommitID is empty.
|
|
|
|
// If the newCommitID is "0000000", it means the reference is deleted, the value of oldCommitID is empty.
|
|
|
|
type mirrorSyncResult struct {
|
|
|
|
refName string
|
|
|
|
oldCommitID string
|
|
|
|
newCommitID string
|
|
|
|
}
|
|
|
|
|
|
|
|
// parseRemoteUpdateOutput detects create, update and delete operations of references from upstream.
|
|
|
|
func parseRemoteUpdateOutput(output string) []*mirrorSyncResult {
|
|
|
|
results := make([]*mirrorSyncResult, 0, 3)
|
|
|
|
lines := strings.Split(output, "\n")
|
|
|
|
for i := range lines {
|
|
|
|
// Make sure reference name is presented before continue
|
|
|
|
idx := strings.Index(lines[i], "-> ")
|
|
|
|
if idx == -1 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
refName := lines[i][idx+3:]
|
|
|
|
|
|
|
|
switch {
|
|
|
|
case strings.HasPrefix(lines[i], " * "): // New reference
|
2020-12-05 16:13:11 +01:00
|
|
|
if strings.HasPrefix(lines[i], " * [new tag]") {
|
|
|
|
refName = git.TagPrefix + refName
|
|
|
|
} else if strings.HasPrefix(lines[i], " * [new branch]") {
|
|
|
|
refName = git.BranchPrefix + refName
|
|
|
|
}
|
2019-10-01 15:40:17 +02:00
|
|
|
results = append(results, &mirrorSyncResult{
|
|
|
|
refName: refName,
|
|
|
|
oldCommitID: gitShortEmptySha,
|
|
|
|
})
|
|
|
|
case strings.HasPrefix(lines[i], " - "): // Delete reference
|
|
|
|
results = append(results, &mirrorSyncResult{
|
|
|
|
refName: refName,
|
|
|
|
newCommitID: gitShortEmptySha,
|
|
|
|
})
|
2020-08-20 22:41:07 +02:00
|
|
|
case strings.HasPrefix(lines[i], " + "): // Force update
|
|
|
|
if idx := strings.Index(refName, " "); idx > -1 {
|
|
|
|
refName = refName[:idx]
|
|
|
|
}
|
|
|
|
delimIdx := strings.Index(lines[i][3:], " ")
|
|
|
|
if delimIdx == -1 {
|
|
|
|
log.Error("SHA delimiter not found: %q", lines[i])
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
shas := strings.Split(lines[i][3:delimIdx+3], "...")
|
|
|
|
if len(shas) != 2 {
|
|
|
|
log.Error("Expect two SHAs but not what found: %q", lines[i])
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
results = append(results, &mirrorSyncResult{
|
|
|
|
refName: refName,
|
|
|
|
oldCommitID: shas[0],
|
|
|
|
newCommitID: shas[1],
|
|
|
|
})
|
2019-10-01 15:40:17 +02:00
|
|
|
case strings.HasPrefix(lines[i], " "): // New commits of a reference
|
|
|
|
delimIdx := strings.Index(lines[i][3:], " ")
|
|
|
|
if delimIdx == -1 {
|
|
|
|
log.Error("SHA delimiter not found: %q", lines[i])
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
shas := strings.Split(lines[i][3:delimIdx+3], "..")
|
|
|
|
if len(shas) != 2 {
|
|
|
|
log.Error("Expect two SHAs but not what found: %q", lines[i])
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
results = append(results, &mirrorSyncResult{
|
|
|
|
refName: refName,
|
|
|
|
oldCommitID: shas[0],
|
|
|
|
newCommitID: shas[1],
|
|
|
|
})
|
|
|
|
|
|
|
|
default:
|
|
|
|
log.Warn("parseRemoteUpdateOutput: unexpected update line %q", lines[i])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return results
|
|
|
|
}
|
|
|
|
|
|
|
|
// runSync returns true if sync finished without error.
|
|
|
|
func runSync(m *models.Mirror) ([]*mirrorSyncResult, bool) {
|
|
|
|
repoPath := m.Repo.RepoPath()
|
|
|
|
wikiPath := m.Repo.WikiPath()
|
|
|
|
timeout := time.Duration(setting.Git.Timeout.Mirror) * time.Second
|
|
|
|
|
2020-08-20 22:41:07 +02:00
|
|
|
log.Trace("SyncMirrors [repo: %-v]: running git remote update...", m.Repo)
|
2019-10-01 15:40:17 +02:00
|
|
|
gitArgs := []string{"remote", "update"}
|
|
|
|
if m.EnablePrune {
|
|
|
|
gitArgs = append(gitArgs, "--prune")
|
|
|
|
}
|
|
|
|
|
2019-11-30 15:40:22 +01:00
|
|
|
stdoutBuilder := strings.Builder{}
|
|
|
|
stderrBuilder := strings.Builder{}
|
|
|
|
if err := git.NewCommand(gitArgs...).
|
|
|
|
SetDescription(fmt.Sprintf("Mirror.runSync: %s", m.Repo.FullName())).
|
|
|
|
RunInDirTimeoutPipeline(timeout, repoPath, &stdoutBuilder, &stderrBuilder); err != nil {
|
|
|
|
stdout := stdoutBuilder.String()
|
|
|
|
stderr := stderrBuilder.String()
|
2019-10-01 15:40:17 +02:00
|
|
|
// sanitize the output, since it may contain the remote address, which may
|
|
|
|
// contain a password
|
2019-11-30 15:40:22 +01:00
|
|
|
stderrMessage, sanitizeErr := sanitizeOutput(stderr, repoPath)
|
|
|
|
if sanitizeErr != nil {
|
|
|
|
log.Error("sanitizeOutput failed on stderr: %v", sanitizeErr)
|
|
|
|
log.Error("Failed to update mirror repository %v:\nStdout: %s\nStderr: %s\nErr: %v", m.Repo, stdout, stderr, err)
|
|
|
|
return nil, false
|
|
|
|
}
|
|
|
|
stdoutMessage, err := sanitizeOutput(stdout, repoPath)
|
2019-10-01 15:40:17 +02:00
|
|
|
if err != nil {
|
2019-11-30 15:40:22 +01:00
|
|
|
log.Error("sanitizeOutput failed: %v", sanitizeErr)
|
|
|
|
log.Error("Failed to update mirror repository %v:\nStdout: %s\nStderr: %s\nErr: %v", m.Repo, stdout, stderrMessage, err)
|
2019-10-01 15:40:17 +02:00
|
|
|
return nil, false
|
|
|
|
}
|
2019-11-30 15:40:22 +01:00
|
|
|
|
|
|
|
log.Error("Failed to update mirror repository %v:\nStdout: %s\nStderr: %s\nErr: %v", m.Repo, stdoutMessage, stderrMessage, err)
|
|
|
|
desc := fmt.Sprintf("Failed to update mirror repository '%s': %s", repoPath, stderrMessage)
|
2019-10-01 15:40:17 +02:00
|
|
|
if err = models.CreateRepositoryNotice(desc); err != nil {
|
|
|
|
log.Error("CreateRepositoryNotice: %v", err)
|
|
|
|
}
|
|
|
|
return nil, false
|
|
|
|
}
|
2019-11-30 15:40:22 +01:00
|
|
|
output := stderrBuilder.String()
|
2019-10-01 15:40:17 +02:00
|
|
|
|
|
|
|
gitRepo, err := git.OpenRepository(repoPath)
|
|
|
|
if err != nil {
|
|
|
|
log.Error("OpenRepository: %v", err)
|
|
|
|
return nil, false
|
|
|
|
}
|
2020-08-20 22:41:07 +02:00
|
|
|
|
|
|
|
log.Trace("SyncMirrors [repo: %-v]: syncing releases with tags...", m.Repo)
|
2020-01-14 04:38:04 +01:00
|
|
|
if err = repo_module.SyncReleasesWithTags(m.Repo, gitRepo); err != nil {
|
2019-11-13 08:01:19 +01:00
|
|
|
gitRepo.Close()
|
2019-10-01 15:40:17 +02:00
|
|
|
log.Error("Failed to synchronize tags to releases for repository: %v", err)
|
|
|
|
}
|
2019-11-13 08:01:19 +01:00
|
|
|
gitRepo.Close()
|
2019-10-01 15:40:17 +02:00
|
|
|
|
2020-08-20 22:41:07 +02:00
|
|
|
log.Trace("SyncMirrors [repo: %-v]: updating size of repository", m.Repo)
|
2020-01-12 13:11:17 +01:00
|
|
|
if err := m.Repo.UpdateSize(models.DefaultDBContext()); err != nil {
|
2019-10-01 15:40:17 +02:00
|
|
|
log.Error("Failed to update size for mirror repository: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if m.Repo.HasWiki() {
|
2020-08-20 22:41:07 +02:00
|
|
|
log.Trace("SyncMirrors [repo: %-v Wiki]: running git remote update...", m.Repo)
|
2019-11-30 15:40:22 +01:00
|
|
|
stderrBuilder.Reset()
|
|
|
|
stdoutBuilder.Reset()
|
|
|
|
if err := git.NewCommand("remote", "update", "--prune").
|
|
|
|
SetDescription(fmt.Sprintf("Mirror.runSync Wiki: %s ", m.Repo.FullName())).
|
|
|
|
RunInDirTimeoutPipeline(timeout, wikiPath, &stdoutBuilder, &stderrBuilder); err != nil {
|
|
|
|
stdout := stdoutBuilder.String()
|
|
|
|
stderr := stderrBuilder.String()
|
2019-10-01 15:40:17 +02:00
|
|
|
// sanitize the output, since it may contain the remote address, which may
|
|
|
|
// contain a password
|
2019-11-30 15:40:22 +01:00
|
|
|
stderrMessage, sanitizeErr := sanitizeOutput(stderr, repoPath)
|
|
|
|
if sanitizeErr != nil {
|
|
|
|
log.Error("sanitizeOutput failed on stderr: %v", sanitizeErr)
|
|
|
|
log.Error("Failed to update mirror repository wiki %v:\nStdout: %s\nStderr: %s\nErr: %v", m.Repo, stdout, stderr, err)
|
|
|
|
return nil, false
|
|
|
|
}
|
|
|
|
stdoutMessage, err := sanitizeOutput(stdout, repoPath)
|
2019-10-01 15:40:17 +02:00
|
|
|
if err != nil {
|
2019-11-30 15:40:22 +01:00
|
|
|
log.Error("sanitizeOutput failed: %v", sanitizeErr)
|
|
|
|
log.Error("Failed to update mirror repository wiki %v:\nStdout: %s\nStderr: %s\nErr: %v", m.Repo, stdout, stderrMessage, err)
|
2019-10-01 15:40:17 +02:00
|
|
|
return nil, false
|
|
|
|
}
|
2019-11-30 15:40:22 +01:00
|
|
|
|
|
|
|
log.Error("Failed to update mirror repository wiki %v:\nStdout: %s\nStderr: %s\nErr: %v", m.Repo, stdoutMessage, stderrMessage, err)
|
|
|
|
desc := fmt.Sprintf("Failed to update mirror repository wiki '%s': %s", wikiPath, stderrMessage)
|
2019-10-01 15:40:17 +02:00
|
|
|
if err = models.CreateRepositoryNotice(desc); err != nil {
|
|
|
|
log.Error("CreateRepositoryNotice: %v", err)
|
|
|
|
}
|
|
|
|
return nil, false
|
|
|
|
}
|
2020-08-20 22:41:07 +02:00
|
|
|
log.Trace("SyncMirrors [repo: %-v Wiki]: git remote update complete", m.Repo)
|
2019-10-01 15:40:17 +02:00
|
|
|
}
|
|
|
|
|
2020-08-20 22:41:07 +02:00
|
|
|
log.Trace("SyncMirrors [repo: %-v]: invalidating mirror branch caches...", m.Repo)
|
2021-02-03 20:06:13 +01:00
|
|
|
branches, _, err := repo_module.GetBranches(m.Repo, 0, 0)
|
2019-10-01 15:40:17 +02:00
|
|
|
if err != nil {
|
|
|
|
log.Error("GetBranches: %v", err)
|
|
|
|
return nil, false
|
|
|
|
}
|
|
|
|
|
2020-10-25 08:32:25 +01:00
|
|
|
for _, branch := range branches {
|
|
|
|
cache.Remove(m.Repo.GetCommitsCountCacheKey(branch.Name, true))
|
2019-10-01 15:40:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
m.UpdatedUnix = timeutil.TimeStampNow()
|
|
|
|
return parseRemoteUpdateOutput(output), true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Address returns mirror address from Git repository config without credentials.
|
|
|
|
func Address(m *models.Mirror) string {
|
|
|
|
readAddress(m)
|
|
|
|
return util.SanitizeURLCredentials(m.Address, false)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Username returns the mirror address username
|
|
|
|
func Username(m *models.Mirror) string {
|
|
|
|
readAddress(m)
|
|
|
|
u, err := url.Parse(m.Address)
|
|
|
|
if err != nil {
|
|
|
|
// this shouldn't happen but if it does return ""
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return u.User.Username()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Password returns the mirror address password
|
|
|
|
func Password(m *models.Mirror) string {
|
|
|
|
readAddress(m)
|
|
|
|
u, err := url.Parse(m.Address)
|
|
|
|
if err != nil {
|
|
|
|
// this shouldn't happen but if it does return ""
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
password, _ := u.User.Password()
|
|
|
|
return password
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update checks and updates mirror repositories.
|
2020-05-17 01:31:38 +02:00
|
|
|
func Update(ctx context.Context) error {
|
2019-10-01 15:40:17 +02:00
|
|
|
log.Trace("Doing: Update")
|
|
|
|
if err := models.MirrorsIterate(func(idx int, bean interface{}) error {
|
|
|
|
m := bean.(*models.Mirror)
|
|
|
|
if m.Repo == nil {
|
|
|
|
log.Error("Disconnected mirror repository found: %d", m.ID)
|
|
|
|
return nil
|
|
|
|
}
|
2019-12-15 10:51:28 +01:00
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
2020-05-17 01:31:38 +02:00
|
|
|
return fmt.Errorf("Aborted")
|
2019-12-15 10:51:28 +01:00
|
|
|
default:
|
|
|
|
mirrorQueue.Add(m.RepoID)
|
|
|
|
return nil
|
|
|
|
}
|
2019-10-01 15:40:17 +02:00
|
|
|
}); err != nil {
|
2020-05-17 01:31:38 +02:00
|
|
|
log.Trace("Update: %v", err)
|
|
|
|
return err
|
2019-10-01 15:40:17 +02:00
|
|
|
}
|
2020-05-17 01:31:38 +02:00
|
|
|
log.Trace("Finished: Update")
|
|
|
|
return nil
|
2019-10-01 15:40:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// SyncMirrors checks and syncs mirrors.
|
2019-12-15 10:51:28 +01:00
|
|
|
// FIXME: graceful: this should be a persistable queue
|
|
|
|
func SyncMirrors(ctx context.Context) {
|
2019-10-01 15:40:17 +02:00
|
|
|
// Start listening on new sync requests.
|
2019-12-15 10:51:28 +01:00
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
mirrorQueue.Close()
|
|
|
|
return
|
|
|
|
case repoID := <-mirrorQueue.Queue():
|
|
|
|
syncMirror(repoID)
|
|
|
|
}
|
2019-11-13 08:01:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func syncMirror(repoID string) {
|
|
|
|
log.Trace("SyncMirrors [repo_id: %v]", repoID)
|
2020-05-15 02:06:00 +02:00
|
|
|
defer func() {
|
|
|
|
err := recover()
|
|
|
|
if err == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// There was a panic whilst syncMirrors...
|
|
|
|
log.Error("PANIC whilst syncMirrors[%s] Panic: %v\nStacktrace: %s", repoID, err, log.Stack(2))
|
|
|
|
}()
|
2019-11-13 08:01:19 +01:00
|
|
|
mirrorQueue.Remove(repoID)
|
|
|
|
|
2020-12-25 10:59:32 +01:00
|
|
|
id, _ := strconv.ParseInt(repoID, 10, 64)
|
|
|
|
m, err := models.GetMirrorByRepoID(id)
|
2019-11-13 08:01:19 +01:00
|
|
|
if err != nil {
|
|
|
|
log.Error("GetMirrorByRepoID [%s]: %v", repoID, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-08-20 22:41:07 +02:00
|
|
|
log.Trace("SyncMirrors [repo: %-v]: Running Sync", m.Repo)
|
2019-11-13 08:01:19 +01:00
|
|
|
results, ok := runSync(m)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-08-20 22:41:07 +02:00
|
|
|
log.Trace("SyncMirrors [repo: %-v]: Scheduling next update", m.Repo)
|
2019-11-13 08:01:19 +01:00
|
|
|
m.ScheduleNextUpdate()
|
|
|
|
if err = models.UpdateMirror(m); err != nil {
|
|
|
|
log.Error("UpdateMirror [%s]: %v", repoID, err)
|
|
|
|
return
|
|
|
|
}
|
2019-10-01 15:40:17 +02:00
|
|
|
|
2019-11-13 08:01:19 +01:00
|
|
|
var gitRepo *git.Repository
|
|
|
|
if len(results) == 0 {
|
2020-08-20 22:41:07 +02:00
|
|
|
log.Trace("SyncMirrors [repo: %-v]: no branches updated", m.Repo)
|
2019-11-13 08:01:19 +01:00
|
|
|
} else {
|
2020-08-20 22:41:07 +02:00
|
|
|
log.Trace("SyncMirrors [repo: %-v]: %d branches updated", m.Repo, len(results))
|
2019-11-13 08:01:19 +01:00
|
|
|
gitRepo, err = git.OpenRepository(m.Repo.RepoPath())
|
2019-10-01 15:40:17 +02:00
|
|
|
if err != nil {
|
2019-11-13 08:01:19 +01:00
|
|
|
log.Error("OpenRepository [%d]: %v", m.RepoID, err)
|
|
|
|
return
|
2019-10-01 15:40:17 +02:00
|
|
|
}
|
2019-11-13 08:01:19 +01:00
|
|
|
defer gitRepo.Close()
|
2020-10-25 08:32:25 +01:00
|
|
|
|
|
|
|
if ok := checkAndUpdateEmptyRepository(m, gitRepo, results); !ok {
|
|
|
|
return
|
|
|
|
}
|
2019-11-13 08:01:19 +01:00
|
|
|
}
|
2019-10-01 15:40:17 +02:00
|
|
|
|
2019-11-13 08:01:19 +01:00
|
|
|
for _, result := range results {
|
|
|
|
// Discard GitHub pull requests, i.e. refs/pull/*
|
|
|
|
if strings.HasPrefix(result.refName, "refs/pull/") {
|
2019-10-01 15:40:17 +02:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-11-24 06:16:59 +01:00
|
|
|
tp, _ := git.SplitRefName(result.refName)
|
|
|
|
|
2019-11-13 08:01:19 +01:00
|
|
|
// Create reference
|
|
|
|
if result.oldCommitID == gitShortEmptySha {
|
2020-12-05 16:13:11 +01:00
|
|
|
if tp == git.TagPrefix {
|
|
|
|
tp = "tag"
|
|
|
|
} else if tp == git.BranchPrefix {
|
|
|
|
tp = "branch"
|
|
|
|
}
|
|
|
|
commitID, err := gitRepo.GetRefCommitID(result.refName)
|
|
|
|
if err != nil {
|
|
|
|
log.Error("gitRepo.GetRefCommitID [repo_id: %s, ref_name: %s]: %v", m.RepoID, result.refName, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
notification.NotifySyncPushCommits(m.Repo.MustOwner(), m.Repo, &repo_module.PushUpdateOptions{
|
|
|
|
RefFullName: result.refName,
|
|
|
|
OldCommitID: git.EmptySHA,
|
|
|
|
NewCommitID: commitID,
|
|
|
|
}, repo_module.NewPushCommits())
|
2019-11-24 06:16:59 +01:00
|
|
|
notification.NotifySyncCreateRef(m.Repo.MustOwner(), m.Repo, tp, result.refName)
|
2019-10-01 15:40:17 +02:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-11-13 08:01:19 +01:00
|
|
|
// Delete reference
|
|
|
|
if result.newCommitID == gitShortEmptySha {
|
2019-11-24 06:16:59 +01:00
|
|
|
notification.NotifySyncDeleteRef(m.Repo.MustOwner(), m.Repo, tp, result.refName)
|
2019-11-13 08:01:19 +01:00
|
|
|
continue
|
2019-10-01 15:40:17 +02:00
|
|
|
}
|
|
|
|
|
2019-11-13 08:01:19 +01:00
|
|
|
// Push commits
|
|
|
|
oldCommitID, err := git.GetFullCommitID(gitRepo.Path, result.oldCommitID)
|
|
|
|
if err != nil {
|
|
|
|
log.Error("GetFullCommitID [%d]: %v", m.RepoID, err)
|
|
|
|
continue
|
2019-10-01 15:40:17 +02:00
|
|
|
}
|
2019-11-13 08:01:19 +01:00
|
|
|
newCommitID, err := git.GetFullCommitID(gitRepo.Path, result.newCommitID)
|
2019-10-01 15:40:17 +02:00
|
|
|
if err != nil {
|
2019-11-13 08:01:19 +01:00
|
|
|
log.Error("GetFullCommitID [%d]: %v", m.RepoID, err)
|
2019-10-01 15:40:17 +02:00
|
|
|
continue
|
|
|
|
}
|
2019-11-13 08:01:19 +01:00
|
|
|
commits, err := gitRepo.CommitsBetweenIDs(newCommitID, oldCommitID)
|
|
|
|
if err != nil {
|
|
|
|
log.Error("CommitsBetweenIDs [repo_id: %d, new_commit_id: %s, old_commit_id: %s]: %v", m.RepoID, newCommitID, oldCommitID, err)
|
2019-10-01 15:40:17 +02:00
|
|
|
continue
|
|
|
|
}
|
2019-11-24 06:16:59 +01:00
|
|
|
|
2020-01-14 04:38:04 +01:00
|
|
|
theCommits := repo_module.ListToPushCommits(commits)
|
2019-11-24 06:16:59 +01:00
|
|
|
if len(theCommits.Commits) > setting.UI.FeedMaxCommitNum {
|
|
|
|
theCommits.Commits = theCommits.Commits[:setting.UI.FeedMaxCommitNum]
|
2019-11-13 08:01:19 +01:00
|
|
|
}
|
2019-11-24 06:16:59 +01:00
|
|
|
|
|
|
|
theCommits.CompareURL = m.Repo.ComposeCompareURL(oldCommitID, newCommitID)
|
|
|
|
|
2020-10-30 22:59:02 +01:00
|
|
|
notification.NotifySyncPushCommits(m.Repo.MustOwner(), m.Repo, &repo_module.PushUpdateOptions{
|
|
|
|
RefFullName: result.refName,
|
|
|
|
OldCommitID: oldCommitID,
|
|
|
|
NewCommitID: newCommitID,
|
|
|
|
}, theCommits)
|
2019-11-13 08:01:19 +01:00
|
|
|
}
|
2020-08-20 22:41:07 +02:00
|
|
|
log.Trace("SyncMirrors [repo: %-v]: done notifying updated branches/tags - now updating last commit time", m.Repo)
|
2019-11-13 08:01:19 +01:00
|
|
|
|
|
|
|
// Get latest commit date and update to current repository updated time
|
|
|
|
commitDate, err := git.GetLatestCommitTime(m.Repo.RepoPath())
|
|
|
|
if err != nil {
|
|
|
|
log.Error("GetLatestCommitDate [%d]: %v", m.RepoID, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = models.UpdateRepositoryUpdatedTime(m.RepoID, commitDate); err != nil {
|
|
|
|
log.Error("Update repository 'updated_unix' [%d]: %v", m.RepoID, err)
|
|
|
|
return
|
2019-10-01 15:40:17 +02:00
|
|
|
}
|
2020-08-20 22:41:07 +02:00
|
|
|
|
|
|
|
log.Trace("SyncMirrors [repo: %-v]: Successfully updated", m.Repo)
|
2019-10-01 15:40:17 +02:00
|
|
|
}
|
|
|
|
|
2020-10-25 08:32:25 +01:00
|
|
|
func checkAndUpdateEmptyRepository(m *models.Mirror, gitRepo *git.Repository, results []*mirrorSyncResult) bool {
|
|
|
|
if !m.Repo.IsEmpty {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
hasDefault := false
|
|
|
|
hasMaster := false
|
2020-12-30 16:46:26 +01:00
|
|
|
hasMain := false
|
2020-10-25 08:32:25 +01:00
|
|
|
defaultBranchName := m.Repo.DefaultBranch
|
|
|
|
if len(defaultBranchName) == 0 {
|
|
|
|
defaultBranchName = setting.Repository.DefaultBranch
|
|
|
|
}
|
|
|
|
firstName := ""
|
|
|
|
for _, result := range results {
|
|
|
|
if strings.HasPrefix(result.refName, "refs/pull/") {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
tp, name := git.SplitRefName(result.refName)
|
|
|
|
if len(tp) > 0 && tp != git.BranchPrefix {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if len(firstName) == 0 {
|
|
|
|
firstName = name
|
|
|
|
}
|
|
|
|
|
|
|
|
hasDefault = hasDefault || name == defaultBranchName
|
|
|
|
hasMaster = hasMaster || name == "master"
|
2020-12-30 16:46:26 +01:00
|
|
|
hasMain = hasMain || name == "main"
|
2020-10-25 08:32:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(firstName) > 0 {
|
|
|
|
if hasDefault {
|
|
|
|
m.Repo.DefaultBranch = defaultBranchName
|
|
|
|
} else if hasMaster {
|
|
|
|
m.Repo.DefaultBranch = "master"
|
2020-12-30 16:46:26 +01:00
|
|
|
} else if hasMain {
|
|
|
|
m.Repo.DefaultBranch = "main"
|
2020-10-25 08:32:25 +01:00
|
|
|
} else {
|
|
|
|
m.Repo.DefaultBranch = firstName
|
|
|
|
}
|
|
|
|
// Update the git repository default branch
|
|
|
|
if err := gitRepo.SetDefaultBranch(m.Repo.DefaultBranch); err != nil {
|
|
|
|
if !git.IsErrUnsupportedVersion(err) {
|
|
|
|
log.Error("Failed to update default branch of underlying git repository %-v. Error: %v", m.Repo, err)
|
|
|
|
desc := fmt.Sprintf("Failed to uupdate default branch of underlying git repository '%s': %v", m.Repo.RepoPath(), err)
|
|
|
|
if err = models.CreateRepositoryNotice(desc); err != nil {
|
|
|
|
log.Error("CreateRepositoryNotice: %v", err)
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
m.Repo.IsEmpty = false
|
|
|
|
// Update the is empty and default_branch columns
|
|
|
|
if err := models.UpdateRepositoryCols(m.Repo, "default_branch", "is_empty"); err != nil {
|
|
|
|
log.Error("Failed to update default branch of repository %-v. Error: %v", m.Repo, err)
|
|
|
|
desc := fmt.Sprintf("Failed to uupdate default branch of repository '%s': %v", m.Repo.RepoPath(), err)
|
|
|
|
if err = models.CreateRepositoryNotice(desc); err != nil {
|
|
|
|
log.Error("CreateRepositoryNotice: %v", err)
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2019-10-01 15:40:17 +02:00
|
|
|
// InitSyncMirrors initializes a go routine to sync the mirrors
|
|
|
|
func InitSyncMirrors() {
|
2019-12-15 10:51:28 +01:00
|
|
|
go graceful.GetManager().RunWithShutdownContext(SyncMirrors)
|
2019-10-01 15:40:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// StartToMirror adds repoID to mirror queue
|
|
|
|
func StartToMirror(repoID int64) {
|
|
|
|
go mirrorQueue.Add(repoID)
|
|
|
|
}
|