2019-10-01 13:40:17 +00: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 09:51:28 +00:00
|
|
|
"context"
|
2019-10-01 13:40:17 +00:00
|
|
|
"fmt"
|
2020-12-25 09:59:32 +00:00
|
|
|
"strconv"
|
2019-10-01 13:40:17 +00:00
|
|
|
"strings"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models"
|
2020-01-14 03:38:04 +00:00
|
|
|
"code.gitea.io/gitea/modules/graceful"
|
2019-10-01 13:40:17 +00:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
"code.gitea.io/gitea/modules/sync"
|
|
|
|
)
|
|
|
|
|
|
|
|
// mirrorQueue holds an UniqueQueue object of the mirror
|
|
|
|
var mirrorQueue = sync.NewUniqueQueue(setting.Repository.MirrorQueueLength)
|
|
|
|
|
|
|
|
// Update checks and updates mirror repositories.
|
2020-05-16 23:31:38 +00:00
|
|
|
func Update(ctx context.Context) error {
|
2019-10-01 13:40:17 +00:00
|
|
|
log.Trace("Doing: Update")
|
2021-06-14 17:20:43 +00:00
|
|
|
|
|
|
|
handler := func(idx int, bean interface{}) error {
|
|
|
|
var item string
|
|
|
|
if m, ok := bean.(*models.Mirror); ok {
|
|
|
|
if m.Repo == nil {
|
|
|
|
log.Error("Disconnected mirror found: %d", m.ID)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
item = fmt.Sprintf("pull %d", m.RepoID)
|
|
|
|
} else if m, ok := bean.(*models.PushMirror); ok {
|
|
|
|
if m.Repo == nil {
|
|
|
|
log.Error("Disconnected push-mirror found: %d", m.ID)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
item = fmt.Sprintf("push %d", m.ID)
|
|
|
|
} else {
|
|
|
|
log.Error("Unknown bean: %v", bean)
|
2019-10-01 13:40:17 +00:00
|
|
|
return nil
|
|
|
|
}
|
2021-06-14 17:20:43 +00:00
|
|
|
|
2019-12-15 09:51:28 +00:00
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
2020-05-16 23:31:38 +00:00
|
|
|
return fmt.Errorf("Aborted")
|
2019-12-15 09:51:28 +00:00
|
|
|
default:
|
2021-06-14 17:20:43 +00:00
|
|
|
mirrorQueue.Add(item)
|
2019-12-15 09:51:28 +00:00
|
|
|
return nil
|
|
|
|
}
|
2021-06-14 17:20:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := models.MirrorsIterate(handler); err != nil {
|
|
|
|
log.Error("MirrorsIterate: %v", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := models.PushMirrorsIterate(handler); err != nil {
|
|
|
|
log.Error("PushMirrorsIterate: %v", err)
|
2020-05-16 23:31:38 +00:00
|
|
|
return err
|
2019-10-01 13:40:17 +00:00
|
|
|
}
|
2020-05-16 23:31:38 +00:00
|
|
|
log.Trace("Finished: Update")
|
|
|
|
return nil
|
2019-10-01 13:40:17 +00:00
|
|
|
}
|
|
|
|
|
2021-06-14 17:20:43 +00:00
|
|
|
// syncMirrors checks and syncs mirrors.
|
2019-12-15 09:51:28 +00:00
|
|
|
// FIXME: graceful: this should be a persistable queue
|
2021-06-14 17:20:43 +00:00
|
|
|
func syncMirrors(ctx context.Context) {
|
2019-10-01 13:40:17 +00:00
|
|
|
// Start listening on new sync requests.
|
2019-12-15 09:51:28 +00:00
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
mirrorQueue.Close()
|
|
|
|
return
|
2021-06-14 17:20:43 +00:00
|
|
|
case item := <-mirrorQueue.Queue():
|
|
|
|
id, _ := strconv.ParseInt(item[5:], 10, 64)
|
|
|
|
if strings.HasPrefix(item, "pull") {
|
|
|
|
_ = SyncPullMirror(ctx, id)
|
|
|
|
} else if strings.HasPrefix(item, "push") {
|
|
|
|
_ = SyncPushMirror(ctx, id)
|
|
|
|
} else {
|
|
|
|
log.Error("Unknown item in queue: %v", item)
|
2020-12-05 15:13:11 +00:00
|
|
|
}
|
2021-06-14 17:20:43 +00:00
|
|
|
mirrorQueue.Remove(item)
|
2019-10-01 13:40:17 +00:00
|
|
|
}
|
|
|
|
}
|
2020-10-25 07:32:25 +00:00
|
|
|
}
|
|
|
|
|
2019-10-01 13:40:17 +00:00
|
|
|
// InitSyncMirrors initializes a go routine to sync the mirrors
|
|
|
|
func InitSyncMirrors() {
|
2021-06-14 17:20:43 +00:00
|
|
|
go graceful.GetManager().RunWithShutdownContext(syncMirrors)
|
2019-10-01 13:40:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// StartToMirror adds repoID to mirror queue
|
|
|
|
func StartToMirror(repoID int64) {
|
2021-06-14 17:20:43 +00:00
|
|
|
go mirrorQueue.Add(fmt.Sprintf("pull %d", repoID))
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddPushMirrorToQueue adds the push mirror to the queue
|
|
|
|
func AddPushMirrorToQueue(mirrorID int64) {
|
|
|
|
go mirrorQueue.Add(fmt.Sprintf("push %d", mirrorID))
|
2019-10-01 13:40:17 +00:00
|
|
|
}
|