2015-11-16 16:16:08 +01:00
|
|
|
class Admin::ProceduresController < AdminController
|
2016-01-07 15:29:29 +01:00
|
|
|
include SmartListing::Helper::ControllerExtensions
|
|
|
|
helper SmartListing::Helper
|
2015-10-26 15:54:20 +01:00
|
|
|
|
2019-09-24 16:38:58 +02:00
|
|
|
before_action :retrieve_procedure, only: [:show, :delete_logo, :delete_deliberation, :delete_notice, :publish_validate, :publish]
|
2015-12-21 12:02:53 +01:00
|
|
|
|
2015-10-26 15:54:20 +01:00
|
|
|
def index
|
2018-12-28 18:24:39 +01:00
|
|
|
if current_administrateur.procedures.count != 0
|
|
|
|
@procedures = smart_listing_create :procedures,
|
|
|
|
current_administrateur.procedures.publiees.order(published_at: :desc),
|
|
|
|
partial: "admin/procedures/list",
|
|
|
|
array: true
|
2016-01-07 15:29:29 +01:00
|
|
|
|
2018-12-28 18:24:39 +01:00
|
|
|
active_class
|
|
|
|
else
|
|
|
|
redirect_to new_from_existing_admin_procedures_path
|
|
|
|
end
|
2015-10-26 15:54:20 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
2019-08-13 15:43:23 +02:00
|
|
|
if @procedure.brouillon?
|
|
|
|
@procedure_lien = commencer_test_url(path: @procedure.path)
|
|
|
|
else
|
|
|
|
@procedure_lien = commencer_url(path: @procedure.path)
|
|
|
|
end
|
2019-07-30 16:54:43 +02:00
|
|
|
@procedure.path = @procedure.suggested_path(current_administrateur)
|
|
|
|
@current_administrateur = current_administrateur
|
2015-12-04 16:17:35 +01:00
|
|
|
end
|
|
|
|
|
2017-12-21 17:59:56 +01:00
|
|
|
def destroy
|
|
|
|
procedure = current_administrateur.procedures.find(params[:id])
|
|
|
|
|
2020-03-26 18:49:26 +01:00
|
|
|
if procedure.can_be_deleted_by_administrateur?
|
|
|
|
procedure.discard_and_keep_track!(current_administrateur)
|
2017-12-21 17:59:56 +01:00
|
|
|
|
2020-03-26 18:49:26 +01:00
|
|
|
flash.notice = 'Démarche supprimée'
|
|
|
|
redirect_to admin_procedures_draft_path
|
|
|
|
else
|
|
|
|
render json: {}, status: 403
|
|
|
|
end
|
2017-12-21 17:59:56 +01:00
|
|
|
end
|
|
|
|
|
2016-06-09 17:49:38 +02:00
|
|
|
def archive
|
2016-06-30 10:24:01 +02:00
|
|
|
procedure = current_administrateur.procedures.find(params[:procedure_id])
|
2019-11-14 09:43:45 +01:00
|
|
|
procedure.close!
|
2016-06-24 16:41:44 +02:00
|
|
|
|
2019-11-14 09:43:45 +01:00
|
|
|
flash.notice = "Démarche close"
|
2016-06-24 16:41:44 +02:00
|
|
|
redirect_to admin_procedures_path
|
|
|
|
|
|
|
|
rescue ActiveRecord::RecordNotFound
|
2018-09-05 14:48:42 +02:00
|
|
|
flash.alert = 'Démarche inexistante'
|
2016-06-24 16:41:44 +02:00
|
|
|
redirect_to admin_procedures_path
|
2015-11-26 18:41:41 +01:00
|
|
|
end
|
|
|
|
|
2016-06-15 11:34:05 +02:00
|
|
|
def clone
|
2018-01-08 14:44:28 +01:00
|
|
|
procedure = Procedure.find(params[:procedure_id])
|
2018-04-12 18:35:13 +02:00
|
|
|
new_procedure = procedure.clone(current_administrateur, cloned_from_library?)
|
2018-01-08 15:42:38 +01:00
|
|
|
|
2019-08-21 16:33:26 +02:00
|
|
|
if new_procedure.valid?
|
2018-09-05 14:48:42 +02:00
|
|
|
flash.notice = 'Démarche clonée'
|
2016-06-15 11:34:05 +02:00
|
|
|
redirect_to edit_admin_procedure_path(id: new_procedure.id)
|
|
|
|
else
|
2018-04-12 18:35:13 +02:00
|
|
|
if cloned_from_library?
|
2018-01-08 15:43:41 +01:00
|
|
|
flash.alert = new_procedure.errors.full_messages
|
|
|
|
redirect_to new_from_existing_admin_procedures_path
|
|
|
|
else
|
2018-05-31 18:32:13 +02:00
|
|
|
flash.alert = new_procedure.errors.full_messages
|
|
|
|
redirect_to admin_procedures_path
|
2018-01-08 15:43:41 +01:00
|
|
|
end
|
2016-06-15 11:34:05 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
rescue ActiveRecord::RecordNotFound
|
2018-09-05 14:48:42 +02:00
|
|
|
flash.alert = 'Démarche inexistante'
|
2016-06-15 11:34:05 +02:00
|
|
|
redirect_to admin_procedures_path
|
|
|
|
end
|
|
|
|
|
2018-07-03 20:18:06 +02:00
|
|
|
SIGNIFICANT_DOSSIERS_THRESHOLD = 30
|
|
|
|
|
2018-01-04 18:36:45 +01:00
|
|
|
def new_from_existing
|
2018-07-03 20:18:06 +02:00
|
|
|
significant_procedure_ids = Procedure
|
2019-11-14 09:43:45 +01:00
|
|
|
.publiees_ou_closes
|
2018-01-04 18:36:45 +01:00
|
|
|
.joins(:dossiers)
|
|
|
|
.group("procedures.id")
|
2018-07-03 20:18:06 +02:00
|
|
|
.having("count(dossiers.id) >= ?", SIGNIFICANT_DOSSIERS_THRESHOLD)
|
2018-01-04 18:36:45 +01:00
|
|
|
.pluck('procedures.id')
|
|
|
|
|
|
|
|
@grouped_procedures = Procedure
|
2019-02-26 16:18:04 +01:00
|
|
|
.includes(:administrateurs, :service)
|
2018-07-03 20:18:06 +02:00
|
|
|
.where(id: significant_procedure_ids)
|
2018-07-03 20:18:49 +02:00
|
|
|
.group_by(&:organisation_name)
|
|
|
|
.sort_by { |_, procedures| procedures.first.created_at }
|
2019-03-27 18:31:28 +01:00
|
|
|
render layout: 'application'
|
2018-01-04 18:36:45 +01:00
|
|
|
end
|
|
|
|
|
2015-12-24 15:22:07 +01:00
|
|
|
def active_class
|
2016-01-19 17:19:38 +01:00
|
|
|
@active_class = 'active'
|
2015-12-24 15:22:07 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def archived_class
|
2016-01-19 17:19:38 +01:00
|
|
|
@archived_class = 'active'
|
2015-12-24 15:22:07 +01:00
|
|
|
end
|
|
|
|
|
2016-06-09 17:49:38 +02:00
|
|
|
def draft_class
|
|
|
|
@draft_class = 'active'
|
|
|
|
end
|
|
|
|
|
2018-09-24 13:29:35 +02:00
|
|
|
def delete_logo
|
2019-08-28 13:11:58 +02:00
|
|
|
@procedure.logo.purge_later
|
2018-09-24 13:29:35 +02:00
|
|
|
|
|
|
|
flash.notice = 'le logo a bien été supprimé'
|
2018-10-02 10:14:38 +02:00
|
|
|
redirect_to edit_admin_procedure_path(@procedure)
|
2018-09-24 13:29:35 +02:00
|
|
|
end
|
|
|
|
|
2018-05-31 11:15:44 +02:00
|
|
|
def delete_deliberation
|
2018-10-02 10:14:38 +02:00
|
|
|
@procedure.deliberation.purge_later
|
2018-05-31 11:15:44 +02:00
|
|
|
|
|
|
|
flash.notice = 'la délibération a bien été supprimée'
|
2018-10-02 10:14:38 +02:00
|
|
|
redirect_to edit_admin_procedure_path(@procedure)
|
2018-05-31 11:15:44 +02:00
|
|
|
end
|
|
|
|
|
2018-09-24 09:49:51 +02:00
|
|
|
def delete_notice
|
2018-10-02 10:14:38 +02:00
|
|
|
@procedure.notice.purge_later
|
2018-09-24 09:49:51 +02:00
|
|
|
|
|
|
|
flash.notice = 'la notice a bien été supprimée'
|
2018-10-02 10:14:38 +02:00
|
|
|
redirect_to edit_admin_procedure_path(@procedure)
|
2018-09-24 09:49:51 +02:00
|
|
|
end
|
|
|
|
|
2015-10-26 15:54:20 +01:00
|
|
|
private
|
|
|
|
|
2018-04-12 18:35:13 +02:00
|
|
|
def cloned_from_library?
|
|
|
|
params[:from_new_from_existing].present?
|
|
|
|
end
|
|
|
|
|
2019-07-30 16:54:43 +02:00
|
|
|
def publish_params
|
|
|
|
params.permit(:path, :lien_site_web)
|
|
|
|
end
|
|
|
|
|
2017-02-14 18:13:19 +01:00
|
|
|
def procedure_params
|
2019-09-24 16:38:58 +02:00
|
|
|
editable_params = [:libelle, :description, :organisation, :direction, :lien_site_web, :cadre_juridique, :deliberation, :notice, :web_hook_url, :euro_flag, :logo, :auto_archive_on]
|
2019-08-20 11:28:07 +02:00
|
|
|
permited_params = if @procedure&.locked?
|
2017-03-14 10:45:59 +01:00
|
|
|
params.require(:procedure).permit(*editable_params)
|
2017-02-15 14:13:02 +01:00
|
|
|
else
|
2019-08-27 15:05:56 +02:00
|
|
|
params.require(:procedure).permit(*editable_params, :duree_conservation_dossiers_dans_ds, :duree_conservation_dossiers_hors_ds, :for_individual, :path)
|
2017-02-15 14:13:02 +01:00
|
|
|
end
|
2019-08-20 11:28:07 +02:00
|
|
|
permited_params
|
2015-12-08 10:11:58 +01:00
|
|
|
end
|
2015-10-26 15:54:20 +01:00
|
|
|
end
|