debian-mirror-gitlab/app/policies/global_policy.rb

112 lines
2.7 KiB
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2016-09-29 09:46:39 +05:30
class GlobalPolicy < BasePolicy
2017-09-10 17:25:29 +05:30
desc "User is an internal user"
with_options scope: :user, score: 0
2018-10-15 14:42:47 +05:30
condition(:internal) { @user&.internal? }
2017-09-10 17:25:29 +05:30
desc "User's access has been locked"
with_options scope: :user, score: 0
2018-10-15 14:42:47 +05:30
condition(:access_locked) { @user&.access_locked? }
2017-09-10 17:25:29 +05:30
2018-10-15 14:42:47 +05:30
condition(:can_create_fork, scope: :user) { @user && @user.manageable_namespaces.any? { |namespace| @user.can?(:create_projects, namespace) } }
condition(:required_terms_not_accepted, scope: :user, score: 0) do
@user&.required_terms_not_accepted?
end
2018-03-17 18:26:18 +05:30
2018-11-18 11:00:15 +05:30
condition(:private_instance_statistics, score: 0) { Gitlab::CurrentSettings.instance_statistics_visibility_private? }
2020-04-22 19:07:51 +05:30
condition(:project_bot, scope: :user) { @user&.project_bot? }
2020-05-24 23:13:21 +05:30
condition(:migration_bot, scope: :user) { @user&.migration_bot? }
2020-04-22 19:07:51 +05:30
2018-11-18 11:00:15 +05:30
rule { admin | (~private_instance_statistics & ~anonymous) }
.enable :read_instance_statistics
2017-09-10 17:25:29 +05:30
rule { anonymous }.policy do
prevent :log_in
prevent :receive_notifications
prevent :use_quick_actions
prevent :create_group
end
rule { default }.policy do
enable :log_in
enable :access_api
enable :access_git
enable :receive_notifications
enable :use_quick_actions
2019-07-31 22:56:46 +05:30
enable :use_slash_commands
2017-09-10 17:25:29 +05:30
end
2020-02-01 01:16:34 +05:30
rule { inactive }.policy do
prevent :log_in
prevent :access_api
prevent :access_git
prevent :use_slash_commands
end
2017-09-10 17:25:29 +05:30
rule { blocked | internal }.policy do
prevent :log_in
prevent :access_api
prevent :receive_notifications
2019-07-31 22:56:46 +05:30
prevent :use_slash_commands
2017-09-10 17:25:29 +05:30
end
2020-05-24 23:13:21 +05:30
rule { blocked | (internal & ~migration_bot) }.policy do
prevent :access_git
end
2020-04-22 19:07:51 +05:30
rule { project_bot }.policy do
prevent :log_in
prevent :receive_notifications
end
2019-12-21 20:55:43 +05:30
rule { deactivated }.policy do
prevent :access_git
prevent :access_api
prevent :receive_notifications
prevent :use_slash_commands
end
2018-10-15 14:42:47 +05:30
rule { required_terms_not_accepted }.policy do
prevent :access_api
prevent :access_git
end
2017-09-10 17:25:29 +05:30
rule { can_create_group }.policy do
enable :create_group
end
2020-05-24 23:13:21 +05:30
rule { can?(:create_group) }.policy do
enable :create_group_with_default_branch_protection
end
2018-03-17 18:26:18 +05:30
rule { can_create_fork }.policy do
enable :create_fork
end
2017-09-10 17:25:29 +05:30
rule { access_locked }.policy do
prevent :log_in
2019-07-31 22:56:46 +05:30
prevent :use_slash_commands
2017-09-10 17:25:29 +05:30
end
rule { ~(anonymous & restricted_public_level) }.policy do
enable :read_users_list
2016-09-29 09:46:39 +05:30
end
2018-03-17 18:26:18 +05:30
2019-07-07 11:18:12 +05:30
rule { ~anonymous }.policy do
enable :read_instance_metadata
2020-03-13 15:44:24 +05:30
enable :create_snippet
2019-07-07 11:18:12 +05:30
end
2018-03-17 18:26:18 +05:30
rule { admin }.policy do
enable :read_custom_attribute
enable :update_custom_attribute
end
2020-01-01 13:55:28 +05:30
2020-03-13 15:44:24 +05:30
rule { external_user }.prevent :create_snippet
2016-09-29 09:46:39 +05:30
end
2019-12-04 20:38:33 +05:30
GlobalPolicy.prepend_if_ee('EE::GlobalPolicy')