summaryrefslogtreecommitdiff
path: root/app/models/service_level.rb
blob: a8df55bcd25005498e7b00334277860702f225d5 (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
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]
    elsif APP_CONFIG[:allow_unlimited_certs]
      APP_CONFIG[:unlimited_cert_prefix]
    end
  end

  def provides?(service)
    services.include? service
  end

  def services
    config_hash[:services] || []
  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