mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
65db262550
* Update twitter-text from 1.14 to 3.1.0 * Disable emoji parsing * Properly depend on twitter-text for url detection * Fix some URLs being wrongly detected client-side * Add test for server-side validation of non-autolinkable URLs * Fix server-side status length counting
42 lines
917 B
Ruby
42 lines
917 B
Ruby
# frozen_string_literal: true
|
|
|
|
class StatusLengthValidator < ActiveModel::Validator
|
|
MAX_CHARS = 500
|
|
URL_PATTERN = %r{
|
|
(?:
|
|
(#{Twitter::TwitterText::Regex[:valid_url_preceding_chars]})
|
|
(#{FetchLinkCardService::URL_PATTERN})
|
|
)
|
|
}iox
|
|
URL_PLACEHOLDER = "\1#{'x' * 23}"
|
|
|
|
def validate(status)
|
|
return unless status.local? && !status.reblog?
|
|
|
|
@status = status
|
|
status.errors.add(:text, I18n.t('statuses.over_character_limit', max: MAX_CHARS)) if too_long?
|
|
end
|
|
|
|
private
|
|
|
|
def too_long?
|
|
countable_length > MAX_CHARS
|
|
end
|
|
|
|
def countable_length
|
|
total_text.mb_chars.grapheme_length
|
|
end
|
|
|
|
def total_text
|
|
[@status.spoiler_text, countable_text].join
|
|
end
|
|
|
|
def countable_text
|
|
return '' if @status.text.nil?
|
|
|
|
@status.text.dup.tap do |new_text|
|
|
new_text.gsub!(URL_PATTERN, URL_PLACEHOLDER)
|
|
new_text.gsub!(Account::MENTION_RE, '@\2')
|
|
end
|
|
end
|
|
end
|