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

dependency_proxy_access.rb « concerns « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5036d0cfce47d95522fe1c0ec96b8bd57394769f (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
# frozen_string_literal: true

module DependencyProxyAccess
  extend ActiveSupport::Concern

  included do
    before_action :verify_dependency_proxy_enabled!
    before_action :authorize_read_dependency_proxy!
  end

  private

  def verify_dependency_proxy_enabled!
    render_404 unless group.dependency_proxy_feature_available?
  end

  def authorize_read_dependency_proxy!
    access_denied! unless can?(current_user, :read_dependency_proxy, group)
  end

  def authorize_admin_dependency_proxy!
    access_denied! unless can?(current_user, :admin_dependency_proxy, group)
  end
end