-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathinputs_controller.rb
109 lines (97 loc) · 3.36 KB
/
inputs_controller.rb
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# frozen_string_literal: true
module Api
module V3
class InputsController < ::Api::V3::BaseController
before_action do
@scenario = Scenario.find(params[:scenario_id])
authorize!(:read, @scenario)
set_default_format
end
# GET /api/v3/inputs
# GET /api/v3/scenarios/:scenario_id/inputs
#
# Returns the details for all available inputs. If the scenario_id isn't
# passed then the action will use the latest scenario.
#
def index
extras = ActiveModel::Type::Boolean.new.cast(params[:include_extras])
respond_to do |format|
format.json do
render json: InputSerializer.collection(
Input.all,
@scenario,
**serializer_args(extra_attributes: extras)
)
end
format.csv do
csv_data = CSV.generate(headers: true) do |csv|
csv << ["Key", "Min", "Max", "Default", "User value", "Unit", "Share Group"]
Input.all.each do |input|
serializer = InputSerializer.serializer_for(
input,
@scenario,
**serializer_args(extra_attributes: extras)
)
csv << serializer.to_csv_row
end
end
send_data csv_data,
filename: "scenario_#{@scenario.id}_inputs.csv",
type: "text/csv"
end
end
end
# GET /api/v3/inputs/:id
# GET /api/v3/scenarios/:scenario_id/inputs/:id
# GET /api/v3/scenarios/:scenario_id/inputs/:id_1,:id_2,...,:id_N
#
# Returns the input details in JSON format. If the scenario is missing
# the action returns an empty hash and a 404 status code. The inputs
# are stored in the db and in the etsource, too. At the moment this
# action uses the DB records. To be updated.
#
def show
record =
if params.key?(:id) && params[:id].include?(',')
params[:id].split(',').compact.uniq.map do |id|
InputSerializer.serializer_for(
fetch_input(id),
@scenario,
**serializer_args(extra_attributes: true)
)
end
else
InputSerializer.serializer_for(
fetch_input(params[:id]), @scenario, **serializer_args(extra_attributes: true)
)
end
render json: record
rescue ActiveRecord::RecordNotFound => e
render_not_found(errors: [e.message])
end
# GET /api/v3/inputs/list.json
#
# Returns a JSON-encoded array of inputs. Used to transition from v2 to
# v3 and replace ids with keys. Can be deleted when all applications
# will have been upgraded.
#
def list
render json: Input.all.map{|i| {id: i.id, key: i.key}}
end
private
def fetch_input(id)
(input = Input.get(id)) ? input : raise(ActiveRecord::RecordNotFound)
end
def serializer_args(extra_attributes:)
{
can_change: current_ability.can?(:update, @scenario),
default_values_from: params[:defaults] ? params[:defaults].to_sym : :parent,
extra_attributes:
}
end
def set_default_format
request.format = :json unless params[:format]
end
end
end
end