2020-01-23 22:00:13 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ReactionValidator < ActiveModel::Validator
|
2021-10-14 21:04:57 +02:00
|
|
|
SUPPORTED_EMOJIS = Oj.load_file(Rails.root.join('app', 'javascript', 'mastodon', 'features', 'emoji', 'emoji_map.json').to_s).keys.freeze
|
2020-01-23 22:00:13 +01:00
|
|
|
|
2020-01-25 05:23:33 +01:00
|
|
|
LIMIT = 8
|
|
|
|
|
2020-01-23 22:00:13 +01:00
|
|
|
def validate(reaction)
|
2020-01-25 16:00:29 +01:00
|
|
|
return if reaction.name.blank?
|
2020-01-23 22:00:13 +01:00
|
|
|
|
2020-01-25 16:00:29 +01:00
|
|
|
reaction.errors.add(:name, I18n.t('reactions.errors.unrecognized_emoji')) if reaction.custom_emoji_id.blank? && !unicode_emoji?(reaction.name)
|
|
|
|
reaction.errors.add(:base, I18n.t('reactions.errors.limit_reached')) if new_reaction?(reaction) && limit_reached?(reaction)
|
2020-01-23 22:00:13 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def unicode_emoji?(name)
|
|
|
|
SUPPORTED_EMOJIS.include?(name)
|
|
|
|
end
|
2020-01-25 05:23:33 +01:00
|
|
|
|
2020-01-25 16:00:29 +01:00
|
|
|
def new_reaction?(reaction)
|
|
|
|
!reaction.announcement.announcement_reactions.where(name: reaction.name).exists?
|
|
|
|
end
|
|
|
|
|
2020-01-25 05:23:33 +01:00
|
|
|
def limit_reached?(reaction)
|
|
|
|
reaction.announcement.announcement_reactions.where.not(name: reaction.name).count('distinct name') >= LIMIT
|
|
|
|
end
|
2020-01-23 22:00:13 +01:00
|
|
|
end
|