2020-01-23 21:00:13 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ReactionValidator < ActiveModel::Validator
|
2021-10-14 19:04:57 +00:00
|
|
|
SUPPORTED_EMOJIS = Oj.load_file(Rails.root.join('app', 'javascript', 'mastodon', 'features', 'emoji', 'emoji_map.json').to_s).keys.freeze
|
2020-01-23 21:00:13 +00:00
|
|
|
|
2020-01-25 04:23:33 +00:00
|
|
|
LIMIT = 8
|
|
|
|
|
2020-01-23 21:00:13 +00:00
|
|
|
def validate(reaction)
|
2020-01-25 15:00:29 +00:00
|
|
|
return if reaction.name.blank?
|
2020-01-23 21:00:13 +00:00
|
|
|
|
2020-01-25 15:00:29 +00: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 21:00:13 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def unicode_emoji?(name)
|
|
|
|
SUPPORTED_EMOJIS.include?(name)
|
|
|
|
end
|
2020-01-25 04:23:33 +00:00
|
|
|
|
2020-01-25 15:00:29 +00:00
|
|
|
def new_reaction?(reaction)
|
2024-01-23 09:06:53 +00:00
|
|
|
!reaction.announcement.announcement_reactions.exists?(name: reaction.name)
|
2020-01-25 15:00:29 +00:00
|
|
|
end
|
|
|
|
|
2020-01-25 04:23:33 +00:00
|
|
|
def limit_reached?(reaction)
|
|
|
|
reaction.announcement.announcement_reactions.where.not(name: reaction.name).count('distinct name') >= LIMIT
|
|
|
|
end
|
2020-01-23 21:00:13 +00:00
|
|
|
end
|