summaryrefslogtreecommitdiff
path: root/app/controllers/projects/services_controller.rb
blob: daa5c88aae04354a10217e673c4488598e44d1f1 (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
52
53
54
55
56
57
class Projects::ServicesController < Projects::ApplicationController
  include ServiceParams

  # Authorize
  before_action :authorize_admin_project!
  before_action :service, only: [:edit, :update, :test]

  respond_to :html

  layout "project_settings"

  def edit
  end

  def update
    @service.attributes = service_params[:service]

    if @service.save(context: :manual_change)
      redirect_to(project_settings_integrations_path(@project), notice: success_message)
    else
      render 'edit'
    end
  end

  def test
    message = {}

    if @service.can_test? && @service.update_attributes(service_params[:service])
      data = @service.test_data(project, current_user)
      outcome = @service.test(data)

      unless outcome[:success]
        message = { error: true, message: 'Test failed.', service_response: outcome[:result].to_s }
      end

      status = :ok
    else
      status = :not_found
    end

    render json: message, status: status
  end

  private

  def success_message
    if @service.active?
      "#{@service.title} activated."
    else
      "#{@service.title} settings saved, but not activated."
    end
  end

  def service
    @service ||= @project.find_or_initialize_service(params[:id])
  end
end