Sha256: 8c3015b755ccb3e725708f92ac3e07d20aed22ae85b47c5a169d27635cea4cfb

Contents?: true

Size: 924 Bytes

Versions: 13

Compression:

Stored size: 924 Bytes

Contents

module Nanoc::Extra::Checking::Checks
  # A check that verifies HTML files do not reference external resources with
  # URLs that would trigger "mixed content" warnings.
  #
  # @api private
  class MixedContent < ::Nanoc::Extra::Checking::Check
    PROTOCOL_PATTERN = /^(\w+):\/\//

    def run
      filenames = output_filenames.select { |f| File.extname(f) == '.html' }
      resource_uris_with_filenames = ::Nanoc::Extra::LinkCollector.new(filenames).filenames_per_resource_uri

      resource_uris_with_filenames.each_pair do |uri, fns|
        next unless guaranteed_insecure?(uri)
        fns.each do |filename|
          add_issue(
            "mixed content include: #{uri}",
            subject: filename,
          )
        end
      end
    end

    private

    def guaranteed_insecure?(href)
      protocol = PROTOCOL_PATTERN.match(href)

      protocol && protocol[1].casecmp('http').zero?
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
nanoc-4.3.7 lib/nanoc/extra/checking/checks/mixed_content.rb
nanoc-4.3.6 lib/nanoc/extra/checking/checks/mixed_content.rb
nanoc-4.3.5 lib/nanoc/extra/checking/checks/mixed_content.rb
nanoc-4.3.4 lib/nanoc/extra/checking/checks/mixed_content.rb
nanoc-4.3.3 lib/nanoc/extra/checking/checks/mixed_content.rb
nanoc-4.3.2 lib/nanoc/extra/checking/checks/mixed_content.rb
nanoc-4.3.1 lib/nanoc/extra/checking/checks/mixed_content.rb
nanoc-4.3.0 lib/nanoc/extra/checking/checks/mixed_content.rb
nanoc-4.2.4 lib/nanoc/extra/checking/checks/mixed_content.rb
nanoc-4.2.3 lib/nanoc/extra/checking/checks/mixed_content.rb
nanoc-4.2.2 lib/nanoc/extra/checking/checks/mixed_content.rb
nanoc-4.2.1 lib/nanoc/extra/checking/checks/mixed_content.rb
nanoc-4.2.0 lib/nanoc/extra/checking/checks/mixed_content.rb