mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 15:25:35 +08:00
25a226279a
The #pluck_first freedom patch, first introduced by @danielwaterworth has served us well, and is used widely throughout both core and plugins. It seems to have been a common enough use case that Rails 6 introduced it's own method #pick with the exact same implementation. This allows us to retire the freedom patch and switch over to the built-in ActiveRecord method. There is no replacement for #pluck_first!, but a quick search shows we are using this in a very limited capacity, and in some cases incorrectly (by assuming a nil return rather than an exception), which can quite easily be replaced with #pick plus some extra handling.
55 lines
1.2 KiB
Ruby
55 lines
1.2 KiB
Ruby
# 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].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
|