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

events.rb « slack « integrations « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6227b75a9d747b5c2317b68eacdb1bde70263678 (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
# frozen_string_literal: true

# This API endpoint handles all events sent from Slack once a Slack
# workspace has installed the GitLab Slack app.
#
# See https://api.slack.com/apis/connections/events-api.
module API
  class Integrations
    module Slack
      class Events < ::API::Base
        feature_category :integrations

        before { verify_slack_request! }

        helpers do
          def verify_slack_request!
            unauthorized! unless Request.verify!(request)
          end
        end

        namespace 'integrations/slack' do
          post :events do
            type = params['type']
            raise ArgumentError, "Unable to handle event type: '#{type}'" unless type == 'url_verification'

            status :ok
            UrlVerification.call(params)
          rescue ArgumentError => e
            # Track the error, but respond with a `2xx` because we don't want to risk
            # Slack rate-limiting, or disabling our app, due to error responses.
            # See https://api.slack.com/apis/connections/events-api.
            Gitlab::ErrorTracking.track_exception(e)

            no_content!
          end
        end
      end
    end
  end
end