summaryrefslogtreecommitdiff
path: root/app/controllers/projects/services_controller.rb
blob: 704f8cc8a799eec167aabca7ee69fdf8eaa10301 (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
58
59
60
class Projects::ServicesController < Projects::ApplicationController
  include ServiceParams

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

  respond_to :html

  layout "project_settings"

  def edit
  end

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

  def test
    message = {}

    if @service.can_test?
      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 update_service
    @service.assign_attributes(service_params[:service])
  end

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