2020-05-17 05:01:38 +05:30
// Copyright 2020 The Gitea Authors. All rights reserved.
2022-11-27 23:50:29 +05:30
// SPDX-License-Identifier: MIT
2020-05-17 05:01:38 +05:30
package cron
import (
"time"
2022-06-26 19:49:22 +05:30
"code.gitea.io/gitea/modules/translation"
2020-05-17 05:01:38 +05:30
)
// Config represents a basic configuration interface that cron task
type Config interface {
IsEnabled ( ) bool
DoRunAtStart ( ) bool
GetSchedule ( ) string
2022-06-26 19:49:22 +05:30
FormatMessage ( locale translation . Locale , name , status , doer string , args ... interface { } ) string
2020-08-06 02:10:36 +05:30
DoNoticeOnSuccess ( ) bool
2020-05-17 05:01:38 +05:30
}
// BaseConfig represents the basic config for a Cron task
type BaseConfig struct {
2020-08-06 02:10:36 +05:30
Enabled bool
RunAtStart bool
Schedule string
2022-03-27 02:43:04 +05:30
NoticeOnSuccess bool
2020-05-17 05:01:38 +05:30
}
// OlderThanConfig represents a cron task with OlderThan setting
type OlderThanConfig struct {
BaseConfig
OlderThan time . Duration
}
// UpdateExistingConfig represents a cron task with UpdateExisting setting
type UpdateExistingConfig struct {
BaseConfig
UpdateExisting bool
}
2021-01-27 02:32:42 +05:30
// CleanupHookTaskConfig represents a cron task with settings to cleanup hook_task
type CleanupHookTaskConfig struct {
BaseConfig
CleanupType string
OlderThan time . Duration
NumberToKeep int
}
2020-05-17 05:01:38 +05:30
// GetSchedule returns the schedule for the base config
func ( b * BaseConfig ) GetSchedule ( ) string {
return b . Schedule
}
// IsEnabled returns the enabled status for the config
func ( b * BaseConfig ) IsEnabled ( ) bool {
return b . Enabled
}
// DoRunAtStart returns whether the task should be run at the start
func ( b * BaseConfig ) DoRunAtStart ( ) bool {
return b . RunAtStart
}
2020-08-06 02:10:36 +05:30
// DoNoticeOnSuccess returns whether a success notice should be posted
func ( b * BaseConfig ) DoNoticeOnSuccess ( ) bool {
2022-03-27 02:43:04 +05:30
return b . NoticeOnSuccess
2020-08-06 02:10:36 +05:30
}
2020-05-17 05:01:38 +05:30
// FormatMessage returns a message for the task
2022-03-29 07:01:07 +05:30
// Please note the `status` string will be concatenated with `admin.dashboard.cron.` and `admin.dashboard.task.` to provide locale messages. Similarly `name` will be composed with `admin.dashboard.` to provide the locale name for the task.
2022-06-26 19:49:22 +05:30
func ( b * BaseConfig ) FormatMessage ( locale translation . Locale , name , status , doer string , args ... interface { } ) string {
2020-05-17 05:01:38 +05:30
realArgs := make ( [ ] interface { } , 0 , len ( args ) + 2 )
2022-06-26 19:49:22 +05:30
realArgs = append ( realArgs , locale . Tr ( "admin.dashboard." + name ) )
2022-03-29 07:01:07 +05:30
if doer == "" {
2020-05-17 05:01:38 +05:30
realArgs = append ( realArgs , "(Cron)" )
} else {
2022-03-29 07:01:07 +05:30
realArgs = append ( realArgs , doer )
2020-05-17 05:01:38 +05:30
}
if len ( args ) > 0 {
realArgs = append ( realArgs , args ... )
}
2022-03-29 07:01:07 +05:30
if doer == "" {
2022-06-26 19:49:22 +05:30
return locale . Tr ( "admin.dashboard.cron." + status , realArgs ... )
2020-05-17 05:01:38 +05:30
}
2022-06-26 19:49:22 +05:30
return locale . Tr ( "admin.dashboard.task." + status , realArgs ... )
2020-05-17 05:01:38 +05:30
}