2016-08-31 04:48:33 +05:30
|
|
|
// 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 models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"time"
|
|
|
|
|
2017-09-20 10:56:49 +05:30
|
|
|
"code.gitea.io/git"
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"code.gitea.io/gitea/modules/process"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
"code.gitea.io/gitea/modules/sync"
|
2017-12-04 07:18:03 +05:30
|
|
|
"code.gitea.io/gitea/modules/util"
|
|
|
|
|
|
|
|
"github.com/Unknwon/com"
|
|
|
|
"github.com/go-xorm/xorm"
|
|
|
|
"gopkg.in/ini.v1"
|
2016-08-31 04:48:33 +05:30
|
|
|
)
|
|
|
|
|
2016-11-26 06:00:21 +05:30
|
|
|
// MirrorQueue holds an UniqueQueue object of the mirror
|
2016-08-31 04:48:33 +05:30
|
|
|
var MirrorQueue = sync.NewUniqueQueue(setting.Repository.MirrorQueueLength)
|
|
|
|
|
|
|
|
// Mirror represents mirror information of a repository.
|
|
|
|
type Mirror struct {
|
2017-01-06 20:44:33 +05:30
|
|
|
ID int64 `xorm:"pk autoincr"`
|
|
|
|
RepoID int64 `xorm:"INDEX"`
|
2016-08-31 04:48:33 +05:30
|
|
|
Repo *Repository `xorm:"-"`
|
2017-04-08 20:57:26 +05:30
|
|
|
Interval time.Duration
|
|
|
|
EnablePrune bool `xorm:"NOT NULL DEFAULT true"`
|
2016-08-31 04:48:33 +05:30
|
|
|
|
2017-12-11 10:07:04 +05:30
|
|
|
UpdatedUnix util.TimeStamp `xorm:"INDEX"`
|
|
|
|
NextUpdateUnix util.TimeStamp `xorm:"INDEX"`
|
2016-08-31 04:48:33 +05:30
|
|
|
|
|
|
|
address string `xorm:"-"`
|
|
|
|
}
|
|
|
|
|
2016-11-26 06:00:21 +05:30
|
|
|
// BeforeInsert will be invoked by XORM before inserting a record
|
2016-08-31 04:48:33 +05:30
|
|
|
func (m *Mirror) BeforeInsert() {
|
2017-09-13 10:48:22 +05:30
|
|
|
if m != nil {
|
2017-12-11 10:07:04 +05:30
|
|
|
m.UpdatedUnix = util.TimeStampNow()
|
|
|
|
m.NextUpdateUnix = util.TimeStampNow()
|
2017-09-13 10:48:22 +05:30
|
|
|
}
|
2016-08-31 04:48:33 +05:30
|
|
|
}
|
|
|
|
|
2017-10-01 22:22:35 +05:30
|
|
|
// AfterLoad is invoked from XORM after setting the values of all fields of this object.
|
|
|
|
func (m *Mirror) AfterLoad(session *xorm.Session) {
|
2017-09-13 10:48:22 +05:30
|
|
|
if m == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-08-31 04:48:33 +05:30
|
|
|
var err error
|
2017-10-01 22:22:35 +05:30
|
|
|
m.Repo, err = getRepositoryByID(session, m.RepoID)
|
|
|
|
if err != nil {
|
|
|
|
log.Error(3, "getRepositoryByID[%d]: %v", m.ID, err)
|
2016-08-31 04:48:33 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ScheduleNextUpdate calculates and sets next update time.
|
|
|
|
func (m *Mirror) ScheduleNextUpdate() {
|
2017-12-11 10:07:04 +05:30
|
|
|
m.NextUpdateUnix = util.TimeStampNow().AddDuration(m.Interval)
|
2016-08-31 04:48:33 +05:30
|
|
|
}
|
|
|
|
|
2017-12-03 10:59:41 +05:30
|
|
|
func remoteAddress(repoPath string) (string, error) {
|
|
|
|
cfg, err := ini.Load(GitConfigPath(repoPath))
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return cfg.Section("remote \"origin\"").Key("url").Value(), nil
|
|
|
|
}
|
|
|
|
|
2016-08-31 04:48:33 +05:30
|
|
|
func (m *Mirror) readAddress() {
|
|
|
|
if len(m.address) > 0 {
|
|
|
|
return
|
|
|
|
}
|
2017-12-03 10:59:41 +05:30
|
|
|
var err error
|
|
|
|
m.address, err = remoteAddress(m.Repo.RepoPath())
|
2016-08-31 04:48:33 +05:30
|
|
|
if err != nil {
|
2017-12-03 10:59:41 +05:30
|
|
|
log.Error(4, "remoteAddress: %v", err)
|
2016-08-31 04:48:33 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-03 10:59:41 +05:30
|
|
|
// 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
|
|
|
|
}
|
2017-12-04 07:18:03 +05:30
|
|
|
return util.SanitizeMessage(output, remoteAddr), nil
|
2017-12-03 10:59:41 +05:30
|
|
|
}
|
|
|
|
|
2016-08-31 04:48:33 +05:30
|
|
|
// Address returns mirror address from Git repository config without credentials.
|
|
|
|
func (m *Mirror) Address() string {
|
|
|
|
m.readAddress()
|
2017-12-04 07:18:03 +05:30
|
|
|
return util.SanitizeURLCredentials(m.address, false)
|
2016-08-31 04:48:33 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// FullAddress returns mirror address from Git repository config.
|
|
|
|
func (m *Mirror) FullAddress() string {
|
|
|
|
m.readAddress()
|
|
|
|
return m.address
|
|
|
|
}
|
|
|
|
|
|
|
|
// SaveAddress writes new address to Git repository config.
|
|
|
|
func (m *Mirror) SaveAddress(addr string) error {
|
|
|
|
configPath := m.Repo.GitConfigPath()
|
|
|
|
cfg, err := ini.Load(configPath)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Load: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
cfg.Section("remote \"origin\"").Key("url").SetValue(addr)
|
|
|
|
return cfg.SaveToIndent(configPath, "\t")
|
|
|
|
}
|
|
|
|
|
|
|
|
// runSync returns true if sync finished without error.
|
|
|
|
func (m *Mirror) runSync() bool {
|
|
|
|
repoPath := m.Repo.RepoPath()
|
|
|
|
wikiPath := m.Repo.WikiPath()
|
|
|
|
timeout := time.Duration(setting.Git.Timeout.Mirror) * time.Second
|
|
|
|
|
|
|
|
gitArgs := []string{"remote", "update"}
|
|
|
|
if m.EnablePrune {
|
|
|
|
gitArgs = append(gitArgs, "--prune")
|
|
|
|
}
|
|
|
|
|
2017-01-17 11:28:58 +05:30
|
|
|
if _, stderr, err := process.GetManager().ExecDir(
|
2016-08-31 17:01:53 +05:30
|
|
|
timeout, repoPath, fmt.Sprintf("Mirror.runSync: %s", repoPath),
|
2016-08-31 04:48:33 +05:30
|
|
|
"git", gitArgs...); err != nil {
|
2017-12-03 10:59:41 +05:30
|
|
|
// sanitize the output, since it may contain the remote address, which may
|
|
|
|
// contain a password
|
|
|
|
message, err := sanitizeOutput(stderr, repoPath)
|
|
|
|
if err != nil {
|
|
|
|
log.Error(4, "sanitizeOutput: %v", err)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
desc := fmt.Sprintf("Failed to update mirror repository '%s': %s", repoPath, message)
|
2016-08-31 04:48:33 +05:30
|
|
|
log.Error(4, desc)
|
|
|
|
if err = CreateRepositoryNotice(desc); err != nil {
|
|
|
|
log.Error(4, "CreateRepositoryNotice: %v", err)
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
2017-04-11 19:00:15 +05:30
|
|
|
|
2017-09-20 10:56:49 +05:30
|
|
|
gitRepo, err := git.OpenRepository(repoPath)
|
|
|
|
if err != nil {
|
|
|
|
log.Error(4, "OpenRepository: %v", err)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if err = SyncReleasesWithTags(m.Repo, gitRepo); err != nil {
|
|
|
|
log.Error(4, "Failed to synchronize tags to releases for repository: %v", err)
|
|
|
|
}
|
|
|
|
|
2017-04-11 19:00:15 +05:30
|
|
|
if err := m.Repo.UpdateSize(); err != nil {
|
|
|
|
log.Error(4, "Failed to update size for mirror repository: %v", err)
|
|
|
|
}
|
|
|
|
|
2016-08-31 04:48:33 +05:30
|
|
|
if m.Repo.HasWiki() {
|
2017-01-17 11:28:58 +05:30
|
|
|
if _, stderr, err := process.GetManager().ExecDir(
|
2016-08-31 17:01:53 +05:30
|
|
|
timeout, wikiPath, fmt.Sprintf("Mirror.runSync: %s", wikiPath),
|
2016-08-31 04:48:33 +05:30
|
|
|
"git", "remote", "update", "--prune"); err != nil {
|
2017-12-03 10:59:41 +05:30
|
|
|
// sanitize the output, since it may contain the remote address, which may
|
|
|
|
// contain a password
|
|
|
|
message, err := sanitizeOutput(stderr, wikiPath)
|
|
|
|
if err != nil {
|
|
|
|
log.Error(4, "sanitizeOutput: %v", err)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
desc := fmt.Sprintf("Failed to update mirror wiki repository '%s': %s", wikiPath, message)
|
2016-08-31 04:48:33 +05:30
|
|
|
log.Error(4, desc)
|
|
|
|
if err = CreateRepositoryNotice(desc); err != nil {
|
|
|
|
log.Error(4, "CreateRepositoryNotice: %v", err)
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-11 10:07:04 +05:30
|
|
|
m.UpdatedUnix = util.TimeStampNow()
|
2016-08-31 04:48:33 +05:30
|
|
|
return 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, ErrMirrorNotExist
|
|
|
|
}
|
|
|
|
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 {
|
2017-10-05 10:13:04 +05:30
|
|
|
_, err := e.ID(m.ID).AllCols().Update(m)
|
2016-08-31 04:48:33 +05:30
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-11-26 06:00:21 +05:30
|
|
|
// UpdateMirror updates the mirror
|
2016-08-31 04:48:33 +05:30
|
|
|
func UpdateMirror(m *Mirror) error {
|
|
|
|
return updateMirror(x, m)
|
|
|
|
}
|
|
|
|
|
2016-11-26 06:00:21 +05:30
|
|
|
// DeleteMirrorByRepoID deletes a mirror by repoID
|
2016-08-31 04:48:33 +05:30
|
|
|
func DeleteMirrorByRepoID(repoID int64) error {
|
|
|
|
_, err := x.Delete(&Mirror{RepoID: repoID})
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// MirrorUpdate checks and updates mirror repositories.
|
|
|
|
func MirrorUpdate() {
|
2017-05-31 14:27:17 +05:30
|
|
|
if !taskStatusTable.StartIfNotRunning(mirrorUpdate) {
|
2016-08-31 04:48:33 +05:30
|
|
|
return
|
|
|
|
}
|
2016-11-07 22:11:28 +05:30
|
|
|
defer taskStatusTable.Stop(mirrorUpdate)
|
2016-08-31 04:48:33 +05:30
|
|
|
|
|
|
|
log.Trace("Doing: MirrorUpdate")
|
|
|
|
|
2016-11-10 20:46:32 +05:30
|
|
|
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(4, "Disconnected mirror repository found: %d", m.ID)
|
|
|
|
return nil
|
|
|
|
}
|
2016-08-31 04:48:33 +05:30
|
|
|
|
2016-11-10 20:46:32 +05:30
|
|
|
MirrorQueue.Add(m.RepoID)
|
|
|
|
return nil
|
|
|
|
}); err != nil {
|
2016-08-31 04:48:33 +05:30
|
|
|
log.Error(4, "MirrorUpdate: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SyncMirrors checks and syncs mirrors.
|
|
|
|
// TODO: sync more mirrors at same time.
|
|
|
|
func SyncMirrors() {
|
2018-02-23 05:57:09 +05:30
|
|
|
sess := x.NewSession()
|
|
|
|
defer sess.Close()
|
2016-08-31 04:48:33 +05:30
|
|
|
// Start listening on new sync requests.
|
|
|
|
for repoID := range MirrorQueue.Queue() {
|
|
|
|
log.Trace("SyncMirrors [repo_id: %v]", repoID)
|
|
|
|
MirrorQueue.Remove(repoID)
|
|
|
|
|
|
|
|
m, err := GetMirrorByRepoID(com.StrTo(repoID).MustInt64())
|
|
|
|
if err != nil {
|
2016-12-21 12:39:43 +05:30
|
|
|
log.Error(4, "GetMirrorByRepoID [%s]: %v", repoID, err)
|
2016-08-31 04:48:33 +05:30
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if !m.runSync() {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
m.ScheduleNextUpdate()
|
2018-02-23 05:57:09 +05:30
|
|
|
if err = updateMirror(sess, m); err != nil {
|
2016-12-21 12:39:43 +05:30
|
|
|
log.Error(4, "UpdateMirror [%s]: %v", repoID, err)
|
2016-08-31 04:48:33 +05:30
|
|
|
continue
|
|
|
|
}
|
2018-02-23 05:57:09 +05:30
|
|
|
|
|
|
|
// Get latest commit date and update to current repository updated time
|
|
|
|
commitDate, err := git.GetLatestCommitTime(m.Repo.RepoPath())
|
|
|
|
if err != nil {
|
|
|
|
log.Error(2, "GetLatestCommitDate [%s]: %v", m.RepoID, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, err = sess.Exec("UPDATE repository SET updated_unix = ? WHERE id = ?", commitDate.Unix(), m.RepoID); err != nil {
|
|
|
|
log.Error(2, "Update repository 'updated_unix' [%s]: %v", m.RepoID, err)
|
|
|
|
continue
|
|
|
|
}
|
2016-08-31 04:48:33 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-05 06:20:34 +05:30
|
|
|
// InitSyncMirrors initializes a go routine to sync the mirrors
|
2016-08-31 04:48:33 +05:30
|
|
|
func InitSyncMirrors() {
|
|
|
|
go SyncMirrors()
|
|
|
|
}
|