Sha256: 971bbf1da6f920e3ba38f59ce2c2c4372421bd003e674269830b6a2a20a065f2

Contents?: true

Size: 721 Bytes

Versions: 6

Compression:

Stored size: 721 Bytes

Contents

# frozen_string_literal: true

module DownloadTV
  ##
  # EZTV.ag grabber
  class Eztv < LinkGrabber
    def initialize
      super('https://eztv.ag/search/%s')
    end

    def get_links(show)
      raw_data = agent.get(format(@url, show))
      raw_seeders = raw_data.search('td.forum_thread_post_end').map { |e| e.children[0].text.to_i }
      raw_links = raw_data.search('a.magnet').sort_by.with_index { |_, index| raw_seeders[index] }.reverse

      # EZTV shows 50 latest releases if it can't find the torrent
      raise NoTorrentsError if raw_links.size == 50

      raw_links.collect do |i|
        [i.attribute('title').text.chomp(' Magnet Link'),
         i.attribute('href').text]
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
download_tv-2.8.0 lib/download_tv/grabbers/eztv.rb
download_tv-2.7.0 lib/download_tv/grabbers/eztv.rb
download_tv-2.6.10 lib/download_tv/grabbers/eztv.rb
download_tv-2.6.9 lib/download_tv/grabbers/eztv.rb
download_tv-2.6.8 lib/download_tv/grabbers/eztv.rb
download_tv-2.6.7 lib/download_tv/grabbers/eztv.rb