2019-10-01 07:40:17 -06:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-10-01 07:40:17 -06:00
|
|
|
|
|
|
|
package mirror
|
|
|
|
|
|
|
|
import (
|
2019-12-15 02:51:28 -07:00
|
|
|
"context"
|
2019-10-01 07:40:17 -06:00
|
|
|
"fmt"
|
|
|
|
|
2021-12-09 18:27:50 -07:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2019-10-01 07:40:17 -06:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2021-10-17 05:43:25 -06:00
|
|
|
"code.gitea.io/gitea/modules/queue"
|
2019-10-01 07:40:17 -06:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
)
|
|
|
|
|
2021-10-17 05:43:25 -06:00
|
|
|
// doMirrorSync causes this request to mirror itself
|
2023-08-26 20:24:45 -06:00
|
|
|
func doMirrorSync(ctx context.Context, req *SyncRequest) {
|
2022-03-02 00:43:11 -07:00
|
|
|
if req.ReferenceID == 0 {
|
|
|
|
log.Warn("Skipping mirror sync request, no mirror ID was specified")
|
|
|
|
return
|
|
|
|
}
|
2021-10-17 05:43:25 -06:00
|
|
|
switch req.Type {
|
2023-08-26 20:24:45 -06:00
|
|
|
case PushMirrorType:
|
2022-03-02 00:43:11 -07:00
|
|
|
_ = SyncPushMirror(ctx, req.ReferenceID)
|
2023-08-26 20:24:45 -06:00
|
|
|
case PullMirrorType:
|
2022-03-02 00:43:11 -07:00
|
|
|
_ = SyncPullMirror(ctx, req.ReferenceID)
|
2021-10-17 05:43:25 -06:00
|
|
|
default:
|
2022-03-02 00:43:11 -07:00
|
|
|
log.Error("Unknown Request type in queue: %v for MirrorID[%d]", req.Type, req.ReferenceID)
|
2021-10-17 05:43:25 -06:00
|
|
|
}
|
|
|
|
}
|
2019-10-01 07:40:17 -06:00
|
|
|
|
2021-11-22 20:09:35 -07:00
|
|
|
var errLimit = fmt.Errorf("reached limit")
|
|
|
|
|
2019-10-01 07:40:17 -06:00
|
|
|
// Update checks and updates mirror repositories.
|
2021-11-22 20:09:35 -07:00
|
|
|
func Update(ctx context.Context, pullLimit, pushLimit int) error {
|
2021-09-07 09:49:36 -06:00
|
|
|
if !setting.Mirror.Enabled {
|
|
|
|
log.Warn("Mirror feature disabled, but cron job enabled: skip update")
|
|
|
|
return nil
|
|
|
|
}
|
2019-10-01 07:40:17 -06:00
|
|
|
log.Trace("Doing: Update")
|
2021-06-14 11:20:43 -06:00
|
|
|
|
2024-04-27 04:44:49 -06:00
|
|
|
handler := func(bean any) error {
|
2022-02-08 07:02:32 -07:00
|
|
|
var repo *repo_model.Repository
|
2023-08-26 20:24:45 -06:00
|
|
|
var mirrorType SyncType
|
2022-07-08 13:45:12 -06:00
|
|
|
var referenceID int64
|
|
|
|
|
2021-12-09 18:27:50 -07:00
|
|
|
if m, ok := bean.(*repo_model.Mirror); ok {
|
2023-09-29 06:12:54 -06:00
|
|
|
if m.GetRepository(ctx) == nil {
|
2021-06-14 11:20:43 -06:00
|
|
|
log.Error("Disconnected mirror found: %d", m.ID)
|
|
|
|
return nil
|
|
|
|
}
|
2022-02-08 07:02:32 -07:00
|
|
|
repo = m.Repo
|
2023-08-26 20:24:45 -06:00
|
|
|
mirrorType = PullMirrorType
|
2022-07-08 13:45:12 -06:00
|
|
|
referenceID = m.RepoID
|
2021-12-09 18:27:50 -07:00
|
|
|
} else if m, ok := bean.(*repo_model.PushMirror); ok {
|
2023-10-03 04:30:41 -06:00
|
|
|
if m.GetRepository(ctx) == nil {
|
2021-06-14 11:20:43 -06:00
|
|
|
log.Error("Disconnected push-mirror found: %d", m.ID)
|
|
|
|
return nil
|
|
|
|
}
|
2022-02-08 07:02:32 -07:00
|
|
|
repo = m.Repo
|
2023-08-26 20:24:45 -06:00
|
|
|
mirrorType = PushMirrorType
|
2022-07-08 13:45:12 -06:00
|
|
|
referenceID = m.ID
|
2021-06-14 11:20:43 -06:00
|
|
|
} else {
|
|
|
|
log.Error("Unknown bean: %v", bean)
|
2019-10-01 07:40:17 -06:00
|
|
|
return nil
|
|
|
|
}
|
2021-06-14 11:20:43 -06:00
|
|
|
|
2021-11-22 20:09:35 -07:00
|
|
|
// Check we've not been cancelled
|
2019-12-15 02:51:28 -07:00
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
2021-11-22 20:09:35 -07:00
|
|
|
return fmt.Errorf("aborted")
|
2019-12-15 02:51:28 -07:00
|
|
|
default:
|
|
|
|
}
|
2021-11-22 20:09:35 -07:00
|
|
|
|
|
|
|
// Push to the Queue
|
2023-08-26 20:24:45 -06:00
|
|
|
if err := PushToQueue(mirrorType, referenceID); err != nil {
|
2022-02-08 07:02:32 -07:00
|
|
|
if err == queue.ErrAlreadyInQueue {
|
2023-08-26 20:24:45 -06:00
|
|
|
if mirrorType == PushMirrorType {
|
2022-02-08 07:02:32 -07:00
|
|
|
log.Trace("PushMirrors for %-v already queued for sync", repo)
|
|
|
|
} else {
|
|
|
|
log.Trace("PullMirrors for %-v already queued for sync", repo)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2021-11-22 20:09:35 -07:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
2021-06-14 11:20:43 -06:00
|
|
|
}
|
|
|
|
|
2022-02-08 07:02:32 -07:00
|
|
|
pullMirrorsRequested := 0
|
2021-11-22 20:09:35 -07:00
|
|
|
if pullLimit != 0 {
|
2024-04-29 02:47:56 -06:00
|
|
|
if err := repo_model.MirrorsIterate(ctx, pullLimit, func(_ int, bean any) error {
|
2024-04-27 04:44:49 -06:00
|
|
|
if err := handler(bean); err != nil {
|
2022-02-28 12:41:06 -07:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
pullMirrorsRequested++
|
|
|
|
return nil
|
2021-11-22 20:09:35 -07:00
|
|
|
}); err != nil && err != errLimit {
|
|
|
|
log.Error("MirrorsIterate: %v", err)
|
|
|
|
return err
|
|
|
|
}
|
2021-06-14 11:20:43 -06:00
|
|
|
}
|
2022-02-28 12:41:06 -07:00
|
|
|
|
2022-02-08 07:02:32 -07:00
|
|
|
pushMirrorsRequested := 0
|
2021-11-22 20:09:35 -07:00
|
|
|
if pushLimit != 0 {
|
2023-07-04 12:36:08 -06:00
|
|
|
if err := repo_model.PushMirrorsIterate(ctx, pushLimit, func(idx int, bean any) error {
|
2024-04-27 04:44:49 -06:00
|
|
|
if err := handler(bean); err != nil {
|
2022-02-28 12:41:06 -07:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
pushMirrorsRequested++
|
|
|
|
return nil
|
2021-11-22 20:09:35 -07:00
|
|
|
}); err != nil && err != errLimit {
|
|
|
|
log.Error("PushMirrorsIterate: %v", err)
|
|
|
|
return err
|
|
|
|
}
|
2019-10-01 07:40:17 -06:00
|
|
|
}
|
2022-02-08 07:02:32 -07:00
|
|
|
log.Trace("Finished: Update: %d pull mirrors and %d push mirrors queued", pullMirrorsRequested, pushMirrorsRequested)
|
2020-05-16 17:31:38 -06:00
|
|
|
return nil
|
2019-10-01 07:40:17 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// InitSyncMirrors initializes a go routine to sync the mirrors
|
|
|
|
func InitSyncMirrors() {
|
2024-11-17 22:59:04 -07:00
|
|
|
StartSyncMirrors()
|
2019-10-01 07:40:17 -06:00
|
|
|
}
|