Sha256: 3686869f2d7813b0c9ecc1de371b5eb3cc2cd1185965c1d1650c0a4da4b42501

Contents?: true

Size: 1.28 KB

Versions: 4

Compression:

Stored size: 1.28 KB

Contents

module CMSScanner
  module Finders
    class Finder
      # Module to provide an easy way to enumerate items such as plugins, themes etc
      module Enumerator
        # @param [ Hash ] The target urls
        # @param [ Hash ] opts
        # @option opts [ Boolean ] :show_progression Wether or not to display the progress bar
        # @option opts [ Regexp ] :exclude_content
        #
        # @yield [ Typhoeus::Response, String ]
        def enumerate(target_urls, opts = {})
          create_progress_bar(opts.merge(total: target_urls.size))

          target_urls.each do |url, id|
            request = browser.forge_request(url, request_params)

            request.on_complete do |res|
              progress_bar.increment

              next if target.homepage_or_404?(res)
              next if opts[:exclude_content] && res.body.match(opts[:exclude_content])

              yield res, id
            end

            hydra.queue(request)
          end

          hydra.run
        end

        # @return [ Hash ]
        def request_params
          # disabling the cache, as it causes a 'stack level too deep' exception
          # with a large number of requests :/
          # See https://github.com/typhoeus/typhoeus/issues/408
          { cache_ttl: 0 }
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
cms_scanner-0.0.39.3 lib/cms_scanner/finders/finder/enumerator.rb
cms_scanner-0.0.39.2 lib/cms_scanner/finders/finder/enumerator.rb
cms_scanner-0.0.39.1 lib/cms_scanner/finders/finder/enumerator.rb
cms_scanner-0.0.39.0 lib/cms_scanner/finders/finder/enumerator.rb