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

external_authorization.rb « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 25f8b7b3628424d2ff4a1ff7b70b6547bc17f0e3 (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

module Gitlab
  module ExternalAuthorization
    extend ExternalAuthorization::Config

    RequestFailed = Class.new(StandardError)

    def self.access_allowed?(user, label, project_path = nil)
      return true unless perform_check?
      return false unless user

      access_for_user_to_label(user, label, project_path).has_access?
    end

    def self.rejection_reason(user, label)
      return unless enabled?
      return unless user

      access_for_user_to_label(user, label, nil).reason
    end

    def self.access_for_user_to_label(user, label, project_path)
      if RequestStore.active?
        RequestStore.fetch("external_authorisation:user-#{user.id}:label-#{label}") do
          load_access(user, label, project_path)
        end
      else
        load_access(user, label, project_path)
      end
    end

    def self.load_access(user, label, project_path)
      access = ::Gitlab::ExternalAuthorization::Access.new(user, label).load!
      ::Gitlab::ExternalAuthorization::Logger.log_access(access, project_path)

      access
    end
  end
end