Class: Cohesion::Check

Inherits:
Object
  • Object
show all
Defined in:
lib/cohesion.rb

Class Method Summary collapse

Class Method Details

.rails_objectObject



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
61
62
63
64
65
66
# File 'lib/cohesion.rb', line 36

def self.rails_object
  puts "WARNING - not working yet..."
  root_path = Rails.root.to_s
  #app_name = Rails.application.name
  #puts "Checking #{app_name}..."
  app = CobwebSample::Application
  app.routes.default_url_options = { :host => 'xxx.com' }

  Dir.glob("app/controllers/**/*").each do |filename|
    controller_name = filename.gsub(".rb","").split("/")[-1].classify
    unless controller_name == "ApplicationController"
      puts "Processing #{controller_name}"
      controller = controller_name.constantize.new

      view = ActionView::Base.new(ActionController::Base.view_paths, {}, controller)

      view.view_paths = ActionController::Base.view_paths
      view.extend ApplicationHelper
      view.controller = controller
      view.class_eval do
        include ApplicationHelper
        include app.routes.url_helpers
      end
      begin
        puts view.render(:template => '/tests/index.html.erb')
      rescue => e
        puts "Error rendering view: #{e.message}" 
      end
    end
  end
end

.rails_textObject



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'lib/cohesion.rb', line 10

def self.rails_text
  puts "WARNING - not working yet..."
  root_path = Rails.root.to_s
  Dir.glob("**/*").each do |filename|
    unless File.directory?(filename) || File.binary?(filename) || filename.ends_with?(".rdb")
      f = File.open(filename, "r")
      content = f.read()
      f.close
      if content =~ /(https?:\/\/[a-zA-Z0-9\.\/\-_%&\?]+)/
        print "Checking #{$1} "
        begin
          status_code = Cobweb.new(:raise_exceptions => true).head($1)[:status_code].to_i
          if status_code != 200
            puts " [#{status_code}] \e[31m\u2717\e[0m"
          else
            puts "\e[32m\u2713\e[0m"
          end
        rescue SocketError
          status_code = 0
          puts " [DNS Failed] \e[31m\u2717\e[0m"
        end
      end
    end
  end
end

.site(url, options = {}) ⇒ Object



68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# File 'lib/cohesion.rb', line 68

def self.site(url, options={})
  errors = []
  failures = []

  options[:cache] = options[:cache].to_i if options[:cache]
  crawler_options = {:cache_type => :full, :crawl_linked_external => true, :store_inbound_links => true}.merge(options)
  puts crawler_options

  statistics = CobwebCrawler.new(crawler_options).crawl(url) do |page|
    print page[:url]
    if page[:status_code] == 404
      page = Cobweb.new(crawler_options.merge(:cache => nil)).get(page[:url])
    end
    if page[:status_code] > 399
      puts " [#{page[:status_code]}] \e[31m\u2717\e[0m"
      failures << page
    else
      puts " \e[32m\u2713\e[0m"
    end
  end

  puts statistics.redis.namespace
  puts statistics.get_statistics

  total_inbound_failures = 0
  total_failures = 0

  issues = []
  if failures.count == 0
    puts "All links working!"
  else
    puts "Failed urls:"
    failures.each do |f|
      inbound_links = statistics.inbound_links_for(f[:url])
      issues << {:issue => f, :inbound => inbound_links}

      total_inbound_failures += inbound_links.count
      total_failures += 1

      puts ""
      puts "#{f[:url]} [ #{f[:status_code]} ]"
      inbound_links.each do |inbound_link|
        puts "  - #{inbound_link}"
      end
    end

    puts ""
    puts "Total Failed URLs: #{total_failures}"
    puts "Total Inbound Failures (Pages linking to a 404): #{total_inbound_failures}"
    puts ""
  end
  puts

  return issues
end