summaryrefslogtreecommitdiff
path: root/app/models/service_level.rb
blob: 06ad20209ef322d86c753c95df7db716a668aece (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
class ServiceLevel

  def initialize(attributes = {})
    @id = attributes[:id] || APP_CONFIG[:default_service_level]
  end

  def self.select_options
    APP_CONFIG[:service_levels].map do |id,config_hash|
      [config_hash[:description], id]
    end
  end

  def id
    @id
  end

  delegate :to_json, to: :config_hash

  def cert_prefix
    if limited_cert?
      APP_CONFIG[:limited_cert_prefix]
    else
      APP_CONFIG[:unlimited_cert_prefix]
    end
  end

  protected

  def limited_cert?
    APP_CONFIG[:allow_limited_certs] &&
      (!APP_CONFIG[:allow_unlimited_certs] || config_hash[:eip_rate_limit])
  end

  def config_hash
    @config_hash || APP_CONFIG[:service_levels][@id].with_indifferent_access
  end

end