Sha256: ecff45e25b3ecd3a34166e00da48c489588153afef159feba98647ca139e090a

Contents?: true

Size: 722 Bytes

Versions: 3

Compression:

Stored size: 722 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

3 entries across 3 versions & 1 rubygems

Version Path
download_tv-2.6.6 lib/download_tv/grabbers/eztv.rb
download_tv-2.6.5 lib/download_tv/grabbers/eztv.rb
download_tv-2.6.4 lib/download_tv/grabbers/eztv.rb