Add additional limits on sending messages
Additional limits apply to new accounts and accounts with unresolved issues reported against them. Fixes #3135
This commit is contained in:
parent
41f95466fa
commit
25510b6616
3 changed files with 11 additions and 2 deletions
|
@ -296,6 +296,15 @@ class User < ApplicationRecord
|
|||
digest.hexdigest
|
||||
end
|
||||
|
||||
def max_messages_per_hour
|
||||
account_age_in_seconds = Time.now.utc - creation_time
|
||||
account_age_in_hours = account_age_in_seconds / 3600
|
||||
recent_messages = messages.where("sent_on >= ?", Time.now.utc - 3600).count
|
||||
active_reports = issues.with_status(:open).sum(:reports_count)
|
||||
max_messages = account_age_in_hours.ceil + recent_messages - active_reports * 10
|
||||
max_messages.clamp(0, Settings.max_messages_per_hour)
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def set_defaults
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue