This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2019-03-23 06:07:04 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class HtmlValidator < ActiveModel::EachValidator
|
2019-04-09 18:34:16 -07:00
|
|
|
ERROR_RE = /Opening and ending tag mismatch|Unexpected end tag/
|
|
|
|
|
2019-03-23 06:07:04 -07:00
|
|
|
def validate_each(record, attribute, value)
|
|
|
|
return if value.blank?
|
2019-04-09 18:34:16 -07:00
|
|
|
|
2019-03-26 09:33:26 -07:00
|
|
|
errors = html_errors(value)
|
2019-04-09 18:34:16 -07:00
|
|
|
|
|
|
|
record.errors.add(attribute, I18n.t('html_validator.invalid_markup', error: errors.first.to_s)) unless errors.empty?
|
2019-03-23 06:07:04 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2019-03-26 09:33:26 -07:00
|
|
|
def html_errors(str)
|
2019-04-09 18:34:16 -07:00
|
|
|
fragment = Nokogiri::HTML.fragment(options[:wrap_with] ? "<#{options[:wrap_with]}>#{str}</#{options[:wrap_with]}>" : str)
|
|
|
|
fragment.errors.select { |error| ERROR_RE =~ error.message }
|
2019-03-23 06:07:04 -07:00
|
|
|
end
|
|
|
|
end
|