summaryrefslogtreecommitdiff
path: root/app/models/gemeinschaft_setup.rb
blob: ee8e981016f1ee1e2e5a73d625482756bf51365d (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
class GemeinschaftSetup < ActiveRecord::Base
  belongs_to :user
  accepts_nested_attributes_for :user
  belongs_to :sip_domain
  accepts_nested_attributes_for :sip_domain
  belongs_to :country
  belongs_to :language

  validates :default_company_name,
            :presence => true,
            :uniqueness => true

  validates :default_system_email,
            :presence => true,
            :uniqueness => true
            
  # Remove the cache which was created by the heater rake task.
  #
  after_create :expire_cache

  before_validation :format_default_area_code

  def detect_attacks
    if self[:detect_attacks] == nil
      return true
    end
    return self[:detect_attacks]
  end

  def detect_attacks=(value)
    self[:detect_attacks] = value
  end

  def report_attacks
    if self[:report_attacks] == nil
      return true
    end
    return self[:report_attacks]
  end

  def report_attacks=(value)
    self[:report_attacks] = value
  end

  private
  def expire_cache
    ActionController::Base.expire_page(Rails.application.routes.url_helpers.new_gemeinschaft_setup_path)
  end

  def format_default_area_code
    if self.default_area_code.blank?
      self.default_area_code = nil
    else
      if self.country != nil && !self.country.trunk_prefix.blank?
        self.default_area_code.gsub(/^#{self.country.trunk_prefix}/,'')
      end
    end
  end
end