about summary refs log tree commit diff
path: root/app/validators/html_validator.rb
blob: b7caee5a9e4a42e13691119715b9e96d2a12dc5b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

class HtmlValidator < ActiveModel::EachValidator
  def validate_each(record, attribute, value)
    return if value.blank?
    errors = html_errors(value)
    unless errors.empty?
      record.errors.add(attribute, I18n.t('html_validator.invalid_markup', error: errors.first.to_s))
    end
  end

  private

  def html_errors(str)
    fragment = Nokogiri::HTML.fragment(str)
    fragment.errors
  end
end