Démarches closes par mois : CRON Job
This commit is contained in:
parent
999059269e
commit
4a29162c6c
1 changed files with 19 additions and 0 deletions
19
app/jobs/cron/datagouv/procedure_closed_by_month_job.rb
Normal file
19
app/jobs/cron/datagouv/procedure_closed_by_month_job.rb
Normal file
|
@ -0,0 +1,19 @@
|
|||
class Cron::Datagouv::ProcedureClosedByMonthJob < Cron::CronJob
|
||||
include DatagouvCronSchedulableConcern
|
||||
self.schedule_expression = "every month at 3:00"
|
||||
FILE_NAME = "nb_procedures_closes_par_mois"
|
||||
|
||||
def perform(*args)
|
||||
GenerateOpenDataCsvService.save_csv_to_tmp(FILE_NAME, data) do |file|
|
||||
begin
|
||||
APIDatagouv::API.upload(file, :statistics_dataset)
|
||||
ensure
|
||||
FileUtils.rm(file)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
def data
|
||||
Procedure.where(closed_at: 1.month.ago.beginning_of_month..1.month.ago.end_of_month).count
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue