66 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Ruby
		
	
	
	
class Projects::ServicesController < Projects::ApplicationController
 | 
						|
  ALLOWED_PARAMS = [:title, :token, :type, :active, :api_key, :api_version, :subdomain,
 | 
						|
                    :room, :recipients, :project_url, :webhook,
 | 
						|
                    :user_key, :device, :priority, :sound, :bamboo_url, :username, :password,
 | 
						|
                    :build_key, :server, :teamcity_url, :drone_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,
 | 
						|
                    :notify, :color,
 | 
						|
                    :server_host, :server_port, :default_irc_uri, :enable_ssl_verification]
 | 
						|
  # Authorize
 | 
						|
  before_action :authorize_admin_project!
 | 
						|
  before_action :service, only: [:edit, :update, :test]
 | 
						|
 | 
						|
  respond_to :html
 | 
						|
 | 
						|
  layout "project_settings"
 | 
						|
 | 
						|
  def index
 | 
						|
    @project.build_missing_services
 | 
						|
    @services = @project.services.visible.reload
 | 
						|
  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.')
 | 
						|
      )
 | 
						|
    else
 | 
						|
      render 'edit'
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  def test
 | 
						|
    data = Gitlab::PushDataBuilder.build_sample(project, current_user)
 | 
						|
    outcome = @service.test(data)
 | 
						|
    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
 | 
						|
 | 
						|
    redirect_to :back, message
 | 
						|
  end
 | 
						|
 | 
						|
  private
 | 
						|
 | 
						|
  def service
 | 
						|
    @service ||= @project.services.find { |service| service.to_param == params[:id] }
 | 
						|
  end
 | 
						|
 | 
						|
  def service_params
 | 
						|
    service_params = params.require(:service).permit(ALLOWED_PARAMS)
 | 
						|
    service_params.delete("password") if service_params["password"].blank?
 | 
						|
    service_params
 | 
						|
  end
 | 
						|
end
 |