summaryrefslogtreecommitdiff
path: root/app/models/conference_invitee.rb
blob: d6e3bac4345a627a7c1fc0a48f6bc2aec97c05b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
class ConferenceInvitee < ActiveRecord::Base
  attr_accessible :pin, :speaker, :moderator, :phone_number, :phone_number_attributes
  
  belongs_to :conference
  belongs_to :phone_book_entry
  has_one :phone_number, :as => :phone_numberable, :dependent => :destroy
  accepts_nested_attributes_for :phone_number
  
  validates_presence_of :conference_id
  validates_presence_of :conference
  validates_presence_of :phone_number
  validates_numericality_of :pin, :only_integer => true, 
                                  :greater_than => 0,
                                  :allow_nil => true,
                                  :allow_blank => true
  validates_length_of       :pin, :minimum => (GsParameter.get('MINIMUM_PIN_LENGTH').nil? ? 4 : GsParameter.get('MINIMUM_PIN_LENGTH')),
                                  :allow_nil => true,
                                  :allow_blank => true
                                  
  validates_inclusion_of :speaker, :in => [true, false]
  validates_inclusion_of :moderator, :in => [true, false]
    
  validate :uniqueness_of_phone_number_in_the_parent_conference
  validates_uniqueness_of :phone_book_entry_id, :scope => :conference_id, :allow_nil => true
  
  def to_s
    "ID #{self.id}"
  end

  private
  
  def uniqueness_of_phone_number_in_the_parent_conference
    if self.conference.conference_invitees.where('id != ?', self.id).count > 0 && 
       self.conference.conference_invitees.where('id != ?', self.id).map{|x| x.phone_number.number}.
            include?(self.phone_number.number)
       errors.add(:base, 'Phone number is not unique within the conference.')     
    end
  end
end