2014-04-13 03:30:09 +02:00
// Copyright 2014 The Gogs Authors. All rights reserved.
2019-07-16 02:13:03 +02:00
// Copyright 2019 The Gitea Authors. All rights reserved.
2014-04-13 03:30:09 +02:00
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package cron
import (
2014-06-13 19:01:52 +02:00
"time"
2016-11-10 17:24:48 +01:00
"code.gitea.io/gitea/models"
"code.gitea.io/gitea/modules/log"
2019-10-14 08:10:42 +02:00
"code.gitea.io/gitea/modules/migrations"
2016-11-10 17:24:48 +01:00
"code.gitea.io/gitea/modules/setting"
2019-07-16 02:13:03 +02:00
"code.gitea.io/gitea/modules/sync"
2019-10-01 15:40:17 +02:00
mirror_service "code.gitea.io/gitea/services/mirror"
2019-07-16 02:13:03 +02:00
"github.com/gogs/cron"
)
const (
2019-10-14 08:10:42 +02:00
mirrorUpdate = "mirror_update"
gitFsck = "git_fsck"
checkRepos = "check_repos"
archiveCleanup = "archive_cleanup"
syncExternalUsers = "sync_external_users"
deletedBranchesCleanup = "deleted_branches_cleanup"
updateMigrationPosterID = "update_migration_post_id"
2016-02-20 21:58:09 +01:00
)
2014-06-13 19:01:52 +02:00
2016-02-20 21:58:09 +01:00
var c = cron . New ( )
2019-07-16 02:13:03 +02:00
// Prevent duplicate running tasks.
var taskStatusTable = sync . NewStatusTable ( )
// Func defines a cron function body
type Func func ( )
// WithUnique wrap a cron func with an unique running check
func WithUnique ( name string , body Func ) Func {
return func ( ) {
if ! taskStatusTable . StartIfNotRunning ( name ) {
return
}
defer taskStatusTable . Stop ( name )
body ( )
}
}
2016-11-25 09:19:24 +01:00
// NewContext begins cron tasks
2016-02-20 21:58:09 +01:00
func NewContext ( ) {
var (
entry * cron . Entry
err error
)
if setting . Cron . UpdateMirror . Enabled {
2019-10-01 15:40:17 +02:00
entry , err = c . AddFunc ( "Update mirrors" , setting . Cron . UpdateMirror . Schedule , WithUnique ( mirrorUpdate , mirror_service . Update ) )
2016-02-20 21:58:09 +01:00
if err != nil {
2019-04-02 09:48:31 +02:00
log . Fatal ( "Cron[Update mirrors]: %v" , err )
2016-02-20 21:58:09 +01:00
}
if setting . Cron . UpdateMirror . RunAtStart {
entry . Prev = time . Now ( )
entry . ExecTimes ++
2019-10-01 15:40:17 +02:00
go WithUnique ( mirrorUpdate , mirror_service . Update ) ( )
2016-02-20 21:58:09 +01:00
}
2014-06-13 19:01:52 +02:00
}
2016-02-20 21:58:09 +01:00
if setting . Cron . RepoHealthCheck . Enabled {
2019-07-16 02:13:03 +02:00
entry , err = c . AddFunc ( "Repository health check" , setting . Cron . RepoHealthCheck . Schedule , WithUnique ( gitFsck , models . GitFsck ) )
2016-02-20 21:58:09 +01:00
if err != nil {
2019-04-02 09:48:31 +02:00
log . Fatal ( "Cron[Repository health check]: %v" , err )
2016-02-20 21:58:09 +01:00
}
if setting . Cron . RepoHealthCheck . RunAtStart {
entry . Prev = time . Now ( )
entry . ExecTimes ++
2019-07-16 02:13:03 +02:00
go WithUnique ( gitFsck , models . GitFsck ) ( )
2016-02-20 21:58:09 +01:00
}
2014-06-13 19:01:52 +02:00
}
2016-02-20 21:58:09 +01:00
if setting . Cron . CheckRepoStats . Enabled {
2019-07-16 02:13:03 +02:00
entry , err = c . AddFunc ( "Check repository statistics" , setting . Cron . CheckRepoStats . Schedule , WithUnique ( checkRepos , models . CheckRepoStats ) )
2016-02-20 21:58:09 +01:00
if err != nil {
2019-04-02 09:48:31 +02:00
log . Fatal ( "Cron[Check repository statistics]: %v" , err )
2014-06-13 19:01:52 +02:00
}
2016-02-20 21:58:09 +01:00
if setting . Cron . CheckRepoStats . RunAtStart {
entry . Prev = time . Now ( )
entry . ExecTimes ++
2019-07-16 02:13:03 +02:00
go WithUnique ( checkRepos , models . CheckRepoStats ) ( )
2014-06-13 19:01:52 +02:00
}
}
2017-02-11 05:00:46 +01:00
if setting . Cron . ArchiveCleanup . Enabled {
2019-07-16 02:13:03 +02:00
entry , err = c . AddFunc ( "Clean up old repository archives" , setting . Cron . ArchiveCleanup . Schedule , WithUnique ( archiveCleanup , models . DeleteOldRepositoryArchives ) )
2017-02-11 05:00:46 +01:00
if err != nil {
2019-04-02 09:48:31 +02:00
log . Fatal ( "Cron[Clean up old repository archives]: %v" , err )
2017-02-11 05:00:46 +01:00
}
if setting . Cron . ArchiveCleanup . RunAtStart {
entry . Prev = time . Now ( )
entry . ExecTimes ++
2019-07-16 02:13:03 +02:00
go WithUnique ( archiveCleanup , models . DeleteOldRepositoryArchives ) ( )
2017-02-11 05:00:46 +01:00
}
}
2017-05-10 15:10:18 +02:00
if setting . Cron . SyncExternalUsers . Enabled {
2019-07-16 02:13:03 +02:00
entry , err = c . AddFunc ( "Synchronize external users" , setting . Cron . SyncExternalUsers . Schedule , WithUnique ( syncExternalUsers , models . SyncExternalUsers ) )
2017-05-10 15:10:18 +02:00
if err != nil {
2019-04-02 09:48:31 +02:00
log . Fatal ( "Cron[Synchronize external users]: %v" , err )
2017-05-10 15:10:18 +02:00
}
if setting . Cron . SyncExternalUsers . RunAtStart {
entry . Prev = time . Now ( )
entry . ExecTimes ++
2019-07-16 02:13:03 +02:00
go WithUnique ( syncExternalUsers , models . SyncExternalUsers ) ( )
2017-05-10 15:10:18 +02:00
}
}
2017-10-26 02:49:16 +02:00
if setting . Cron . DeletedBranchesCleanup . Enabled {
2019-07-16 02:13:03 +02:00
entry , err = c . AddFunc ( "Remove old deleted branches" , setting . Cron . DeletedBranchesCleanup . Schedule , WithUnique ( deletedBranchesCleanup , models . RemoveOldDeletedBranches ) )
2017-10-26 02:49:16 +02:00
if err != nil {
2019-04-02 09:48:31 +02:00
log . Fatal ( "Cron[Remove old deleted branches]: %v" , err )
2017-10-26 02:49:16 +02:00
}
if setting . Cron . DeletedBranchesCleanup . RunAtStart {
entry . Prev = time . Now ( )
entry . ExecTimes ++
2019-07-16 02:13:03 +02:00
go WithUnique ( deletedBranchesCleanup , models . RemoveOldDeletedBranches ) ( )
2017-10-26 02:49:16 +02:00
}
}
2019-10-14 08:10:42 +02:00
entry , err = c . AddFunc ( "Update migrated repositories' issues and comments' posterid" , setting . Cron . UpdateMigrationPosterID . Schedule , WithUnique ( updateMigrationPosterID , migrations . UpdateMigrationPosterID ) )
if err != nil {
log . Fatal ( "Cron[Update migrated repositories]: %v" , err )
}
entry . Prev = time . Now ( )
entry . ExecTimes ++
go WithUnique ( updateMigrationPosterID , migrations . UpdateMigrationPosterID ) ( )
2016-02-20 21:58:09 +01:00
c . Start ( )
2014-06-13 19:01:52 +02:00
}
2016-02-20 21:58:09 +01:00
// ListTasks returns all running cron tasks.
func ListTasks ( ) [ ] * cron . Entry {
return c . Entries ( )
2014-04-13 03:30:09 +02:00
}