This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-01-24 15:49:08 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class StatusLengthValidator < ActiveModel::Validator
|
|
|
|
MAX_CHARS = 500
|
|
|
|
|
|
|
|
def validate(status)
|
|
|
|
return unless status.local? && !status.reblog?
|
2017-07-28 15:06:29 -07:00
|
|
|
status.errors.add(:text, I18n.t('statuses.over_character_limit', max: MAX_CHARS)) if too_long?(status)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def too_long?(status)
|
|
|
|
countable_length(status) > MAX_CHARS
|
|
|
|
end
|
|
|
|
|
|
|
|
def countable_length(status)
|
|
|
|
total_text(status).mb_chars.grapheme_length
|
|
|
|
end
|
|
|
|
|
|
|
|
def total_text(status)
|
|
|
|
[status.spoiler_text, countable_text(status)].join
|
|
|
|
end
|
|
|
|
|
|
|
|
def countable_text(status)
|
|
|
|
status.text.dup.tap do |new_text|
|
2017-07-30 20:06:20 -07:00
|
|
|
new_text.gsub!(FetchLinkCardService::URL_PATTERN, 'x' * 23)
|
2017-07-28 15:06:29 -07:00
|
|
|
new_text.gsub!(Account::MENTION_RE, '@\2')
|
|
|
|
end
|
2017-01-24 15:49:08 -08:00
|
|
|
end
|
|
|
|
end
|