2019-10-01 16:40:17 +03: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 12:51:28 +03:00
"context"
2019-10-01 16:40:17 +03:00
"fmt"
2021-12-10 04:27:50 +03:00
repo_model "code.gitea.io/gitea/models/repo"
2020-01-14 06:38:04 +03:00
"code.gitea.io/gitea/modules/graceful"
2019-10-01 16:40:17 +03:00
"code.gitea.io/gitea/modules/log"
2021-10-17 14:43:25 +03:00
"code.gitea.io/gitea/modules/queue"
2019-10-01 16:40:17 +03:00
"code.gitea.io/gitea/modules/setting"
)
2021-10-17 14:43:25 +03:00
var mirrorQueue queue . UniqueQueue
// SyncType type of sync request
type SyncType int
const (
// PullMirrorType for pull mirrors
PullMirrorType SyncType = iota
// PushMirrorType for push mirrors
PushMirrorType
)
// SyncRequest for the mirror queue
type SyncRequest struct {
2022-03-02 10:43:11 +03:00
Type SyncType
ReferenceID int64 // RepoID for pull mirror, MirrorID fro push mirror
2021-10-17 14:43:25 +03:00
}
// doMirrorSync causes this request to mirror itself
func doMirrorSync ( ctx context . Context , req * SyncRequest ) {
2022-03-02 10:43:11 +03:00
if req . ReferenceID == 0 {
log . Warn ( "Skipping mirror sync request, no mirror ID was specified" )
return
}
2021-10-17 14:43:25 +03:00
switch req . Type {
case PushMirrorType :
2022-03-02 10:43:11 +03:00
_ = SyncPushMirror ( ctx , req . ReferenceID )
2021-10-17 14:43:25 +03:00
case PullMirrorType :
2022-03-02 10:43:11 +03:00
_ = SyncPullMirror ( ctx , req . ReferenceID )
2021-10-17 14:43:25 +03:00
default :
2022-03-02 10:43:11 +03:00
log . Error ( "Unknown Request type in queue: %v for MirrorID[%d]" , req . Type , req . ReferenceID )
2021-10-17 14:43:25 +03:00
}
}
2019-10-01 16:40:17 +03:00
2021-11-23 06:09:35 +03:00
var errLimit = fmt . Errorf ( "reached limit" )
2019-10-01 16:40:17 +03:00
// Update checks and updates mirror repositories.
2021-11-23 06:09:35 +03:00
func Update ( ctx context . Context , pullLimit , pushLimit int ) error {
2021-09-07 18:49:36 +03:00
if ! setting . Mirror . Enabled {
log . Warn ( "Mirror feature disabled, but cron job enabled: skip update" )
return nil
}
2019-10-01 16:40:17 +03:00
log . Trace ( "Doing: Update" )
2021-06-14 20:20:43 +03:00
2022-02-28 22:41:06 +03:00
handler := func ( idx int , bean interface { } ) error {
2021-10-17 14:43:25 +03:00
var item SyncRequest
2022-02-08 17:02:32 +03:00
var repo * repo_model . Repository
2021-12-10 04:27:50 +03:00
if m , ok := bean . ( * repo_model . Mirror ) ; ok {
2021-06-14 20:20:43 +03:00
if m . Repo == nil {
log . Error ( "Disconnected mirror found: %d" , m . ID )
return nil
}
2022-02-08 17:02:32 +03:00
repo = m . Repo
2021-10-17 14:43:25 +03:00
item = SyncRequest {
2022-03-02 10:43:11 +03:00
Type : PullMirrorType ,
ReferenceID : m . RepoID ,
2021-10-17 14:43:25 +03:00
}
2021-12-10 04:27:50 +03:00
} else if m , ok := bean . ( * repo_model . PushMirror ) ; ok {
2021-06-14 20:20:43 +03:00
if m . Repo == nil {
log . Error ( "Disconnected push-mirror found: %d" , m . ID )
return nil
}
2022-02-08 17:02:32 +03:00
repo = m . Repo
2021-10-17 14:43:25 +03:00
item = SyncRequest {
2022-03-02 10:43:11 +03:00
Type : PushMirrorType ,
ReferenceID : m . ID ,
2021-10-17 14:43:25 +03:00
}
2021-06-14 20:20:43 +03:00
} else {
log . Error ( "Unknown bean: %v" , bean )
2019-10-01 16:40:17 +03:00
return nil
}
2021-06-14 20:20:43 +03:00
2021-11-23 06:09:35 +03:00
// Check we've not been cancelled
2019-12-15 12:51:28 +03:00
select {
case <- ctx . Done ( ) :
2021-11-23 06:09:35 +03:00
return fmt . Errorf ( "aborted" )
2019-12-15 12:51:28 +03:00
default :
}
2021-11-23 06:09:35 +03:00
// Push to the Queue
if err := mirrorQueue . Push ( & item ) ; err != nil {
2022-02-08 17:02:32 +03:00
if err == queue . ErrAlreadyInQueue {
if item . Type == PushMirrorType {
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-23 06:09:35 +03:00
return err
}
return nil
2021-06-14 20:20:43 +03:00
}
2022-02-08 17:02:32 +03:00
pullMirrorsRequested := 0
2021-11-23 06:09:35 +03:00
if pullLimit != 0 {
2022-02-28 22:41:06 +03:00
if err := repo_model . MirrorsIterate ( pullLimit , func ( idx int , bean interface { } ) error {
if err := handler ( idx , bean ) ; err != nil {
return err
}
pullMirrorsRequested ++
return nil
2021-11-23 06:09:35 +03:00
} ) ; err != nil && err != errLimit {
log . Error ( "MirrorsIterate: %v" , err )
return err
}
2021-06-14 20:20:43 +03:00
}
2022-02-28 22:41:06 +03:00
2022-02-08 17:02:32 +03:00
pushMirrorsRequested := 0
2021-11-23 06:09:35 +03:00
if pushLimit != 0 {
2022-02-28 22:41:06 +03:00
if err := repo_model . PushMirrorsIterate ( pushLimit , func ( idx int , bean interface { } ) error {
if err := handler ( idx , bean ) ; err != nil {
return err
}
pushMirrorsRequested ++
return nil
2021-11-23 06:09:35 +03:00
} ) ; err != nil && err != errLimit {
log . Error ( "PushMirrorsIterate: %v" , err )
return err
}
2019-10-01 16:40:17 +03:00
}
2022-02-08 17:02:32 +03:00
log . Trace ( "Finished: Update: %d pull mirrors and %d push mirrors queued" , pullMirrorsRequested , pushMirrorsRequested )
2020-05-17 02:31:38 +03:00
return nil
2019-10-01 16:40:17 +03:00
}
2022-01-23 00:22:14 +03:00
func queueHandle ( data ... queue . Data ) [ ] queue . Data {
2021-10-17 14:43:25 +03:00
for _ , datum := range data {
req := datum . ( * SyncRequest )
doMirrorSync ( graceful . GetManager ( ) . ShutdownContext ( ) , req )
2019-10-01 16:40:17 +03:00
}
2022-01-23 00:22:14 +03:00
return nil
2020-10-25 10:32:25 +03:00
}
2019-10-01 16:40:17 +03:00
// InitSyncMirrors initializes a go routine to sync the mirrors
func InitSyncMirrors ( ) {
2021-09-07 18:49:36 +03:00
if ! setting . Mirror . Enabled {
return
}
2021-10-17 14:43:25 +03:00
mirrorQueue = queue . CreateUniqueQueue ( "mirror" , queueHandle , new ( SyncRequest ) )
go graceful . GetManager ( ) . RunWithShutdownFns ( mirrorQueue . Run )
2019-10-01 16:40:17 +03:00
}
// StartToMirror adds repoID to mirror queue
func StartToMirror ( repoID int64 ) {
2021-09-07 18:49:36 +03:00
if ! setting . Mirror . Enabled {
return
}
2021-10-17 14:43:25 +03:00
go func ( ) {
err := mirrorQueue . Push ( & SyncRequest {
2022-03-02 10:43:11 +03:00
Type : PullMirrorType ,
ReferenceID : repoID ,
2021-10-17 14:43:25 +03:00
} )
if err != nil {
2022-03-02 10:43:11 +03:00
log . Error ( "Unable to push sync request for to the queue for pull mirror repo[%d]: Error: %v" , repoID , err )
return
2021-10-17 14:43:25 +03:00
}
} ( )
2021-06-14 20:20:43 +03:00
}
// AddPushMirrorToQueue adds the push mirror to the queue
func AddPushMirrorToQueue ( mirrorID int64 ) {
2021-09-07 18:49:36 +03:00
if ! setting . Mirror . Enabled {
return
}
2021-10-17 14:43:25 +03:00
go func ( ) {
err := mirrorQueue . Push ( & SyncRequest {
2022-03-02 10:43:11 +03:00
Type : PushMirrorType ,
ReferenceID : mirrorID ,
2021-10-17 14:43:25 +03:00
} )
if err != nil {
log . Error ( "Unable to push sync request to the queue for pull mirror repo[%d]: Error: %v" , mirrorID , err )
}
} ( )
2019-10-01 16:40:17 +03:00
}