| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505 | // Copyright 2016 The Gogs 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 dbimport (	"container/list"	"fmt"	"net/url"	"strings"	"time"	"github.com/unknwon/com"	"gopkg.in/ini.v1"	log "unknwon.dev/clog/v2"	"xorm.io/xorm"	"github.com/gogs/git-module"	"gogs.io/gogs/internal/conf"	"gogs.io/gogs/internal/db/errors"	"gogs.io/gogs/internal/process"	"gogs.io/gogs/internal/sync")var MirrorQueue = sync.NewUniqueQueue(1000)// Mirror represents mirror information of a repository.type Mirror struct {	ID          int64	RepoID      int64	Repo        *Repository `xorm:"-" json:"-"`	Interval    int         // Hour.	EnablePrune bool        `xorm:"NOT NULL DEFAULT true"`	// Last and next sync time of Git data from upstream	LastSync     time.Time `xorm:"-" json:"-"`	LastSyncUnix int64     `xorm:"updated_unix"`	NextSync     time.Time `xorm:"-" json:"-"`	NextSyncUnix int64     `xorm:"next_update_unix"`	address string `xorm:"-" json:"-"`}func (m *Mirror) BeforeInsert() {	m.NextSyncUnix = m.NextSync.Unix()}func (m *Mirror) BeforeUpdate() {	m.LastSyncUnix = m.LastSync.Unix()	m.NextSyncUnix = m.NextSync.Unix()}func (m *Mirror) AfterSet(colName string, _ xorm.Cell) {	var err error	switch colName {	case "repo_id":		m.Repo, err = GetRepositoryByID(m.RepoID)		if err != nil {			log.Error("GetRepositoryByID [%d]: %v", m.ID, err)		}	case "updated_unix":		m.LastSync = time.Unix(m.LastSyncUnix, 0).Local()	case "next_update_unix":		m.NextSync = time.Unix(m.NextSyncUnix, 0).Local()	}}// ScheduleNextSync calculates and sets next sync time based on repostiroy mirror setting.func (m *Mirror) ScheduleNextSync() {	m.NextSync = time.Now().Add(time.Duration(m.Interval) * time.Hour)}// findPasswordInMirrorAddress returns start (inclusive) and end index (exclusive)// of password portion of credentials in given mirror address.// It returns a boolean value to indicate whether password portion is found.func findPasswordInMirrorAddress(addr string) (start int, end int, found bool) {	// Find end of credentials (start of path)	end = strings.LastIndex(addr, "@")	if end == -1 {		return -1, -1, false	}	// Find delimiter of credentials (end of username)	start = strings.Index(addr, "://")	if start == -1 {		return -1, -1, false	}	start += 3	delim := strings.Index(addr[start:], ":")	if delim == -1 {		return -1, -1, false	}	delim += 1	if start+delim >= end {		return -1, -1, false // No password portion presented	}	return start + delim, end, true}// unescapeMirrorCredentials returns mirror address with unescaped credentials.func unescapeMirrorCredentials(addr string) string {	start, end, found := findPasswordInMirrorAddress(addr)	if !found {		return addr	}	password, _ := url.QueryUnescape(addr[start:end])	return addr[:start] + password + addr[end:]}func (m *Mirror) readAddress() {	if len(m.address) > 0 {		return	}	cfg, err := ini.Load(m.Repo.GitConfigPath())	if err != nil {		log.Error("Load: %v", err)		return	}	m.address = cfg.Section("remote \"origin\"").Key("url").Value()}// HandleMirrorCredentials replaces user credentials from HTTP/HTTPS URL// with placeholder <credentials>.// It returns original string if protocol is not HTTP/HTTPS.func HandleMirrorCredentials(url string, mosaics bool) string {	i := strings.Index(url, "@")	if i == -1 {		return url	}	start := strings.Index(url, "://")	if start == -1 {		return url	}	if mosaics {		return url[:start+3] + "<credentials>" + url[i:]	}	return url[:start+3] + url[i+1:]}// Address returns mirror address from Git repository config without credentials.func (m *Mirror) Address() string {	m.readAddress()	return HandleMirrorCredentials(m.address, false)}// MosaicsAddress returns mirror address from Git repository config with credentials under mosaics.func (m *Mirror) MosaicsAddress() string {	m.readAddress()	return HandleMirrorCredentials(m.address, true)}// RawAddress returns raw mirror address directly from Git repository config.func (m *Mirror) RawAddress() string {	m.readAddress()	return m.address}// FullAddress returns mirror address from Git repository config with unescaped credentials.func (m *Mirror) FullAddress() string {	m.readAddress()	return unescapeMirrorCredentials(m.address)}// escapeCredentials returns mirror address with escaped credentials.func escapeMirrorCredentials(addr string) string {	start, end, found := findPasswordInMirrorAddress(addr)	if !found {		return addr	}	return addr[:start] + url.QueryEscape(addr[start:end]) + addr[end:]}// SaveAddress writes new address to Git repository config.func (m *Mirror) SaveAddress(addr string) error {	repoPath := m.Repo.RepoPath()	err := git.RemoveRemote(repoPath, "origin")	if err != nil {		return fmt.Errorf("remove remote 'origin': %v", err)	}	err = git.AddRemote(repoPath, "origin", addr, git.AddRemoteOptions{		Mirror: true,	})	if err != nil {		return fmt.Errorf("add remote 'origin': %v", err)	}	return nil}const GIT_SHORT_EMPTY_SHA = "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			results = append(results, &mirrorSyncResult{				refName:     refName,				oldCommitID: GIT_SHORT_EMPTY_SHA,			})		case strings.HasPrefix(lines[i], " - "): // Delete reference			results = append(results, &mirrorSyncResult{				refName:     refName,				newCommitID: GIT_SHORT_EMPTY_SHA,			})		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 (m *Mirror) runSync() ([]*mirrorSyncResult, bool) {	repoPath := m.Repo.RepoPath()	wikiPath := m.Repo.WikiPath()	timeout := time.Duration(conf.Git.Timeout.Mirror) * time.Second	// Do a fast-fail testing against on repository URL to ensure it is accessible under	// good condition to prevent long blocking on URL resolution without syncing anything.	if !git.IsRepoURLAccessible(git.NetworkOptions{		URL:     m.RawAddress(),		Timeout: 10 * time.Second,	}) {		desc := fmt.Sprintf("Source URL of mirror repository '%s' is not accessible: %s", m.Repo.FullName(), m.MosaicsAddress())		if err := CreateRepositoryNotice(desc); err != nil {			log.Error("CreateRepositoryNotice: %v", err)		}		return nil, false	}	gitArgs := []string{"remote", "update"}	if m.EnablePrune {		gitArgs = append(gitArgs, "--prune")	}	_, stderr, err := process.ExecDir(		timeout, repoPath, fmt.Sprintf("Mirror.runSync: %s", repoPath),		"git", gitArgs...)	if err != nil {		desc := fmt.Sprintf("Failed to update mirror repository '%s': %s", repoPath, stderr)		log.Error(desc)		if err = CreateRepositoryNotice(desc); err != nil {			log.Error("CreateRepositoryNotice: %v", err)		}		return nil, false	}	output := stderr	if err := m.Repo.UpdateSize(); err != nil {		log.Error("UpdateSize [repo_id: %d]: %v", m.Repo.ID, err)	}	if m.Repo.HasWiki() {		// Even if wiki sync failed, we still want results from the main repository		if _, stderr, err := process.ExecDir(			timeout, wikiPath, fmt.Sprintf("Mirror.runSync: %s", wikiPath),			"git", "remote", "update", "--prune"); err != nil {			desc := fmt.Sprintf("Failed to update mirror wiki repository '%s': %s", wikiPath, stderr)			log.Error(desc)			if err = CreateRepositoryNotice(desc); err != nil {				log.Error("CreateRepositoryNotice: %v", err)			}		}	}	return parseRemoteUpdateOutput(output), true}func getMirrorByRepoID(e Engine, repoID int64) (*Mirror, error) {	m := &Mirror{RepoID: repoID}	has, err := e.Get(m)	if err != nil {		return nil, err	} else if !has {		return nil, errors.MirrorNotExist{RepoID: repoID}	}	return m, nil}// GetMirrorByRepoID returns mirror information of a repository.func GetMirrorByRepoID(repoID int64) (*Mirror, error) {	return getMirrorByRepoID(x, repoID)}func updateMirror(e Engine, m *Mirror) error {	_, err := e.ID(m.ID).AllCols().Update(m)	return err}func UpdateMirror(m *Mirror) error {	return updateMirror(x, m)}func DeleteMirrorByRepoID(repoID int64) error {	_, err := x.Delete(&Mirror{RepoID: repoID})	return err}// MirrorUpdate checks and updates mirror repositories.func MirrorUpdate() {	if taskStatusTable.IsRunning(_MIRROR_UPDATE) {		return	}	taskStatusTable.Start(_MIRROR_UPDATE)	defer taskStatusTable.Stop(_MIRROR_UPDATE)	log.Trace("Doing: MirrorUpdate")	if err := x.Where("next_update_unix<=?", time.Now().Unix()).Iterate(new(Mirror), func(idx int, bean interface{}) error {		m := bean.(*Mirror)		if m.Repo == nil {			log.Error("Disconnected mirror repository found: %d", m.ID)			return nil		}		MirrorQueue.Add(m.RepoID)		return nil	}); err != nil {		log.Error("MirrorUpdate: %v", err)	}}// SyncMirrors checks and syncs mirrors.// TODO: sync more mirrors at same time.func SyncMirrors() {	// Start listening on new sync requests.	for repoID := range MirrorQueue.Queue() {		log.Trace("SyncMirrors [repo_id: %s]", repoID)		MirrorQueue.Remove(repoID)		m, err := GetMirrorByRepoID(com.StrTo(repoID).MustInt64())		if err != nil {			log.Error("GetMirrorByRepoID [%d]: %v", m.RepoID, err)			continue		}		results, ok := m.runSync()		if !ok {			continue		}		m.ScheduleNextSync()		if err = UpdateMirror(m); err != nil {			log.Error("UpdateMirror [%d]: %v", m.RepoID, err)			continue		}		// TODO:		// - Create "Mirror Sync" webhook event		// - Create mirror sync (create, push and delete) events and trigger the "mirror sync" webhooks		var gitRepo *git.Repository		if len(results) == 0 {			log.Trace("SyncMirrors [repo_id: %d]: no commits fetched", m.RepoID)		} else {			gitRepo, err = git.OpenRepository(m.Repo.RepoPath())			if err != nil {				log.Error("OpenRepository [%d]: %v", m.RepoID, err)				continue			}		}		for _, result := range results {			// Discard GitHub pull requests, i.e. refs/pull/*			if strings.HasPrefix(result.refName, "refs/pull/") {				continue			}			// Delete reference			if result.newCommitID == GIT_SHORT_EMPTY_SHA {				if err = MirrorSyncDeleteAction(m.Repo, result.refName); err != nil {					log.Error("MirrorSyncDeleteAction [repo_id: %d]: %v", m.RepoID, err)				}				continue			}			// New reference			isNewRef := false			if result.oldCommitID == GIT_SHORT_EMPTY_SHA {				if err = MirrorSyncCreateAction(m.Repo, result.refName); err != nil {					log.Error("MirrorSyncCreateAction [repo_id: %d]: %v", m.RepoID, err)					continue				}				isNewRef = true			}			// Push commits			var commits *list.List			var oldCommitID string			var newCommitID string			if !isNewRef {				oldCommitID, err = git.GetFullCommitID(gitRepo.Path, result.oldCommitID)				if err != nil {					log.Error("GetFullCommitID [%d]: %v", m.RepoID, err)					continue				}				newCommitID, err = git.GetFullCommitID(gitRepo.Path, result.newCommitID)				if err != nil {					log.Error("GetFullCommitID [%d]: %v", m.RepoID, err)					continue				}				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)					continue				}			} else {				refNewCommitID, err := gitRepo.GetBranchCommitID(result.refName)				if err != nil {					log.Error("GetFullCommitID [%d]: %v", m.RepoID, err)					continue				}				if newCommit, err := gitRepo.GetCommit(refNewCommitID); err != nil {					log.Error("GetCommit [repo_id: %d, commit_id: %s]: %v", m.RepoID, refNewCommitID, err)					continue				} else {					// TODO: Get the commits for the new ref until the closest ancestor branch like Github does					commits, err = newCommit.CommitsBeforeLimit(10)					if err != nil {						log.Error("CommitsBeforeLimit [repo_id: %d, commit_id: %s]: %v", m.RepoID, refNewCommitID, err)					}					oldCommitID = git.EMPTY_SHA					newCommitID = refNewCommitID				}			}			if err = MirrorSyncPushAction(m.Repo, MirrorSyncPushActionOptions{				RefName:     result.refName,				OldCommitID: oldCommitID,				NewCommitID: newCommitID,				Commits:     ListToPushCommits(commits),			}); err != nil {				log.Error("MirrorSyncPushAction [repo_id: %d]: %v", m.RepoID, err)				continue			}		}		if _, err = x.Exec("UPDATE mirror SET updated_unix = ? WHERE repo_id = ?", time.Now().Unix(), m.RepoID); err != nil {			log.Error("Update 'mirror.updated_unix' [%d]: %v", m.RepoID, err)			continue		}		// Get latest commit date and compare to current repository updated time,		// update if latest commit date is newer.		commitDate, err := git.GetLatestCommitDate(m.Repo.RepoPath(), "")		if err != nil {			log.Error("GetLatestCommitDate [%d]: %v", m.RepoID, err)			continue		} else if commitDate.Before(m.Repo.Updated) {			continue		}		if _, err = x.Exec("UPDATE repository SET updated_unix = ? WHERE id = ?", commitDate.Unix(), m.RepoID); err != nil {			log.Error("Update 'repository.updated_unix' [%d]: %v", m.RepoID, err)			continue		}	}}func InitSyncMirrors() {	go SyncMirrors()}
 |