blob: 0f9b8a657c5cc269656227986bd666a671c6c5b9 (
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
|
class Api::ConfigsController < ApiController
include ControllerExtension::JsonFile
before_filter :require_login, :unless => :anonymous_access_allowed?
before_filter :sanitize_id, only: :show
def index
render json: {services: service_paths}
end
def show
send_file lookup_file
end
protected
SERVICE_IDS = {
soledad: "soledad-service",
eip: "eip-service",
smtp: "smtp-service"
}
def service_paths
Hash[SERVICE_IDS.map{|k,v| [k,"/#{api_version}/configs/#{v}.json"] } ]
end
def api_version
["1", "2"].include?(params[:version]) ? params[:version] : "2"
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?
Rails.root.join path
end
end
|