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"
"code.gitea.io/gitea/models"
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 {
Type SyncType
RepoID int64
}
// doMirrorSync causes this request to mirror itself
func doMirrorSync ( ctx context . Context , req * SyncRequest ) {
switch req . Type {
case PushMirrorType :
_ = SyncPushMirror ( ctx , req . RepoID )
case PullMirrorType :
_ = SyncPullMirror ( ctx , req . RepoID )
default :
log . Error ( "Unknown Request type in queue: %v for RepoID[%d]" , req . Type , req . RepoID )
}
}
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
2021-11-23 06:09:35 +03:00
requested := 0
handler := func ( idx int , bean interface { } , limit int ) error {
2021-10-17 14:43:25 +03:00
var item SyncRequest
2021-06-14 20:20:43 +03:00
if m , ok := bean . ( * models . Mirror ) ; ok {
if m . Repo == nil {
log . Error ( "Disconnected mirror found: %d" , m . ID )
return nil
}
2021-10-17 14:43:25 +03:00
item = SyncRequest {
Type : PullMirrorType ,
RepoID : m . RepoID ,
}
2021-06-14 20:20:43 +03:00
} else if m , ok := bean . ( * models . PushMirror ) ; ok {
if m . Repo == nil {
log . Error ( "Disconnected push-mirror found: %d" , m . ID )
return nil
}
2021-10-17 14:43:25 +03:00
item = SyncRequest {
Type : PushMirrorType ,
RepoID : m . RepoID ,
}
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
// Check if this request is already in the queue
has , err := mirrorQueue . Has ( & item )
if err != nil {
return err
}
if has {
return nil
}
// Push to the Queue
if err := mirrorQueue . Push ( & item ) ; err != nil {
return err
}
requested ++
if limit > 0 && requested > limit {
return errLimit
}
return nil
2021-06-14 20:20:43 +03:00
}
2021-11-23 06:09:35 +03:00
if pullLimit != 0 {
if err := models . MirrorsIterate ( func ( idx int , bean interface { } ) error {
return handler ( idx , bean , pullLimit )
} ) ; err != nil && err != errLimit {
log . Error ( "MirrorsIterate: %v" , err )
return err
}
2021-06-14 20:20:43 +03:00
}
2021-11-23 06:09:35 +03:00
if pushLimit != 0 {
if err := models . PushMirrorsIterate ( func ( idx int , bean interface { } ) error {
return handler ( idx , bean , pushLimit )
} ) ; err != nil && err != errLimit {
log . Error ( "PushMirrorsIterate: %v" , err )
return err
}
2019-10-01 16:40:17 +03:00
}
2020-05-17 02:31:38 +03:00
log . Trace ( "Finished: Update" )
return nil
2019-10-01 16:40:17 +03:00
}
2021-10-17 14:43:25 +03:00
func queueHandle ( data ... queue . Data ) {
for _ , datum := range data {
req := datum . ( * SyncRequest )
doMirrorSync ( graceful . GetManager ( ) . ShutdownContext ( ) , req )
2019-10-01 16:40:17 +03:00
}
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 {
Type : PullMirrorType ,
RepoID : repoID ,
} )
if err != nil {
log . Error ( "Unable to push sync request for to the queue for push mirror repo[%d]: Error: %v" , repoID , err )
}
} ( )
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 {
Type : PushMirrorType ,
RepoID : mirrorID ,
} )
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
}