2014-08-10 21:17:06 +03:00
|
|
|
class Event < ActiveRecord::Base
|
2015-04-20 18:37:05 +03:00
|
|
|
include Proposable
|
|
|
|
|
2015-08-14 23:33:08 +03:00
|
|
|
belongs_to :conference
|
2015-08-14 23:40:32 +03:00
|
|
|
belongs_to :track
|
2015-07-29 17:54:41 +03:00
|
|
|
|
|
|
|
has_many :participations
|
|
|
|
has_many :pending_participations, ->() { pending }, class_name: 'Participation'
|
|
|
|
has_many :approved_participations, ->() { approved }, class_name: 'Participation'
|
|
|
|
has_many :participants, through: :approved_participations
|
|
|
|
|
2015-07-19 20:01:52 +03:00
|
|
|
belongs_to :event_type
|
2015-07-19 14:32:25 +03:00
|
|
|
|
2015-08-15 00:43:30 +03:00
|
|
|
validates :conference, presence: true
|
2014-08-10 21:17:06 +03:00
|
|
|
validates :title, presence: true
|
|
|
|
validates :abstract, presence: true
|
|
|
|
validates :description, presence: true
|
2014-09-04 00:39:54 +03:00
|
|
|
validates :agreement, acceptance: true
|
2015-08-15 00:43:30 +03:00
|
|
|
validates :track, presence: true
|
|
|
|
validate :track_belongs_to_the_selected_conference
|
|
|
|
validates :language, inclusion: {in: I18n.available_locales.map(&:to_s)}, presence: true
|
2015-08-20 00:24:22 +03:00
|
|
|
validates :event_type, presence: true
|
|
|
|
validates :length, presence: true, numericality: {only_integer: true}
|
|
|
|
validate :length_is_within_the_permitted_interval
|
2015-04-20 18:37:14 +03:00
|
|
|
|
|
|
|
scope :confirmed, -> { where.not confirmed_at: nil }
|
2015-07-26 15:58:08 +03:00
|
|
|
|
|
|
|
def proposer_profile
|
|
|
|
proposer.personal_profile(conference)
|
|
|
|
end
|
2015-08-15 00:43:30 +03:00
|
|
|
|
2015-08-20 00:33:13 +03:00
|
|
|
def length
|
|
|
|
read_attribute(:length) || event_type.try(:minimum_length)
|
|
|
|
end
|
|
|
|
|
2015-08-15 00:43:30 +03:00
|
|
|
private
|
|
|
|
|
|
|
|
def track_belongs_to_the_selected_conference
|
|
|
|
unless conference.present? and conference.tracks.include?(track)
|
|
|
|
errors.add :track, :must_be_a_valid_track
|
|
|
|
end
|
|
|
|
end
|
2015-08-20 00:24:22 +03:00
|
|
|
|
|
|
|
def length_is_within_the_permitted_interval
|
|
|
|
unless length >= event_type.minimum_length and length <= event_type.maximum_length
|
|
|
|
errors.add :length, :must_be_between, minimum: event_type.minimum_length, maximum: event_type.maximum_length
|
|
|
|
end
|
|
|
|
end
|
2014-08-10 21:17:06 +03:00
|
|
|
end
|