2019-01-16 16:28:25 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# API Controller for resources of type Setting
|
2016-03-23 18:39:41 +01:00
|
|
|
class API::SettingsController < API::ApiController
|
2020-01-22 11:53:40 +01:00
|
|
|
before_action :authenticate_user!, only: %i[update bulk_update reset]
|
2016-03-23 18:39:41 +01:00
|
|
|
|
|
|
|
def index
|
2020-06-08 15:08:07 +02:00
|
|
|
@settings = policy_scope(Setting.where(name: names_as_string_to_array))
|
2016-03-23 18:39:41 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
|
|
|
authorize Setting
|
2016-08-17 12:49:52 +02:00
|
|
|
@setting = Setting.find_or_initialize_by(name: params[:name])
|
2020-04-07 17:53:19 +02:00
|
|
|
render status: :not_modified and return if setting_params[:value] == @setting.value
|
|
|
|
|
2019-06-03 16:51:43 +02:00
|
|
|
if @setting.save && @setting.history_values.create(value: setting_params[:value], invoicing_profile: current_user.invoicing_profile)
|
2020-06-09 18:51:57 +02:00
|
|
|
SettingService.after_update(@setting)
|
2016-03-23 18:39:41 +01:00
|
|
|
render status: :ok
|
|
|
|
else
|
|
|
|
render json: @setting.errors.full_messages, status: :unprocessable_entity
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-16 14:39:47 +02:00
|
|
|
def bulk_update
|
|
|
|
authorize Setting
|
|
|
|
|
|
|
|
@settings = []
|
|
|
|
params[:settings].each do |setting|
|
|
|
|
next if !setting[:name] || !setting[:value]
|
|
|
|
|
|
|
|
db_setting = Setting.find_or_initialize_by(name: setting[:name])
|
|
|
|
db_setting.save && db_setting.history_values.create(value: setting[:value], invoicing_profile: current_user.invoicing_profile)
|
2020-06-09 18:51:57 +02:00
|
|
|
SettingService.after_update(db_setting)
|
2019-09-16 14:39:47 +02:00
|
|
|
@settings.push db_setting
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-03-23 18:39:41 +01:00
|
|
|
def show
|
2020-06-08 15:08:07 +02:00
|
|
|
authorize SettingContext.new(params[:name])
|
|
|
|
|
2016-03-23 18:39:41 +01:00
|
|
|
@setting = Setting.find_or_create_by(name: params[:name])
|
2019-01-14 15:00:33 +01:00
|
|
|
@show_history = params[:history] == 'true' && current_user.admin?
|
2016-03-23 18:39:41 +01:00
|
|
|
end
|
|
|
|
|
2020-06-08 15:08:07 +02:00
|
|
|
def test_present
|
|
|
|
authorize SettingContext.new(params[:name])
|
|
|
|
|
|
|
|
@setting = Setting.get(params[:name])
|
|
|
|
end
|
|
|
|
|
2020-01-22 11:53:40 +01:00
|
|
|
def reset
|
|
|
|
authorize Setting
|
|
|
|
|
|
|
|
setting = Setting.find_or_create_by(name: params[:name])
|
|
|
|
first_val = setting.history_values.order(created_at: :asc).limit(1).first
|
|
|
|
new_val = HistoryValue.create!(
|
|
|
|
setting_id: setting.id,
|
|
|
|
value: first_val.value,
|
|
|
|
invoicing_profile_id: current_user.invoicing_profile.id
|
|
|
|
)
|
|
|
|
render json: new_val, status: :ok
|
|
|
|
end
|
|
|
|
|
2016-03-23 18:39:41 +01:00
|
|
|
private
|
|
|
|
|
2018-12-17 16:02:02 +01:00
|
|
|
def setting_params
|
|
|
|
params.require(:setting).permit(:value)
|
|
|
|
end
|
|
|
|
|
|
|
|
def names_as_string_to_array
|
|
|
|
params[:names][1..-2].split(',').map(&:strip).map { |param| param[1..-2] }.map(&:strip)
|
|
|
|
end
|
2016-03-23 18:39:41 +01:00
|
|
|
end
|