2017-01-24 18:49:08 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class StatusLengthValidator < ActiveModel::Validator
|
|
|
|
MAX_CHARS = 500
|
|
|
|
|
|
|
|
def validate(status)
|
|
|
|
return unless status.local? && !status.reblog?
|
2018-12-28 02:18:47 -05:00
|
|
|
|
|
|
|
@status = status
|
|
|
|
status.errors.add(:text, I18n.t('statuses.over_character_limit', max: MAX_CHARS)) if too_long?
|
2017-07-28 18:06:29 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2018-12-28 02:18:47 -05:00
|
|
|
def too_long?
|
|
|
|
countable_length > MAX_CHARS
|
2017-07-28 18:06:29 -04:00
|
|
|
end
|
|
|
|
|
2018-12-28 02:18:47 -05:00
|
|
|
def countable_length
|
|
|
|
total_text.mb_chars.grapheme_length
|
2017-07-28 18:06:29 -04:00
|
|
|
end
|
|
|
|
|
2018-12-28 02:18:47 -05:00
|
|
|
def total_text
|
|
|
|
[@status.spoiler_text, countable_text].join
|
2017-07-28 18:06:29 -04:00
|
|
|
end
|
|
|
|
|
2018-12-28 02:18:47 -05:00
|
|
|
def countable_text
|
|
|
|
return '' if @status.text.nil?
|
2018-02-04 06:32:41 -05:00
|
|
|
|
2018-12-28 02:18:47 -05:00
|
|
|
@status.text.dup.tap do |new_text|
|
2017-07-30 23:06:20 -04:00
|
|
|
new_text.gsub!(FetchLinkCardService::URL_PATTERN, 'x' * 23)
|
2017-07-28 18:06:29 -04:00
|
|
|
new_text.gsub!(Account::MENTION_RE, '@\2')
|
|
|
|
end
|
2017-01-24 18:49:08 -05:00
|
|
|
end
|
|
|
|
end
|