mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 21:24:54 +08:00
40 lines
1.1 KiB
Ruby
40 lines
1.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rufus-scheduler'
|
|
|
|
def schedule_task(scheduler, interval, &block)
|
|
scheduler.every interval do
|
|
ActiveRecord::Base.connection_pool.with_connection(&block)
|
|
end
|
|
end
|
|
|
|
if ENV['WORKER'].present?
|
|
scheduler = Rufus::Scheduler.singleton
|
|
|
|
if ENV['ENABLE_TEMPLATES_SYNC'] == 'true'
|
|
schedule_task(scheduler, '12h') do
|
|
Rails.logger.info('Templates, syncing all template projects')
|
|
updated, total = TemplatesService.new.update_all_templates
|
|
Rails.logger.info(
|
|
"Templates, total number of updated projects: #{updated} out of #{total}}"
|
|
)
|
|
Rails.logger.flush
|
|
end
|
|
end
|
|
|
|
if ENV['ENABLE_FLUICS_SYNC'] == 'true'
|
|
schedule_task(scheduler, '24h') do
|
|
LabelPrinters::Fluics::SyncService.new.sync_templates! if LabelPrinter.fluics.any?
|
|
end
|
|
end
|
|
|
|
reminder_job_interval = ENV['REMINDER_JOB_INTERVAL'] || '1h'
|
|
schedule_task(scheduler, reminder_job_interval) do
|
|
MyModules::DueDateReminderJob.perform_now
|
|
RepositoryItemDateReminderJob.perform_now
|
|
end
|
|
|
|
schedule_task(scheduler, '1d') do
|
|
NotificationCleanupJob.perform_now
|
|
end
|
|
end
|