2020-08-06 16:35:45 +02:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: exports
|
|
|
|
#
|
2022-04-05 18:11:12 +02:00
|
|
|
# id :bigint not null, primary key
|
|
|
|
# format :string not null
|
|
|
|
# key :text not null
|
|
|
|
# procedure_presentation_snapshot :jsonb
|
|
|
|
# statut :string default("tous")
|
|
|
|
# time_span_type :string default("everything"), not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# procedure_presentation_id :bigint
|
2020-08-06 16:35:45 +02:00
|
|
|
#
|
2019-12-03 18:36:50 +01:00
|
|
|
class Export < ApplicationRecord
|
2021-04-08 12:47:29 +02:00
|
|
|
MAX_DUREE_CONSERVATION_EXPORT = 3.hours
|
2019-12-03 18:36:50 +01:00
|
|
|
|
|
|
|
enum format: {
|
|
|
|
csv: 'csv',
|
|
|
|
ods: 'ods',
|
|
|
|
xlsx: 'xlsx'
|
|
|
|
}
|
|
|
|
|
2021-06-16 11:46:25 +02:00
|
|
|
enum time_span_type: {
|
|
|
|
everything: 'everything',
|
|
|
|
monthly: 'monthly'
|
|
|
|
}
|
|
|
|
|
2022-04-05 15:53:15 +02:00
|
|
|
enum statut: {
|
|
|
|
'a-suivre': 'a-suivre',
|
|
|
|
suivis: 'suivis',
|
|
|
|
traites: 'traites',
|
|
|
|
tous: 'tous',
|
|
|
|
supprimes_recemment: 'supprimes_recemment',
|
|
|
|
archives: 'archives',
|
|
|
|
expirant: 'expirant'
|
|
|
|
}
|
|
|
|
|
2019-12-03 18:36:50 +01:00
|
|
|
has_and_belongs_to_many :groupe_instructeurs
|
2022-04-05 15:53:15 +02:00
|
|
|
belongs_to :procedure_presentation, optional: true
|
2019-12-03 18:36:50 +01:00
|
|
|
|
|
|
|
has_one_attached :file
|
|
|
|
|
2021-03-31 18:19:28 +02:00
|
|
|
validates :format, :groupe_instructeurs, :key, presence: true
|
2019-12-03 18:36:50 +01:00
|
|
|
|
2021-03-31 18:19:28 +02:00
|
|
|
scope :stale, -> { where('exports.updated_at < ?', (Time.zone.now - MAX_DUREE_CONSERVATION_EXPORT)) }
|
2019-12-03 18:36:50 +01:00
|
|
|
|
2020-09-29 14:00:31 +02:00
|
|
|
after_create_commit :compute_async
|
2019-12-03 18:36:50 +01:00
|
|
|
|
2022-04-05 15:57:19 +02:00
|
|
|
FORMATS_WITH_TIME_SPAN = [:xlsx, :ods, :csv].flat_map do |format|
|
|
|
|
time_span_types.keys.map do |time_span_type|
|
2022-04-08 17:05:02 +02:00
|
|
|
{ format: format, time_span_type: time_span_type }
|
2021-06-16 11:46:25 +02:00
|
|
|
end
|
|
|
|
end
|
2022-04-05 15:57:19 +02:00
|
|
|
FORMATS = [:xlsx, :ods, :csv].map do |format|
|
2022-04-08 17:05:02 +02:00
|
|
|
{ format: format }
|
2022-04-05 15:57:19 +02:00
|
|
|
end
|
2021-06-16 11:46:25 +02:00
|
|
|
|
2019-12-03 18:36:50 +01:00
|
|
|
def compute_async
|
|
|
|
ExportJob.perform_later(self)
|
|
|
|
end
|
|
|
|
|
|
|
|
def compute
|
2022-04-05 18:11:12 +02:00
|
|
|
load_snapshot!
|
|
|
|
|
2022-04-08 17:12:34 +02:00
|
|
|
file.attach(blob)
|
2019-12-03 18:36:50 +01:00
|
|
|
end
|
|
|
|
|
2021-06-16 11:46:25 +02:00
|
|
|
def since
|
|
|
|
time_span_type == Export.time_span_types.fetch(:monthly) ? 30.days.ago : nil
|
|
|
|
end
|
|
|
|
|
2019-12-03 18:36:50 +01:00
|
|
|
def ready?
|
|
|
|
file.attached?
|
|
|
|
end
|
|
|
|
|
2021-04-08 12:47:29 +02:00
|
|
|
def old?
|
2022-04-05 18:11:12 +02:00
|
|
|
updated_at < 20.minutes.ago || filters_changed?
|
|
|
|
end
|
|
|
|
|
|
|
|
def filters_changed?
|
|
|
|
procedure_presentation&.snapshot != procedure_presentation_snapshot
|
2021-04-08 12:47:29 +02:00
|
|
|
end
|
|
|
|
|
2022-04-05 15:57:19 +02:00
|
|
|
def filtered?
|
|
|
|
procedure_presentation_id.present?
|
|
|
|
end
|
|
|
|
|
|
|
|
def xlsx?
|
|
|
|
format == self.class.formats.fetch(:xlsx)
|
|
|
|
end
|
|
|
|
|
|
|
|
def ods?
|
|
|
|
format == self.class.formats.fetch(:ods)
|
|
|
|
end
|
|
|
|
|
|
|
|
def csv?
|
|
|
|
format == self.class.formats.fetch(:csv)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.find_or_create_export(format, groupe_instructeurs, time_span_type: time_span_types.fetch(:everything), statut: statuts.fetch(:tous), procedure_presentation: nil)
|
2022-04-05 18:11:12 +02:00
|
|
|
create_with(groupe_instructeurs: groupe_instructeurs, procedure_presentation: procedure_presentation, procedure_presentation_snapshot: procedure_presentation&.snapshot)
|
2022-04-05 15:57:19 +02:00
|
|
|
.includes(:procedure_presentation)
|
2021-06-16 11:46:25 +02:00
|
|
|
.create_or_find_by(format: format,
|
|
|
|
time_span_type: time_span_type,
|
2022-04-05 15:57:19 +02:00
|
|
|
statut: statut,
|
|
|
|
key: generate_cache_key(groupe_instructeurs.map(&:id), procedure_presentation&.id))
|
2019-12-03 18:36:50 +01:00
|
|
|
end
|
|
|
|
|
2022-04-05 15:57:19 +02:00
|
|
|
def self.find_for_groupe_instructeurs(groupe_instructeurs_ids, procedure_presentation)
|
|
|
|
exports = if procedure_presentation.present?
|
|
|
|
where(key: generate_cache_key(groupe_instructeurs_ids))
|
|
|
|
.or(where(key: generate_cache_key(groupe_instructeurs_ids, procedure_presentation.id)))
|
|
|
|
else
|
|
|
|
where(key: generate_cache_key(groupe_instructeurs_ids))
|
|
|
|
end
|
|
|
|
filtered, not_filtered = exports.partition(&:filtered?)
|
|
|
|
|
|
|
|
{
|
|
|
|
xlsx: {
|
|
|
|
time_span_type: not_filtered.filter(&:xlsx?).index_by(&:time_span_type),
|
|
|
|
statut: filtered.filter(&:xlsx?).index_by(&:statut)
|
|
|
|
},
|
|
|
|
ods: {
|
|
|
|
time_span_type: not_filtered.filter(&:ods?).index_by(&:time_span_type),
|
|
|
|
statut: filtered.filter(&:ods?).index_by(&:statut)
|
|
|
|
},
|
|
|
|
csv: {
|
|
|
|
time_span_type: not_filtered.filter(&:csv?).index_by(&:time_span_type),
|
|
|
|
statut: filtered.filter(&:csv?).index_by(&:statut)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
2021-04-07 09:43:55 +02:00
|
|
|
|
2022-04-05 15:57:19 +02:00
|
|
|
def self.generate_cache_key(groupe_instructeurs_ids, procedure_presentation_id = nil)
|
|
|
|
if procedure_presentation_id.present?
|
|
|
|
"#{groupe_instructeurs_ids.sort.join('-')}--#{procedure_presentation_id}"
|
|
|
|
else
|
|
|
|
groupe_instructeurs_ids.sort.join('-')
|
|
|
|
end
|
2021-03-31 18:19:28 +02:00
|
|
|
end
|
|
|
|
|
2022-04-05 15:57:19 +02:00
|
|
|
def count
|
|
|
|
if procedure_presentation_id.present?
|
|
|
|
dossiers_for_export.size
|
|
|
|
end
|
2019-12-03 18:36:50 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2022-04-05 18:11:12 +02:00
|
|
|
def load_snapshot!
|
|
|
|
if procedure_presentation_snapshot.present?
|
|
|
|
procedure_presentation.attributes = procedure_presentation_snapshot
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-04-05 15:57:19 +02:00
|
|
|
def dossiers_for_export
|
|
|
|
@dossiers_for_export ||= begin
|
|
|
|
dossiers = Dossier.where(groupe_instructeur: groupe_instructeurs)
|
|
|
|
|
|
|
|
if since.present?
|
|
|
|
dossiers.visible_by_administration.where('dossiers.depose_at > ?', since)
|
|
|
|
elsif procedure_presentation.present?
|
|
|
|
filtered_sorted_ids = procedure_presentation
|
2022-04-06 09:12:15 +02:00
|
|
|
.filtered_sorted_ids(dossiers, statut)
|
2022-04-05 15:57:19 +02:00
|
|
|
|
|
|
|
dossiers.where(id: filtered_sorted_ids)
|
|
|
|
else
|
|
|
|
dossiers
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-04-08 17:12:34 +02:00
|
|
|
def blob
|
2022-04-05 15:57:19 +02:00
|
|
|
service = ProcedureExportService.new(procedure, dossiers_for_export)
|
2019-12-03 18:36:50 +01:00
|
|
|
|
|
|
|
case format.to_sym
|
|
|
|
when :csv
|
2022-04-08 17:12:34 +02:00
|
|
|
service.to_csv
|
2019-12-03 18:36:50 +01:00
|
|
|
when :xlsx
|
2022-04-08 17:12:34 +02:00
|
|
|
service.to_xlsx
|
2019-12-03 18:36:50 +01:00
|
|
|
when :ods
|
2022-04-08 17:12:34 +02:00
|
|
|
service.to_ods
|
2019-12-03 18:36:50 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def procedure
|
|
|
|
groupe_instructeurs.first.procedure
|
|
|
|
end
|
|
|
|
end
|