From 882ee74f889c0d1fc32469b55b1829416dcdd22c Mon Sep 17 00:00:00 2001 From: Kara Diaby Date: Thu, 30 Jun 2022 16:29:16 +0200 Subject: [PATCH] =?UTF-8?q?Comptes=20cr=C3=A9=C3=A9s=20avec=20FC=20par=20m?= =?UTF-8?q?ois=20:=20CRON=20Job?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...nected_with_france_connect_by_month_job.rb | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 app/jobs/cron/datagouv/user_connected_with_france_connect_by_month_job.rb diff --git a/app/jobs/cron/datagouv/user_connected_with_france_connect_by_month_job.rb b/app/jobs/cron/datagouv/user_connected_with_france_connect_by_month_job.rb new file mode 100644 index 000000000..58d6ffdab --- /dev/null +++ b/app/jobs/cron/datagouv/user_connected_with_france_connect_by_month_job.rb @@ -0,0 +1,19 @@ +class Cron::Datagouv::UserConnectedWithFranceConnectByMonthJob < Cron::CronJob + include DatagouvCronSchedulableConcern + self.schedule_expression = "every month at 3:00" + FILE_NAME = "nb_utilisateurs_connectes_france_connect_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 + User.where(created_at: 1.month.ago.beginning_of_month..1.month.ago.end_of_month, loged_in_with_france_connect: "particulier").count + end +end