mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:09:00 +08:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
25 lines
618 B
Ruby
25 lines
618 B
Ruby
# frozen_string_literal: true
|
|
|
|
class TopicTitleLengthValidator < ActiveModel::EachValidator
|
|
|
|
def validate_each(record, attribute, value)
|
|
title_validator(record).validate_each(record, attribute, value)
|
|
end
|
|
|
|
private
|
|
|
|
def title_validator(record)
|
|
length_range =
|
|
if record.user.try(:admin?)
|
|
1..SiteSetting.max_topic_title_length
|
|
elsif record.private_message?
|
|
SiteSetting.private_message_title_length
|
|
else
|
|
SiteSetting.topic_title_length
|
|
end
|
|
|
|
ActiveModel::Validations::LengthValidator.new(attributes: :title, in: length_range, allow_blank: true)
|
|
end
|
|
|
|
end
|