summaryrefslogtreecommitdiff
path: root/app/controllers/v1/configs_controller.rb
blob: 4a6f45579b4d2d67a1330e575e12f49b3df630c5 (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 V1::ConfigsController < ApiController
  include ControllerExtension::JsonFile

  before_filter :require_login, :unless => :anonymous_access_allowed?
  before_filter :sanitize_id, only: :show
  before_filter :lookup_file, only: :show
  before_filter :fetch_file, only: :show

  def index
    render json: {services: service_paths}
  end

  def show
    send_file
  end

  protected

  SERVICE_IDS = {
    soledad: "soledad-service",
    eip: "eip-service",
    smtp: "smtp-service"
  }

  def service_paths
    Hash[SERVICE_IDS.map{|k,v| [k,"/1/configs/#{v}.json"] } ]
  end

  def sanitize_id
    @id = params[:id].downcase
    access_denied unless SERVICE_IDS.values.include? @id
  end

  def lookup_file
    path = APP_CONFIG[:config_file_paths][@id]
    not_found if path.blank?
    @filename = Rails.root.join path
  end
end