Class: LinkCheck

Inherits:
HTMLProofer::Check show all
Includes:
HTMLProofer::Utils
Defined in:
lib/html-proofer/check/links.rb

Defined Under Namespace

Classes: XpathFunctions

Constant Summary

Constants included from HTMLProofer::Utils

HTMLProofer::Utils::STORAGE_DIR

Instance Attribute Summary

Attributes inherited from HTMLProofer::Check

#element, #external_urls, #html, #issues, #node, #options, #path, #src

Instance Method Summary collapse

Methods included from HTMLProofer::Utils

clean_content, create_nokogiri, #pluralize, swap

Methods inherited from HTMLProofer::Check

#add_issue, #add_path_for_url, #add_to_external_urls, #blank?, #create_element, #initialize, subchecks

Constructor Details

This class inherits a constructor from HTMLProofer::Check

Instance Method Details

#check_schemes(link, line, content) ⇒ Object



62
63
64
65
66
67
68
69
70
71
72
# File 'lib/html-proofer/check/links.rb', line 62

def check_schemes(link, line, content)
  case link.scheme
  when 'mailto'
    handle_mailto(link, line, content)
  when 'tel'
    handle_tel(link, line, content)
  when 'http'
    return unless @options[:enforce_https]
    add_issue("#{link.href} is not an HTTPS link", line: line, content: content)
  end
end


96
97
98
99
100
101
102
103
104
105
# File 'lib/html-proofer/check/links.rb', line 96

def external_link_check(link, line, content)
  if !link.exists?
    add_issue("trying to find hash of #{link.href}, but #{link.absolute_path} does not exist", line: line, content: content)
  else
    target_html = create_nokogiri link.absolute_path
    unless hash_check target_html, link.hash
      add_issue("linking to #{link.href}, but #{link.hash} does not exist", line: line, content: content)
    end
  end
end

#handle_hash(link, line, content) ⇒ Object



86
87
88
89
90
91
92
93
94
# File 'lib/html-proofer/check/links.rb', line 86

def handle_hash(link, line, content)
  if link.internal?
    unless hash_check @html, link.hash
      add_issue("linking to internal hash ##{link.hash} that does not exist", line: line, content: content)
    end
  elsif link.external?
    external_link_check(link, line, content)
  end
end

#handle_mailto(link, line, content) ⇒ Object



74
75
76
77
78
79
80
# File 'lib/html-proofer/check/links.rb', line 74

def handle_mailto(link, line, content)
  if link.path.empty?
    add_issue("#{link.href} contains no email address", line: line, content: content)
  elsif !link.path.include?('@')
    add_issue("#{link.href} contains an invalid email address", line: line, content: content)
  end
end

#handle_tel(link, line, content) ⇒ Object



82
83
84
# File 'lib/html-proofer/check/links.rb', line 82

def handle_tel(link, line, content)
  add_issue("#{link.href} contains no phone number", line: line, content: content) if link.path.empty?
end

#hash_check(html, href_hash) ⇒ Object



107
108
109
110
111
112
113
114
# File 'lib/html-proofer/check/links.rb', line 107

def hash_check(html, href_hash)
  decoded_href_hash = URI.decode(href_hash)
  html.xpath("//*[case_insensitive_equals(@id, '#{href_hash}')]", \
             "//*[case_insensitive_equals(@name, '#{href_hash}')]", \
             "//*[case_insensitive_equals(@id, '#{decoded_href_hash}')]", \
             "//*[case_insensitive_equals(@name, '#{decoded_href_hash}')]", \
             XpathFunctions.new).length > 0
end

#missing_href?Boolean

Returns:

  • (Boolean)


4
5
6
# File 'lib/html-proofer/check/links.rb', line 4

def missing_href?
  blank?(@link.href) && blank?(@link.name) && blank?(@link.id)
end

#placeholder?Boolean

Returns:

  • (Boolean)


8
9
10
# File 'lib/html-proofer/check/links.rb', line 8

def placeholder?
  (!blank?(@link.id) || !blank?(@link.name)) && @link.href.nil?
end

#runObject



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'lib/html-proofer/check/links.rb', line 12

def run
  @html.css('a, link').each do |node|
    @link = create_element(node)
    line = node.line
    content = node.to_s

    next if @link.ignore?

    next if placeholder?
    next if @link.allow_hash_href? && @link.href == '#'

    # is it even a valid URL?
    unless @link.valid?
      add_issue("#{@link.href} is an invalid URL", line: line, content: content)
      next
    end

    check_schemes(@link, line, content)

    # is there even an href?
    if missing_href?
      # HTML5 allows dropping the href: http://git.io/vBX0z
      next if @html.internal_subset.name == 'html' && @html.internal_subset.external_id.nil?
      add_issue('anchor has no href attribute', line: line, content: content)
      next
    end

    # intentionally here because we still want valid? & missing_href? to execute
    next if @link.non_http_remote?
    # does the file even exist?
    if @link.remote?
      add_to_external_urls(@link.href)
      next
    elsif !@link.internal? && !@link.exists?
      add_issue("internally linking to #{@link.href}, which does not exist", line: line, content: content)
    end

    # does the local directory have a trailing slash?
    if @link.unslashed_directory? @link.absolute_path
      add_issue("internally linking to a directory #{@link.absolute_path} without trailing slash", line: line, content: content)
      next
    end

    # verify the target hash
    handle_hash(@link, line, content) if @link.hash
  end

  external_urls
end