2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
2015-03-26 14:21:27 +08:00
|
|
|
|
|
|
|
module Jobs
|
2019-10-02 12:01:53 +08:00
|
|
|
class ScheduleBackup < ::Jobs::Scheduled
|
2015-11-12 23:14:49 +08:00
|
|
|
daily at: 0.hours
|
2015-03-26 14:21:27 +08:00
|
|
|
sidekiq_options retry: false
|
|
|
|
|
|
|
|
def execute(args)
|
2017-12-22 04:21:28 +08:00
|
|
|
return unless SiteSetting.enable_backups? && SiteSetting.automatic_backups_enabled?
|
2015-08-07 23:34:58 +08:00
|
|
|
|
2018-10-15 09:43:31 +08:00
|
|
|
store = BackupRestore::BackupStore.create
|
|
|
|
if latest_backup = store.latest_file
|
|
|
|
date = latest_backup.last_modified.to_date
|
2015-11-13 01:35:03 +08:00
|
|
|
return if (date + SiteSetting.backup_frequency.days) > Time.now.utc.to_date
|
2015-08-07 23:34:58 +08:00
|
|
|
end
|
|
|
|
|
2019-10-22 01:25:35 +08:00
|
|
|
::Jobs.cancel_scheduled_job(:create_backup)
|
2015-11-12 23:14:49 +08:00
|
|
|
|
|
|
|
time_of_day = Time.parse(SiteSetting.backup_time_of_day)
|
|
|
|
seconds = time_of_day.hour.hours + time_of_day.min.minutes + rand(10.minutes)
|
|
|
|
|
2019-10-22 01:25:35 +08:00
|
|
|
::Jobs.enqueue_in(seconds, :create_backup)
|
2018-10-02 21:48:16 +08:00
|
|
|
rescue => e
|
|
|
|
notify_user(e)
|
|
|
|
raise
|
|
|
|
end
|
|
|
|
|
|
|
|
def notify_user(ex)
|
2021-03-03 01:51:50 +08:00
|
|
|
SystemMessage.create_from_system_user(
|
2018-10-02 21:48:16 +08:00
|
|
|
Discourse.system_user,
|
|
|
|
:backup_failed,
|
2021-03-03 01:51:50 +08:00
|
|
|
target_group_names: Group[:admins].name,
|
2018-10-02 21:48:16 +08:00
|
|
|
logs: "#{ex}\n" + ex.backtrace.join("\n"),
|
|
|
|
)
|
2015-03-26 14:21:27 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|