class Event < ActiveRecord::Base include ActiveRecord::Transitions has_paper_trail attr_accessible :title, :subtitle, :abstract, :description, :event_type_id, :users_attributes, :user, :proposal_additional_speakers, :track_id, :require_registration, :difficulty_level_id acts_as_commentable after_create :set_week has_many :event_users, dependent: :destroy has_many :event_attachments, dependent: :destroy has_many :users, through: :event_users has_many :speakers, through: :event_users, source: :user has_many :votes, dependent: :destroy has_many :voters, through: :votes, source: :user has_many :commercials, as: :commercialable, dependent: :destroy belongs_to :event_type has_and_belongs_to_many :registrations belongs_to :track belongs_to :room belongs_to :difficulty_level belongs_to :conference accepts_nested_attributes_for :event_users, allow_destroy: true accepts_nested_attributes_for :event_attachments, allow_destroy: true, reject_if: :all_blank accepts_nested_attributes_for :users before_create :generate_guid validate :abstract_limit validate :before_end_of_conference validate :name_and_biography_exists validates :title, presence: true validates :abstract, presence: true validates :event_type, presence: true validates :conference, presence: true scope :confirmed, -> { where(state: 'confirmed') } state_machine initial: :new do state :new state :withdrawn state :unconfirmed state :confirmed state :canceled state :rejected event :restart do transitions to: :new, from: [:rejected, :withdrawn, :canceled] end event :withdraw do transitions to: :withdrawn, from: [:new, :unconfirmed, :confirmed] end event :accept do transitions to: :unconfirmed, from: [:new], on_transition: :process_acceptance end event :confirm do transitions to: :confirmed, from: :unconfirmed, on_transition: :process_confirmation end event :cancel do transitions to: :canceled, from: [:unconfirmed, :confirmed] end event :reject do transitions to: :rejected, from: [:new], on_transition: :process_rejection end end def voted?(event, user) event.votes.where('user_id = ?', user).first end def average_rating @total_rating = 0 votes.each do |vote| @total_rating = @total_rating + vote.rating end @total = votes.size number_with_precision(@total_rating / @total.to_f, precision: 2, strip_insignificant_zeros: true) end def submitter result = event_users.where(event_role: 'submitter').first if !result.nil? result.user else user = nil # Perhaps the event_users haven't been saved, if this is a new proposal event_users.each do |u| if u.event_role == 'submitter' user = u.user end end user end end def as_json(options) json = super(options) if room.nil? json[:room_guid] = nil else json[:room_guid] = room.guid end if track.nil? json[:track_color] = '#ffffff' else json[:track_color] = track.color end if event_type.nil? json[:length] = 25 else json[:length] = event_type.length end json end def transition_possible?(transition) self.class.state_machine.events_for(current_state).include?(transition) end def process_confirmation if conference.email_settings.send_on_confirmed_without_registration? && conference.email_settings.confirmed_email_template && conference.email_settings.confirmed_without_registration_subject if conference.registrations.where(user_id: submitter.id).first.nil? Mailbot.delay.confirm_reminder_mail(self) end end end def process_acceptance(options) if conference.email_settings.send_on_accepted && conference.email_settings.accepted_email_template && conference.email_settings.accepted_subject && !options[:send_mail].blank? Rails.logger.debug 'Sending event acceptance mail' Mailbot.delay.acceptance_mail(self) end end def process_rejection(options) if conference.email_settings.send_on_rejected && conference.email_settings.rejected_email_template && conference.email_settings.rejected_subject && !options[:send_mail].blank? Rails.logger.debug 'Sending rejected mail' Mailbot.delay.rejection_mail(self) end end def abstract_word_count if abstract.nil? 0 else abstract.split.size end end def week created_at.strftime('%W').to_i end def self.get_state_color(state) # default azure result = '#00FFFF' case state when 'new' # blue result = '#0000FF' when 'withdrawn' # orange result = '#FF8000' when 'confirmed' # green result = '#00FF00' when 'unconfirmed' # yellow result = '#FFFF00' when 'rejected' # red result = '#FF0000' when 'canceled' # grey result = '#848484' end result end def update_state(transition, mail = false, subject = false, send_mail = false, send_mail_param) alert = '' if mail && send_mail_param && subject && send_mail alert = 'Update Email Subject before Sending Mails' end begin if mail self.send(transition, send_mail: send_mail_param) else self.send(transition) end self.save rescue Transitions::InvalidTransition => e alert = "Update state failed. #{e.message}" end alert end def speaker_names result = [] speakers.each do |speaker| result.push(speaker.name) end result.to_sentence end private def abstract_limit # If we don't have an event type, there is no need to count anything return unless event_type len = abstract.split.size max_words = event_type.maximum_abstract_length min_words = event_type.minimum_abstract_length errors.add(:abstract, "cannot have less than #{min_words} words") if len < min_words errors.add(:abstract, "cannot have more than #{max_words} words") if len > max_words end def name_and_biography_exists errors.add(:biography, "cant' be blank") if submitter.biography.blank? errors.add(:username, " can't be blank") if submitter.name.blank? end # TODO: create a module to be mixed into model to perform same operation # venue.rb has same functionality which can be shared # TODO: rename guid to UUID as guid is specifically Microsoft term def generate_guid loop do @guid = SecureRandom.urlsafe_base64 break if !self.class.where(guid: guid).any? end self.guid = @guid end def set_week self.week = created_at.strftime('%W') save! end def before_end_of_conference errors. add(:created_at, "can't be after the conference end date!") if conference.end_date && (Date.today > conference.end_date) end end