mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
12c6cd2a70
also: align translations and mark missings
127 lines
5.5 KiB
Ruby
127 lines
5.5 KiB
Ruby
class API::EventsController < API::ApiController
|
|
before_action :set_event, only: [:show, :update, :destroy]
|
|
|
|
def index
|
|
@events = policy_scope(Event)
|
|
@page = params[:page]
|
|
@scope = params[:scope]
|
|
|
|
# filters
|
|
@events = @events.joins(:category).where('categories.id = :category', category: params[:category_id]) if params[:category_id]
|
|
@events = @events.joins(:event_themes).where('event_themes.id = :theme', theme: params[:theme_id]) if params[:theme_id]
|
|
@events = @events.where('age_range_id = :age_range', age_range: params[:age_range_id]) if params[:age_range_id]
|
|
|
|
if current_user and current_user.is_admin?
|
|
case params[:scope]
|
|
when 'future'
|
|
@events = @events.where('availabilities.start_at >= ?', Time.now).order('availabilities.start_at DESC')
|
|
when 'future_asc'
|
|
@events = @events.where('availabilities.start_at >= ?', Time.now).order('availabilities.start_at ASC')
|
|
when 'passed'
|
|
@events = @events.where('availabilities.start_at < ?', Time.now).order('availabilities.start_at DESC')
|
|
else
|
|
@events = @events.order('availabilities.start_at DESC')
|
|
end
|
|
end
|
|
|
|
# paginate
|
|
@events = @events.page(@page).per(12)
|
|
end
|
|
|
|
# GET /events/upcoming/:limit
|
|
def upcoming
|
|
limit = params[:limit]
|
|
@events = Event.includes(:event_image, :event_files, :availability, :category)
|
|
.where('events.nb_total_places != -1 OR events.nb_total_places IS NULL')
|
|
.where('availabilities.start_at >= ?', Time.now)
|
|
.order('availabilities.start_at ASC').references(:availabilities)
|
|
.limit(limit)
|
|
end
|
|
|
|
def show
|
|
end
|
|
|
|
def create
|
|
authorize Event
|
|
@event = Event.new(event_params.permit!)
|
|
if @event.save
|
|
render :show, status: :created, location: @event
|
|
else
|
|
render json: @event.errors, status: :unprocessable_entity
|
|
end
|
|
end
|
|
|
|
def update
|
|
authorize Event
|
|
begin
|
|
if @event.update(event_params.permit!)
|
|
render :show, status: :ok, location: @event
|
|
else
|
|
render json: @event.errors, status: :unprocessable_entity
|
|
end
|
|
rescue ActiveRecord::RecordNotDestroyed => e
|
|
if e.record.class.name == 'EventPriceCategory'
|
|
render json: {error: ["#{e.record.price_category.name}: #{t('events.error_deleting_reserved_price')}"]}, status: :unprocessable_entity
|
|
else
|
|
render json: {error: [t('events.other_error')]}, status: :unprocessable_entity
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
def destroy
|
|
authorize Event
|
|
if @event.safe_destroy
|
|
head :no_content
|
|
else
|
|
head :unprocessable_entity
|
|
end
|
|
end
|
|
|
|
private
|
|
# Use callbacks to share common setup or constraints between actions.
|
|
def set_event
|
|
@event = Event.find(params[:id])
|
|
end
|
|
|
|
# Never trust parameters from the scary internet, only allow the white list through.
|
|
def event_params
|
|
# handle general properties
|
|
event_preparams = params.required(:event).permit(:title, :description, :start_date, :start_time, :end_date, :end_time,
|
|
:amount, :nb_total_places, :availability_id,
|
|
:all_day, :recurrence, :recurrence_end_at, :category_id, :event_theme_ids,
|
|
:age_range_id, event_theme_ids: [],
|
|
event_image_attributes: [:attachment],
|
|
event_files_attributes: [:id, :attachment, :_destroy],
|
|
event_price_categories_attributes: [:id, :price_category_id, :amount, :_destroy]
|
|
)
|
|
# handle dates & times (whole-day events or not, maybe during many days)
|
|
start_date = Time.zone.parse(event_preparams[:start_date])
|
|
end_date = Time.zone.parse(event_preparams[:end_date])
|
|
start_time = Time.parse(event_preparams[:start_time]) if event_preparams[:start_time]
|
|
end_time = Time.parse(event_preparams[:end_time]) if event_preparams[:end_time]
|
|
if event_preparams[:all_day] == 'true'
|
|
start_at = DateTime.new(start_date.year, start_date.month, start_date.day, 0, 0, 0, start_date.zone)
|
|
end_at = DateTime.new(end_date.year, end_date.month, end_date.day, 23, 59, 59, end_date.zone)
|
|
else
|
|
start_at = DateTime.new(start_date.year, start_date.month, start_date.day, start_time.hour, start_time.min, start_time.sec, start_date.zone)
|
|
end_at = DateTime.new(end_date.year, end_date.month, end_date.day, end_time.hour, end_time.min, end_time.sec, end_date.zone)
|
|
end
|
|
event_preparams.merge!(availability_attributes: {id: event_preparams[:availability_id], start_at: start_at, end_at: end_at, available_type: 'event'})
|
|
.except!(:start_date, :end_date, :start_time, :end_time, :all_day)
|
|
# convert main price to centimes
|
|
event_preparams.merge!(amount: (event_preparams[:amount].to_f * 100 if event_preparams[:amount].present?))
|
|
# delete non-complete "other" prices and convert them to centimes
|
|
unless event_preparams[:event_price_categories_attributes].nil?
|
|
event_preparams[:event_price_categories_attributes].delete_if { |price_cat| price_cat[:price_category_id].empty? or price_cat[:amount].empty? }
|
|
event_preparams[:event_price_categories_attributes].each do |price_cat|
|
|
price_cat[:amount] = price_cat[:amount].to_f * 100
|
|
end
|
|
end
|
|
# return the resulting params object
|
|
event_preparams
|
|
end
|
|
|
|
|
|
end
|