agenda-libre-ruby/app/controllers/moderations_controller.rb

89 lines
2.5 KiB
Ruby
Raw Normal View History

# Event management life cycle
2014-06-23 23:39:42 +02:00
class ModerationsController < ApplicationController
before_action :authenticate_user!
before_action :set_moderation, :set_mailer_host, only:
[:show, :edit, :preview, :update, :validate, :accept, :refuse, :destroy]
before_action :generate_destroy_reason, only: :destroy
rescue_from ActiveRecord::StaleObjectError, with: :locked
2014-01-06 11:22:39 +01:00
def index
@events = Event.unmoderated
@orgas = Orga.unmoderated
2014-01-06 11:22:39 +01:00
end
def preview
@moderation.attributes = moderation_params
@moderation.valid?
render action: :edit
end
2014-01-06 11:22:39 +01:00
# PATCH/PUT /moderations/1
# PATCH/PUT /moderations/1.json
def update
respond_to do |format|
if @moderation.update_attributes moderation_params
format.html { redirect_to :moderations, notice: t('.ok') }
2014-01-06 11:22:39 +01:00
format.json { head :no_content }
else
format.html { render action: 'edit' }
# 422 means :unprocessable_entity
format.json { render json: @moderation.errors, status: 422 }
2014-01-06 11:22:39 +01:00
end
end
end
2014-07-01 15:50:39 +02:00
# PATCH/PUT /accept/1
# PATCH/PUT /accept/1.json
def accept
@moderation.update moderated: true
2014-07-01 15:50:39 +02:00
respond_to do |format|
format.html { redirect_to :moderations, notice: t('.ok') }
format.json { head :no_content }
2014-07-01 15:50:39 +02:00
end
end
# DELETE /events/1
# DELETE /events/1.json
def destroy
@moderation.destroy!
2014-07-01 15:50:39 +02:00
respond_to do |format|
format.html { redirect_to :moderations, notice: t('.ok') }
2014-07-01 15:50:39 +02:00
format.json { head :no_content }
end
end
2014-01-06 11:22:39 +01:00
2014-07-01 15:50:39 +02:00
private
2014-01-06 11:22:39 +01:00
# Use callbacks to share common setup or constraints between actions.
def set_moderation
@event = Event.find params[:id]
@moderation = @event
end
2014-06-09 12:18:40 +02:00
# Never trust parameters from the scary internet, only allow the white list
# through.
def moderation_params
params.require(:event)
.permit :lock_version, :title, :start_time, :end_time, :repeat, :rule,
:description, :place_name, :address, :city, :region_id,
:locality, :url, :contact, :submitter, :tag_list
end
# Useful to manage absolute url in mails
def set_mailer_host
ActionMailer::Base.default_url_options[:host] = request.host_with_port
end
def locked
redirect_to edit_moderation_url(@moderation), alert: t('staleObjectError')
end
def generate_destroy_reason
2016-09-19 16:35:19 +02:00
if params[:reason] == 'r_4'
@moderation.reason = params[:event][:reason]
else
@moderation.reason = t "moderations.refuse.reason_#{params[:reason]}_long"
end
end
2014-01-06 11:22:39 +01:00
end