Welcome to mirror list, hosted at ThFree Co, Russian Federation.

slacks_controller.rb « settings « projects « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4e55103cb4c4117b589cd28962dedcdbea6f3a92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# frozen_string_literal: true

module Projects
  module Settings
    class SlacksController < Projects::ApplicationController
      before_action :handle_oauth_error, only: :slack_auth
      before_action :check_oauth_state, only: :slack_auth
      before_action :authorize_admin_project!
      before_action :slack_integration, only: [:edit, :update]
      before_action :service, only: [:destroy, :edit, :update]

      layout 'project_settings'

      feature_category :integrations

      def slack_auth
        result = Projects::SlackApplicationInstallService.new(project, current_user, params).execute

        flash[:alert] = result[:message] if result[:status] == :error

        session[:slack_install_success] = true
        redirect_to_service_page
      end

      def destroy
        slack_integration.destroy

        redirect_to_service_page
      end

      def edit; end

      def update
        if slack_integration.update(slack_integration_params)
          flash[:notice] = 'The project alias was updated successfully'

          redirect_to_service_page
        else
          render :edit
        end
      end

      private

      def redirect_to_service_page
        redirect_to edit_project_settings_integration_path(
          project,
          project.gitlab_slack_application_integration || project.build_gitlab_slack_application_integration
        )
      end

      def check_oauth_state
        render_403 unless valid_authenticity_token?(session, params[:state])

        true
      end

      def handle_oauth_error
        return unless params[:error] == 'access_denied'

        flash[:alert] = 'Access denied'
        redirect_to_service_page
      end

      def slack_integration
        @slack_integration ||= project.gitlab_slack_application_integration.slack_integration
      end

      def service
        @service = project.gitlab_slack_application_integration
      end

      def slack_integration_params
        params.require(:slack_integration).permit(:alias)
      end
    end
  end
end