Extract constants for column size length validation limits (#30045)

This commit is contained in:
Matt Jankowski 2024-04-24 04:56:28 -04:00 committed by GitHub
parent ebcf9840f4
commit f4a53f3fb4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 21 additions and 7 deletions

View file

@ -13,10 +13,12 @@
#
class AccountModerationNote < ApplicationRecord
CONTENT_SIZE_LIMIT = 500
belongs_to :account
belongs_to :target_account, class_name: 'Account'
scope :latest, -> { reorder('created_at DESC') }
validates :content, presence: true, length: { maximum: 500 }
validates :content, presence: true, length: { maximum: CONTENT_SIZE_LIMIT }
end

View file

@ -14,9 +14,11 @@
class AccountNote < ApplicationRecord
include RelationshipCacheable
COMMENT_SIZE_LIMIT = 2_000
belongs_to :account
belongs_to :target_account, class_name: 'Account'
validates :account_id, uniqueness: { scope: :target_account_id }
validates :comment, length: { maximum: 2_000 }
validates :comment, length: { maximum: COMMENT_SIZE_LIMIT }
end

View file

@ -19,12 +19,14 @@
class Invite < ApplicationRecord
include Expireable
COMMENT_SIZE_LIMIT = 420
belongs_to :user, inverse_of: :invites
has_many :users, inverse_of: :invite, dependent: nil
scope :available, -> { where(expires_at: nil).or(where('expires_at >= ?', Time.now.utc)) }
validates :comment, length: { maximum: 420 }
validates :comment, length: { maximum: COMMENT_SIZE_LIMIT }
before_validation :set_code

View file

@ -26,6 +26,8 @@ class Report < ApplicationRecord
include Paginable
include RateLimitable
COMMENT_SIZE_LIMIT = 1_000
rate_limit by: :account, family: :reports
belongs_to :account
@ -46,7 +48,7 @@ class Report < ApplicationRecord
# A report is considered local if the reporter is local
delegate :local?, to: :account
validates :comment, length: { maximum: 1_000 }, if: :local?
validates :comment, length: { maximum: COMMENT_SIZE_LIMIT }, if: :local?
validates :rule_ids, absence: true, if: -> { (category_changed? || rule_ids_changed?) && !violation? }
validate :validate_rule_ids, if: -> { (category_changed? || rule_ids_changed?) && violation? }

View file

@ -13,10 +13,12 @@
#
class ReportNote < ApplicationRecord
CONTENT_SIZE_LIMIT = 500
belongs_to :account
belongs_to :report, inverse_of: :notes, touch: true
scope :latest, -> { reorder(created_at: :desc) }
validates :content, presence: true, length: { maximum: 500 }
validates :content, presence: true, length: { maximum: CONTENT_SIZE_LIMIT }
end

View file

@ -15,9 +15,11 @@
class Rule < ApplicationRecord
include Discard::Model
TEXT_SIZE_LIMIT = 300
self.discard_column = :deleted_at
validates :text, presence: true, length: { maximum: 300 }
validates :text, presence: true, length: { maximum: TEXT_SIZE_LIMIT }
scope :ordered, -> { kept.order(priority: :asc, id: :asc) }
end

View file

@ -12,6 +12,8 @@
#
class UserInviteRequest < ApplicationRecord
TEXT_SIZE_LIMIT = 420
belongs_to :user, inverse_of: :invite_request
validates :text, presence: true, length: { maximum: 420 }
validates :text, presence: true, length: { maximum: TEXT_SIZE_LIMIT }
end