2017-01-12 21:46:24 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-04-10 22:27:03 +03:00
|
|
|
module Admin
|
|
|
|
class SettingsController < BaseController
|
2017-05-04 19:12:44 +03:00
|
|
|
ADMIN_SETTINGS = %w(
|
|
|
|
site_contact_username
|
|
|
|
site_contact_email
|
|
|
|
site_title
|
|
|
|
site_description
|
|
|
|
site_extended_description
|
2017-07-04 16:19:24 +03:00
|
|
|
site_terms
|
2017-05-04 19:12:44 +03:00
|
|
|
open_registrations
|
|
|
|
closed_registrations_message
|
|
|
|
).freeze
|
2017-04-20 18:18:09 +03:00
|
|
|
BOOLEAN_SETTINGS = %w(open_registrations).freeze
|
|
|
|
|
2017-05-04 19:12:44 +03:00
|
|
|
def edit
|
2017-04-10 22:27:03 +03:00
|
|
|
@settings = Setting.all_as_records
|
|
|
|
end
|
2017-01-12 21:46:24 +02:00
|
|
|
|
2017-04-10 22:27:03 +03:00
|
|
|
def update
|
2017-05-04 19:12:44 +03:00
|
|
|
settings_params.each do |key, value|
|
|
|
|
setting = Setting.where(var: key).first_or_initialize(var: key)
|
|
|
|
setting.update(value: value_for_update(key, value))
|
2017-04-10 22:27:03 +03:00
|
|
|
end
|
2017-05-04 19:12:44 +03:00
|
|
|
|
|
|
|
flash[:notice] = 'Success!'
|
|
|
|
redirect_to edit_admin_settings_path
|
2017-01-12 21:46:24 +02:00
|
|
|
end
|
|
|
|
|
2017-04-10 22:27:03 +03:00
|
|
|
private
|
2017-04-04 16:26:57 +03:00
|
|
|
|
2017-04-10 22:27:03 +03:00
|
|
|
def settings_params
|
2017-05-04 19:12:44 +03:00
|
|
|
params.permit(ADMIN_SETTINGS)
|
2017-04-10 22:27:03 +03:00
|
|
|
end
|
2017-04-20 18:18:09 +03:00
|
|
|
|
2017-05-04 19:12:44 +03:00
|
|
|
def value_for_update(key, value)
|
|
|
|
if BOOLEAN_SETTINGS.include?(key)
|
|
|
|
value == 'true'
|
2017-04-20 18:18:09 +03:00
|
|
|
else
|
2017-05-04 19:12:44 +03:00
|
|
|
value
|
2017-04-20 18:18:09 +03:00
|
|
|
end
|
|
|
|
end
|
2017-04-04 16:26:57 +03:00
|
|
|
end
|
2017-01-12 21:46:24 +02:00
|
|
|
end
|