debian-mirror-gitlab/app/controllers/projects/services_controller.rb

58 lines
1.2 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
class Projects::ServicesController < Projects::ApplicationController
2016-08-24 12:49:21 +05:30
include ServiceParams
2015-10-24 18:46:33 +05:30
2014-09-02 18:07:02 +05:30
# Authorize
2015-09-11 14:41:01 +05:30
before_action :authorize_admin_project!
before_action :service, only: [:edit, :update, :test]
2014-09-02 18:07:02 +05:30
respond_to :html
layout "project_settings"
def edit
end
def update
2017-09-10 17:25:29 +05:30
@service.attributes = service_params[:service]
2017-08-17 22:00:37 +05:30
if @service.save(context: :manual_change)
2017-09-10 17:25:29 +05:30
redirect_to(project_settings_integrations_path(@project), notice: success_message)
2014-09-02 18:07:02 +05:30
else
render 'edit'
end
end
def test
2017-09-10 17:25:29 +05:30
message = {}
if @service.can_test? && @service.update_attributes(service_params[:service])
data = @service.test_data(project, current_user)
outcome = @service.test(data)
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
unless outcome[:success]
message = { error: true, message: 'Test failed.', service_response: outcome[:result].to_s }
end
2016-08-24 12:49:21 +05:30
2017-09-10 17:25:29 +05:30
status = :ok
2015-04-26 12:48:37 +05:30
else
2017-09-10 17:25:29 +05:30
status = :not_found
2015-04-26 12:48:37 +05:30
end
2014-09-02 18:07:02 +05:30
2017-09-10 17:25:29 +05:30
render json: message, status: status
2014-09-02 18:07:02 +05:30
end
private
2017-09-10 17:25:29 +05:30
def success_message
if @service.active?
"#{@service.title} activated."
else
"#{@service.title} settings saved, but not activated."
end
end
2014-09-02 18:07:02 +05:30
def service
2017-08-17 22:00:37 +05:30
@service ||= @project.find_or_initialize_service(params[:id])
2014-09-02 18:07:02 +05:30
end
end