module Webmention module Verification class BaseVerifier class << self attr_reader :mime_types end def initialize(response, target, **options) @response = response @target = target.to_str @options = options raise UnsupportedMimeTypeError, "Unsupported MIME Type: #{response.mime_type}" unless self.class.mime_types.include?(response.mime_type) end def results @results ||= parse_response_body end def verified? results.any? end private def response_body @response_body ||= @response.body.to_s end def target_regexp @target_regexp ||= /^#{target_regexp_str}$/ end def target_regexp_str return @target if @options.fetch(:strict, true) @target.sub(%r{https?://}, 'https?://') end end end end