2021-02-22 17:27:13 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module DependencyProxy
|
|
|
|
module GroupAccess
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
|
|
|
before_action :verify_dependency_proxy_enabled!
|
|
|
|
before_action :authorize_read_dependency_proxy!
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def verify_dependency_proxy_enabled!
|
2021-10-27 15:23:28 +05:30
|
|
|
render_404 unless group&.dependency_proxy_feature_available?
|
2021-02-22 17:27:13 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def authorize_read_dependency_proxy!
|
2021-10-27 15:23:28 +05:30
|
|
|
access_denied! unless can?(auth_user, :read_dependency_proxy, group)
|
2021-02-22 17:27:13 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def authorize_admin_dependency_proxy!
|
2021-10-27 15:23:28 +05:30
|
|
|
access_denied! unless can?(auth_user, :admin_dependency_proxy, group)
|
2021-02-22 17:27:13 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|