summaryrefslogtreecommitdiff
path: root/app/controllers/admin/services_controller.rb
blob: 461335883325e2c7b33b29c83114ce6ff880e5db (plain)
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
class Admin::ServicesController < Admin::ApplicationController
  before_action :service, only: [:edit, :update]

  def index
    @services = services_templates
  end

  def edit
    unless service.present?
      redirect_to admin_application_settings_services_path,
        alert: "Service is unknown or it doesn't exist"
    end
  end

  def update
    if service.update_attributes(application_services_params[:service])
      redirect_to admin_application_settings_services_path,
        notice: 'Application settings saved successfully'
    else
      render :edit
    end
  end

  private

  def services_templates
    templates = []

    Service.available_services_names.each do |service_name|
      service_template = service_name.concat("_service").camelize.constantize
      templates << service_template.where(template: true).first_or_create
    end

    templates
  end

  def service
    @service ||= Service.where(id: params[:id], template: true).first
  end

  def application_services_params
    application_services_params = params.permit(:id,
      service: Projects::ServicesController::ALLOWED_PARAMS)
    if application_services_params[:service].is_a?(Hash)
      Projects::ServicesController::FILTER_BLANK_PARAMS.each do |param|
        application_services_params[:service].delete(param) if application_services_params[:service][param].blank? 
      end
    end
    application_services_params
  end
end