houdini/app/models/ticket_level.rb

103 lines
3 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2020-06-12 20:03:43 +00:00
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
class TicketLevel < ApplicationRecord
2021-02-02 21:04:53 +00:00
include Model::Jbuilder
include Model::Eventable
2019-08-06 14:08:15 +00:00
# :amount, #integer
# :amount_dollars, #accessor, string
# :name, #string
# :description, #text
# :quantity, #integer
# :deleted, #bool for soft delete
# :event_id,
# :admin_only, #bool, only admins can create tickets for this level
# :limit, #int: for limiting the number of tickets to be sold
# :order #int: order in which to be displayed
2021-01-11 22:34:48 +00:00
2021-02-12 21:29:55 +00:00
add_builder_expansion :nonprofit, :event
2021-01-11 22:34:48 +00:00
# TODO replace with Discard gem
define_model_callbacks :discard
2021-01-11 22:34:48 +00:00
after_discard :publish_delete
after_create :publish_create
after_update :publish_updated
attr_accessor :amount_dollars
has_many :tickets
belongs_to :event
2021-02-02 21:04:53 +00:00
has_one :nonprofit, through: :event
2021-02-12 21:29:55 +00:00
validates :name, presence: true
validates :event_id, presence: true
2021-02-02 21:04:53 +00:00
validate :amount_hasnt_changed_if_has_tickets, on: :update
scope :not_deleted, -> { where(deleted: [false, nil]) }
2021-02-12 21:29:55 +00:00
# has_many didn't work here, don't know why offhand.
def event_discounts
event.event_discounts
end
before_validation do
self.amount = Format::Currency.dollars_to_cents(amount_dollars) if amount_dollars.present?
self.amount = 0 if amount.nil?
end
2021-01-11 22:34:48 +00:00
# TODO replace with discard gem
def discard!
run_callbacks(:discard) do
self.deleted = true
save!
end
end
def to_builder(*expand)
2021-02-12 21:29:55 +00:00
init_builder(*expand) do |json|
json.(self, :name, :deleted, :order, :limit, :description)
2021-01-11 22:34:48 +00:00
json.amount do
json.amount amount || 0
2021-01-11 22:34:48 +00:00
json.currency event.nonprofit.currency
end
json.available_to admin_only ? 'admins' : 'everyone'
2021-02-12 21:29:55 +00:00
if expand.include? :event_discounts
json.event_discounts event_discounts do |disc|
json.merge! disc.to_builder.attributes!
2021-01-11 22:34:48 +00:00
end
2021-02-12 21:29:55 +00:00
else
json.event_discounts event_discounts.pluck(:id)
2021-01-11 22:34:48 +00:00
end
end
end
private
def publish_create
Houdini.event_publisher.announce(:ticket_level_created, to_event('ticket_level.created', :event, :nonprofit, :event_discounts).attributes!)
2021-01-11 22:34:48 +00:00
end
def publish_updated
# we don't run update when we've really just discarded
unless deleted
Houdini.event_publisher.announce(:ticket_level_updated, to_event('ticket_level.updated', :event, :nonprofit, :event_discounts).attributes!)
2021-01-11 22:34:48 +00:00
end
end
def publish_delete
Houdini.event_publisher.announce(:ticket_level_deleted, to_event('ticket_level.deleted', :event, :nonprofit, :event_discounts).attributes!)
2021-01-11 22:34:48 +00:00
end
2021-02-02 21:04:53 +00:00
def amount_hasnt_changed_if_has_tickets
if tickets.any?
console.log("YOU can't change amount if tickets already use this #{ticket_level.id}. Please create a new level")
#errors.add(:amount, "can't change amount if tickets already use this level. Please create a new level")
end
end
end