2013-06-23 12:47:22 -04:00
|
|
|
class Projects::ServicesController < Projects::ApplicationController
|
2012-11-19 14:34:05 -05:00
|
|
|
# Authorize
|
|
|
|
before_filter :authorize_admin_project!
|
2013-05-22 09:58:44 -04:00
|
|
|
before_filter :service, only: [:edit, :update, :test]
|
2012-11-19 14:34:05 -05:00
|
|
|
|
|
|
|
respond_to :html
|
|
|
|
|
2013-06-19 15:44:57 -04:00
|
|
|
layout "project_settings"
|
|
|
|
|
2012-11-19 14:34:05 -05:00
|
|
|
def index
|
2013-05-22 09:58:44 -04:00
|
|
|
@project.build_missing_services
|
2013-05-22 10:59:59 -04:00
|
|
|
@services = @project.services.reload
|
2012-11-19 14:34:05 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def edit
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2014-06-26 07:49:09 -04:00
|
|
|
if @service.update_attributes(service_params)
|
2015-01-27 01:46:54 -05:00
|
|
|
if @service.activated? && @service.issue_tracker?
|
2015-01-26 14:39:32 -05:00
|
|
|
@project.update_attributes(issues_tracker: @service.to_param)
|
|
|
|
end
|
2015-01-20 19:47:29 -05:00
|
|
|
redirect_to edit_project_service_path(@project, @service.to_param),
|
|
|
|
notice: 'Successfully updated.'
|
2012-11-19 14:34:05 -05:00
|
|
|
else
|
|
|
|
render 'edit'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test
|
2015-01-12 12:08:25 -05:00
|
|
|
data = Gitlab::PushDataBuilder.build_sample(project, current_user)
|
2015-01-23 23:50:17 -05:00
|
|
|
if @service.execute(data)
|
|
|
|
message = { notice: 'We sent a request to the provided URL' }
|
|
|
|
else
|
|
|
|
message = { alert: 'We tried to send a request to the provided URL but error occured' }
|
|
|
|
end
|
2012-11-19 14:34:05 -05:00
|
|
|
|
2015-01-23 23:50:17 -05:00
|
|
|
redirect_to :back, message
|
2012-11-19 14:34:05 -05:00
|
|
|
end
|
2013-05-22 09:58:44 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def service
|
|
|
|
@service ||= @project.services.find { |service| service.to_param == params[:id] }
|
|
|
|
end
|
2014-06-26 07:49:09 -04:00
|
|
|
|
|
|
|
def service_params
|
|
|
|
params.require(:service).permit(
|
|
|
|
:title, :token, :type, :active, :api_key, :subdomain,
|
2014-10-06 05:51:15 -04:00
|
|
|
:room, :recipients, :project_url, :webhook,
|
2014-10-16 12:34:19 -04:00
|
|
|
:user_key, :device, :priority, :sound, :bamboo_url, :username, :password,
|
2015-01-20 19:47:29 -05:00
|
|
|
:build_key, :server, :teamcity_url, :build_type,
|
|
|
|
:description, :issues_url, :new_issue_url
|
2014-06-26 07:49:09 -04:00
|
|
|
)
|
|
|
|
end
|
2012-11-19 14:34:05 -05:00
|
|
|
end
|