gitlab-org--gitlab-foss/app/controllers/projects/services_controller.rb

61 lines
1.2 KiB
Ruby
Raw Normal View History

class Projects::ServicesController < Projects::ApplicationController
include ServiceParams
2012-11-19 19:34:05 +00:00
# Authorize
before_action :authorize_admin_project!
before_action :service, only: [:edit, :update, :test]
2017-06-02 11:44:04 +00:00
before_action :update_service, only: [:update, :test]
2012-11-19 19:34:05 +00:00
respond_to :html
2013-06-19 19:44:57 +00:00
layout "project_settings"
2012-11-19 19:34:05 +00:00
def edit
end
def update
if @service.save(context: :manual_change)
redirect_to(project_settings_integrations_path(@project), notice: success_message)
2012-11-19 19:34:05 +00:00
else
render 'edit'
end
end
def test
message = {}
if @service.can_test?
data = @service.test_data(project, current_user)
outcome = @service.test(data)
2016-07-12 21:19:47 +00:00
unless outcome[:success]
message = { error: true, message: 'Test failed.', service_response: outcome[:result].to_s }
end
status = :ok
else
status = :not_found
end
2012-11-19 19:34:05 +00:00
render json: message, status: status
2012-11-19 19:34:05 +00:00
end
2013-05-22 13:58:44 +00:00
private
def success_message
if @service.active?
"#{@service.title} activated."
else
"#{@service.title} settings saved, but not activated."
end
end
2017-06-02 11:44:04 +00:00
def update_service
@service.assign_attributes(service_params[:service])
end
2013-05-22 13:58:44 +00:00
def service
@service ||= @project.find_or_initialize_service(params[:id])
2013-05-22 13:58:44 +00:00
end
2012-11-19 19:34:05 +00:00
end