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

116 lines
3.1 KiB
Ruby
Raw Normal View History

2015-02-15 17:10:17 +01:00
# Groups life cycle
class OrgasController < ApplicationController
has_scope :city, :region, :tag
has_scope :near, type: :hash, using: %i[location distance]
has_scope :active, type: :boolean, default: true, allow_blank: true
2020-01-01 22:44:07 +01:00
before_action :set_orga, if: -> { params[:id].present? }
before_action :authenticate_user!, if: -> { params[:id].present? },
unless: :check_secret,
except: %i[show]
2015-02-15 17:10:17 +01:00
def index
@unfiltered_orgas = apply_scopes(Orga.moderated)
2018-12-20 12:16:05 +01:00
@search = @unfiltered_orgas.ransack params[:q]
@search.sorts = 'updated_at desc' if @search.sorts.empty?
2015-02-15 17:10:17 +01:00
@orgas = @search.result.page params[:page]
respond_to :html, :json
2015-02-15 17:10:17 +01:00
end
# GET /orgas/new
def new
@orga = Orga.new region_id: session[:region]
end
2020-01-01 22:44:07 +01:00
# POST /orgas/preview
def preview_create
@orga = Orga.new orga_params
@orga.valid?
render action: :new
end
# POST /orgas
# POST /orgas.json
def create
@orga = Orga.new orga_params
respond_to do |format|
2015-05-25 11:42:53 +02:00
if @orga.save
format.html { redirect_to @orga, notice: t('.ok') }
2018-05-23 09:24:42 +02:00
format.json { render action: 'show', status: :created, location: @orga }
else
format.html { render action: 'new' }
format.json { render json: @orga.errors, status: :unprocessable_entity }
end
end
end
2015-02-15 17:10:17 +01:00
def show
@events_future = Event.moderated.future.tag @orga.name_as_tag
@events_past = Event.moderated.past.tag @orga.name_as_tag
2015-02-15 17:10:17 +01:00
end
2020-01-01 22:44:07 +01:00
# PATCH/PUT /orgas/1/preview
def preview
@orga.attributes = orga_params
@orga.valid?
render action: :edit
end
# PATCH/PUT /orgas/1
# PATCH/PUT /orgas/1.json
def update
respond_to do |format|
2015-05-25 11:42:53 +02:00
if @orga.update orga_params
format.html { redirect_to @orga, notice: t('.ok') }
format.json { head :no_content }
else
format.html { render action: 'edit' }
format.json { render json: @orga.errors, status: :unprocessable_entity }
end
end
end
# PATCH/PUT /accept/1
# PATCH/PUT /accept/1.json
def accept
@orga.update moderated: true
respond_to do |format|
format.html { redirect_to :moderations, notice: t('.ok') }
format.json { head :no_content }
end
end
# DELETE /orgas/1
# DELETE /orgas/1.json
def destroy
@orga.destroy
respond_to do |format|
format.html { redirect_to :moderations, notice: t('.ok') }
format.json { head :no_content }
end
end
2015-02-15 17:10:17 +01:00
private
# Use callbacks to share common setup or constraints between actions.
def set_orga
@orga = Orga.find params[:id]
end
# Never trust parameters from the scary internet, only allow the white list
# through
def orga_params
params.require(:orga)
.permit :lock_version, :kind_id, :name, :description, :place_name,
:address, :city, :department, :region_id, :url, :diaspora,
:feed, :contact, :submitter, :tag_list, :active
end
2015-05-25 11:42:53 +02:00
# Check that you can only edit an existing event if you know its secret
def check_secret
!%w[validate refuse].include?(action_name) &&
2016-01-26 15:31:03 +01:00
(!@orga.secret || @orga.secret == params[:secret])
2015-05-25 11:42:53 +02:00
end
2015-02-15 17:10:17 +01:00
end