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

51 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]
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 index
@services = @project.find_or_initialize_services
2012-11-19 19:34:05 +00:00
end
def edit
end
def update
2016-07-13 19:49:47 +00:00
if @service.update_attributes(service_params[:service])
redirect_to(
edit_namespace_project_service_path(@project.namespace, @project, @service.to_param),
notice: 'Successfully updated.'
)
2012-11-19 19:34:05 +00:00
else
render 'edit'
end
end
def test
2016-07-12 21:19:47 +00:00
data = @service.test_data(project, current_user)
outcome = @service.test(data)
2016-07-12 21:19:47 +00:00
if outcome[:success]
message = { notice: 'We sent a request to the provided URL' }
else
error_message = "We tried to send a request to the provided URL but an error occurred"
error_message << ": #{outcome[:result]}" if outcome[:result].present?
message = { alert: error_message }
end
2012-11-19 19:34:05 +00:00
redirect_back_or_default(options: message)
2012-11-19 19:34:05 +00:00
end
2013-05-22 13:58:44 +00:00
private
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