mirror of https://github.com/tootsuite/mastodon
18 lines
526 B
Ruby
18 lines
526 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class ReactionValidator < ActiveModel::Validator
|
||
|
SUPPORTED_EMOJIS = Oj.load(File.read(Rails.root.join('app', 'javascript', 'mastodon', 'features', 'emoji', 'emoji_map.json'))).keys.freeze
|
||
|
|
||
|
def validate(reaction)
|
||
|
return if reaction.name.blank? || reaction.custom_emoji_id.present?
|
||
|
|
||
|
reaction.errors.add(:name, I18n.t('reactions.errors.unrecognized_emoji')) unless unicode_emoji?(reaction.name)
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def unicode_emoji?(name)
|
||
|
SUPPORTED_EMOJIS.include?(name)
|
||
|
end
|
||
|
end
|