forked from discourse/discourse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrust_level.rb
54 lines (41 loc) · 1.27 KB
/
trust_level.rb
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
# frozen_string_literal: true
class InvalidTrustLevel < StandardError
end
class TrustLevel
def self.[](level)
raise InvalidTrustLevel if !valid?(level)
level
end
def self.levels
@levels ||= Enum.new(:newuser, :basic, :member, :regular, :leader, start: 0)
end
def self.valid?(level)
valid_range === level
end
def self.valid_range
(0..4)
end
def self.compare(current_level, level)
(current_level || 0) >= level
end
def self.name(level)
I18n.t("js.trust_levels.names.#{levels[level]}")
end
def self.calculate(user, use_previous_trust_level: false)
# First, use the manual locked level
return user.manual_locked_trust_level if user.manual_locked_trust_level.present?
# Then consider the group locked level (or the previous trust level)
granted_trust_level = user.group_granted_trust_level || 0
previous_trust_level = use_previous_trust_level ? find_previous_trust_level(user) : 0
[granted_trust_level, previous_trust_level, SiteSetting.default_trust_level].max
end
private
def self.find_previous_trust_level(user)
UserHistory
.where(action: UserHistory.actions[:change_trust_level])
.where(target_user_id: user.id)
.order(created_at: :desc)
.pick(:new_value)
.to_i
end
end