Sha256: c427b730f62181bef1b8c46e90aa1affa533a009e2902db34a252be633892d1b

Contents?: true

Size: 756 Bytes

Versions: 4

Compression:

Stored size: 756 Bytes

Contents

# frozen_string_literal: true

module DownloadTV
  ##
  # ThePirateBay grabber
  class ThePirateBay < LinkGrabber
    def initialize(tpb_proxy = 'https://tpb30.ukpass.co/')
      proxy = tpb_proxy.gsub(%r{/+$}, '')

      super("#{proxy}/search/%s/0/7/0")
    end

    def get_links(show)
      search = format(@url, show)

      # Skip the header
      data = agent.get(search).search('#searchResult tr').drop 1

      raise NoTorrentsError if data.empty?

      # Second cell of each row contains links and name
      results = data.map { |d| d.search('td')[1] }

      names = results.collect { |i| i.search('.detName').text.strip }
      links = results.collect { |i| i.search('a')[1].attribute('href').text }

      names.zip(links)
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
download_tv-2.9.1 lib/download_tv/grabbers/tpb.rb
download_tv-2.9.0 lib/download_tv/grabbers/tpb.rb
download_tv-2.8.5 lib/download_tv/grabbers/tpb.rb
download_tv-2.8.3 lib/download_tv/grabbers/tpb.rb