2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-06-04 17:58:25 -04:00
|
|
|
class TopicTitleLengthValidator < ActiveModel::EachValidator
|
|
|
|
|
|
|
|
def validate_each(record, attribute, value)
|
2013-06-29 17:57:10 -04:00
|
|
|
title_validator(record).validate_each(record, attribute, value)
|
2013-06-04 17:58:25 -04:00
|
|
|
end
|
2013-06-29 17:57:10 -04:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2013-06-04 17:58:25 -04:00
|
|
|
end
|