2018-07-24 06:00:56 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-29 14:57:59 -04:00
|
|
|
require_dependency 'declarative_policy'
|
2016-08-16 15:55:44 -04:00
|
|
|
|
2017-04-06 17:06:42 -04:00
|
|
|
class BasePolicy < DeclarativePolicy::Base
|
|
|
|
desc "User is an instance admin"
|
|
|
|
with_options scope: :user, score: 0
|
|
|
|
condition(:admin) { @user&.admin? }
|
2016-08-11 18:12:52 -04:00
|
|
|
|
2019-04-11 11:21:18 -04:00
|
|
|
desc "User is blocked"
|
|
|
|
with_options scope: :user, score: 0
|
|
|
|
condition(:blocked) { @user&.blocked? }
|
|
|
|
|
2018-12-18 11:18:09 -05:00
|
|
|
desc "User has access to all private groups & projects"
|
|
|
|
with_options scope: :user, score: 0
|
|
|
|
condition(:full_private_access) { @user&.full_private_access? }
|
|
|
|
|
2017-04-06 17:06:42 -04:00
|
|
|
with_options scope: :user, score: 0
|
|
|
|
condition(:external_user) { @user.nil? || @user.external? }
|
2016-08-12 14:36:16 -04:00
|
|
|
|
2017-04-06 17:06:42 -04:00
|
|
|
with_options scope: :user, score: 0
|
|
|
|
condition(:can_create_group) { @user&.can_create_group }
|
2017-06-29 03:43:41 -04:00
|
|
|
|
2017-06-30 09:29:34 -04:00
|
|
|
desc "The application is restricted from public visibility"
|
|
|
|
condition(:restricted_public_level, scope: :global) do
|
2017-08-31 05:47:03 -04:00
|
|
|
Gitlab::CurrentSettings.current_application_settings.restricted_visibility_levels.include?(Gitlab::VisibilityLevel::PUBLIC)
|
2017-06-29 03:43:41 -04:00
|
|
|
end
|
2017-12-11 09:21:06 -05:00
|
|
|
|
2019-04-09 11:38:58 -04:00
|
|
|
condition(:external_authorization_enabled, scope: :global, score: 0) do
|
|
|
|
::Gitlab::ExternalAuthorization.perform_check?
|
|
|
|
end
|
|
|
|
|
|
|
|
rule { external_authorization_enabled & ~full_private_access }.policy do
|
|
|
|
prevent :read_cross_project
|
|
|
|
end
|
|
|
|
|
2017-12-11 09:21:06 -05:00
|
|
|
rule { default }.enable :read_cross_project
|
2016-08-11 18:12:52 -04:00
|
|
|
end
|