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
|
|
|
|
before_action :authenticate_user!, only: :update
|
|
|
|
|
|
|
|
def index
|
|
|
|
@settings = Setting.where(name: names_as_string_to_array)
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
|
|
|
authorize Setting
|
2016-08-17 12:49:52 +02:00
|
|
|
@setting = Setting.find_or_initialize_by(name: params[:name])
|
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)
|
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)
|
|
|
|
@settings.push db_setting
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-03-23 18:39:41 +01:00
|
|
|
def show
|
|
|
|
@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
|
|
|
|
|
|
|
|
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
|