summaryrefslogtreecommitdiff
path: root/app/policies/concerns/policy_actor.rb
blob: 8fa09683b067459fbf9d1e21700e9293736141b9 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# frozen_string_literal: true

# Include this module to have an object respond to user messages without being
# a user.
#
# Use Case 1:
# Pass something else than the user to check policies. This defines several
# methods which the policy checker would call and check.
#
# Use Case 2:
# Access the API with non-user object such as deploy tokens. This defines
# several methods which the API auth flow would call.
module PolicyActor
  extend ActiveSupport::Concern

  def blocked?
    false
  end

  def admin?
    false
  end

  def external?
    false
  end

  def internal?
    false
  end

  def access_locked?
    false
  end

  def required_terms_not_accepted?
    false
  end

  def can_create_group
    false
  end

  def alert_bot?
    false
  end

  def support_bot?
    false
  end

  def security_bot?
    false
  end

  def automation_bot?
    false
  end

  def deactivated?
    false
  end

  def confirmation_required_on_sign_in?
    false
  end

  def can?(action, subject = :global)
    Ability.allowed?(self, action, subject)
  end

  def preferred_language
    nil
  end

  def requires_ldap_check?
    false
  end

  def try_obtain_ldap_lease
    nil
  end

  def can_read_all_resources?
    false
  end

  def password_expired_if_applicable?
    false
  end

  def from_ci_job_token?
    false
  end
end

PolicyActor.prepend_mod_with('PolicyActor')