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

60 lines
1.7 KiB
Ruby
Raw Normal View History

class Projects::ServicesController < Projects::ApplicationController
2012-11-19 19:34:05 +00:00
# Authorize
before_filter :authorize_admin_project!
2013-05-22 13:58:44 +00:00
before_filter :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
2013-05-22 13:58:44 +00:00
@project.build_missing_services
@services = @project.services.visible.reload
2012-11-19 19:34:05 +00:00
end
def edit
end
def update
if @service.update_attributes(service_params)
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
2015-01-12 17:08:25 +00:00
data = Gitlab::PushDataBuilder.build_sample(project, current_user)
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 an error occured' }
end
2012-11-19 19:34:05 +00:00
redirect_to :back, message
2012-11-19 19:34:05 +00:00
end
2013-05-22 13:58:44 +00:00
private
def service
@service ||= @project.services.find { |service| service.to_param == params[:id] }
end
def service_params
params.require(:service).permit(
:title, :token, :type, :active, :api_key, :subdomain,
2014-10-06 09:51:15 +00:00
:room, :recipients, :project_url, :webhook,
2014-10-16 16:34:19 +00:00
:user_key, :device, :priority, :sound, :bamboo_url, :username, :password,
:build_key, :server, :teamcity_url, :build_type,
:description, :issues_url, :new_issue_url, :restrict_to_branch, :channel,
:colorize_messages, :channels,
:push_events, :issues_events, :merge_requests_events, :tag_push_events,
:note_events, :send_from_committer_email, :disable_diffs, :external_wiki_url
)
end
2012-11-19 19:34:05 +00:00
end