Class: NDD::UrlChecker::StatusDecorator

Inherits:
SimpleDelegator
  • Object
show all
Defined in:
lib/ndd/url_checker/status_decorator.rb

Overview

Decorate a [Status] for reporting.

Author:

  • David DIDIER

Instance Method Summary collapse

Instance Method Details

#code_as_cssObject



10
11
12
# File 'lib/ndd/url_checker/status_decorator.rb', line 10

def code_as_css
  code.to_s.gsub(/_/, '-')
end

#details_bodyObject



30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/ndd/url_checker/status_decorator.rb', line 30

def details_body
  case code
    when :direct then
      nil
    when :redirected then
      uris.map { |uri| "- #{uri}\n" }.join
    when :failed then
      return nil unless error
      return error.body if error.kind_of?(Net::HTTPResponse)
      return error.to_s
    when :too_many_redirects then
      uris.map { |uri| "- #{uri}\n" }.join
    when :unknown_host then
      uris.map { |uri| "- #{uri}\n" }.join
  end
end

#details_body_as_htmlObject



47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'lib/ndd/url_checker/status_decorator.rb', line 47

def details_body_as_html
  body = <<-HTML.gsub(/^ +/, '')
    <p><em>Status:</em> #{code}</p>
    <p><em>URIs:</em><p>
    <ol>#{uris.map { |uri| "<li>#{uri}</li>" }.join}</ol>
  HTML

  if error
    body += "<p><em>Error:</em> #{error.class.to_s}</p>"
    body += "<p><pre>#{error.body}</pre></p>" if error.kind_of?(Net::HTTPResponse)
  end

  body
end

#details_titleObject



14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/ndd/url_checker/status_decorator.rb', line 14

def details_title
  case code
    when :direct then
      nil
    when :redirected then
      uris.size - 1
    when :failed then
      return nil unless error
      return error.class.to_s
    when :too_many_redirects then
      uris.size - 1
    when :unknown_host then
      return uris.last
  end
end