mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-12 01:07:09 +02:00
50 lines
1.1 KiB
Ruby
50 lines
1.1 KiB
Ruby
module SettingConcern
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
before_action :login_required
|
|
before_action :find_fluentd
|
|
helper_method :target_plugin_name, :plugin_setting_form_action_url
|
|
end
|
|
|
|
|
|
def show
|
|
@setting = target_class.new(initial_params)
|
|
render "shared/settings/show"
|
|
end
|
|
|
|
def finish
|
|
@setting = target_class.new(setting_params)
|
|
unless @setting.valid?
|
|
return render "shared/settings/show"
|
|
end
|
|
|
|
@fluentd.agent.config_append @setting.to_config
|
|
if @fluentd.agent.running?
|
|
unless @fluentd.agent.restart
|
|
@setting.errors.add(:base, @fluentd.agent.log_tail(1).first)
|
|
return render "shared/settings/show"
|
|
end
|
|
end
|
|
redirect_to daemon_setting_path(@fluentd)
|
|
end
|
|
|
|
private
|
|
|
|
def setting_params
|
|
params.require(target_class.to_s.underscore.gsub("/", "_")).permit(*target_class.const_get(:KEYS))
|
|
end
|
|
|
|
def initial_params
|
|
target_class.initial_params
|
|
end
|
|
|
|
def target_plugin_name
|
|
target_class.to_s.split("::").last.underscore
|
|
end
|
|
|
|
def plugin_setting_form_action_url(*args)
|
|
send("finish_daemon_setting_#{target_plugin_name}_path", *args)
|
|
end
|
|
end
|