mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
cdf20f4367
Conflicts: - `app/serializers/rest/instance_serializer.rb`: Upstream changed the fields returned by /api/v1/instance by adding a `configuration` field holding a lot of useful information making our `max_toot_chars` and `poll_limits` fields obsolete. Keeping those around for now for compatibility. - `app/validators/status_length_validator.rb`: No real conflict, just URL_PLACEHOLDER_CHARS introduced too close to MAX_CHARS which is defined differently in glitch-soc. Ported upstream changes.
38 lines
866 B
Ruby
38 lines
866 B
Ruby
# frozen_string_literal: true
|
|
|
|
class StatusLengthValidator < ActiveModel::Validator
|
|
MAX_CHARS = (ENV['MAX_TOOT_CHARS'] || 500).to_i
|
|
URL_PLACEHOLDER_CHARS = 23
|
|
URL_PLACEHOLDER = "\1#{'x' * URL_PLACEHOLDER_CHARS}"
|
|
|
|
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!(FetchLinkCardService::URL_PATTERN, URL_PLACEHOLDER)
|
|
new_text.gsub!(Account::MENTION_RE, '@\2')
|
|
end
|
|
end
|
|
end
|