mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
15 lines
349 B
Ruby
15 lines
349 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class HtmlValidator < ActiveModel::EachValidator
|
||
|
def validate_each(record, attribute, value)
|
||
|
return if value.blank?
|
||
|
record.errors.add(attribute, I18n.t('html_validator.invalid_markup')) unless valid_html?(value)
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def valid_html?(str)
|
||
|
Nokogiri::HTML.fragment(str).to_s == str
|
||
|
end
|
||
|
end
|