1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/models/reservation.rb

121 lines
3.9 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
# Reservation is a Slot or a Ticket booked by a member.
# Slots are for Machine, Space and Training reservations.
# Tickets are for Event reservations.
2020-03-25 10:16:47 +01:00
class Reservation < ApplicationRecord
2016-03-23 18:39:41 +01:00
include NotifyWith::NotificationAttachedObject
belongs_to :statistic_profile
has_many :slots_reservations, dependent: :destroy
has_many :slots, through: :slots_reservations
2016-03-23 18:39:41 +01:00
accepts_nested_attributes_for :slots, allow_destroy: true
belongs_to :reservable, polymorphic: true
has_many :tickets
accepts_nested_attributes_for :tickets, allow_destroy: false
2018-12-11 17:27:25 +01:00
has_one :invoice, -> { where(type: nil) }, as: :invoiced, dependent: :destroy
has_one :payment_schedule, as: :scheduled, dependent: :destroy
2016-03-23 18:39:41 +01:00
validates_presence_of :reservable_id, :reservable_type
2018-12-11 17:27:25 +01:00
validate :machine_not_already_reserved, if: -> { reservable.is_a?(Machine) }
validate :training_not_fully_reserved, if: -> { reservable.is_a?(Training) }
validates_with ReservationSlotSubscriptionValidator
2016-03-23 18:39:41 +01:00
attr_accessor :plan_id, :subscription
2016-03-23 18:39:41 +01:00
after_commit :notify_member_create_reservation, on: :create
after_commit :notify_admin_member_create_reservation, on: :create
2018-12-11 17:27:25 +01:00
after_save :update_event_nb_free_places, if: proc { |reservation| reservation.reservable_type == 'Event' }
2016-03-23 18:39:41 +01:00
2016-08-10 17:37:17 +02:00
##
# These checks will run before the invoice/payment-schedule is generated
2016-08-10 17:37:17 +02:00
##
def pre_check
# check that none of the reserved availabilities was locked
slots.each do |slot|
2018-12-11 15:07:21 +01:00
raise LockedError if slot.availability.lock
end
2016-03-23 18:39:41 +01:00
end
## Generate the subscription associated with for the current reservation
def generate_subscription
return unless plan_id
self.subscription = Subscription.new(plan_id: plan_id, statistic_profile_id: statistic_profile_id, expiration_date: nil)
subscription.init_save
subscription
end
2016-03-23 18:39:41 +01:00
##
# These actions will be realized after the reservation is initially saved (on creation)
##
def post_save
2018-12-11 15:07:21 +01:00
UsersCredits::Manager.new(reservation: self).update_credits
2016-03-23 18:39:41 +01:00
end
# @param canceled if true, count the number of seats for this reservation, including canceled seats
def total_booked_seats(canceled: false)
# cases:
# - machine/training/space reservation => 1 slot = 1 seat (currently not covered by this function)
# - event reservation => seats = nb_reserve_place (normal price) + tickets.booked (other prices)
return 0 if slots.first.canceled_at && !canceled
total = nb_reserve_places
total += tickets.map(&:booked).map(&:to_i).reduce(:+) if tickets.count.positive?
2016-08-30 09:47:03 +02:00
total
end
def user
statistic_profile.user
end
def update_event_nb_free_places
return unless reservable_type == 'Event'
reservable.update_nb_free_places
reservable.save!
end
2016-08-10 16:33:26 +02:00
private
2016-03-23 18:39:41 +01:00
def machine_not_already_reserved
already_reserved = false
slots.each do |slot|
same_hour_slots = Slot.joins(:reservations).where(
reservations: { reservable_type: reservable_type, reservable_id: reservable_id },
start_at: slot.start_at,
end_at: slot.end_at,
availability_id: slot.availability_id,
canceled_at: nil
)
2016-03-23 18:39:41 +01:00
if same_hour_slots.any?
already_reserved = true
break
end
end
errors.add(:machine, 'already reserved') if already_reserved
2016-03-23 18:39:41 +01:00
end
def training_not_fully_reserved
slot = slots.first
errors.add(:training, 'already fully reserved') if Availability.find(slot.availability_id).completed?
2016-03-23 18:39:41 +01:00
end
def notify_member_create_reservation
NotificationCenter.call type: 'notify_member_create_reservation',
receiver: user,
attached_object: self
end
def notify_admin_member_create_reservation
NotificationCenter.call type: 'notify_admin_member_create_reservation',
2020-04-29 15:34:30 +02:00
receiver: User.admins_and_managers,
2016-03-23 18:39:41 +01:00
attached_object: self
end
end