diff --git a/nova/engines/torrentz.py b/nova/engines/torrentz.py deleted file mode 100644 index 9399cdc..0000000 --- a/nova/engines/torrentz.py +++ /dev/null @@ -1,119 +0,0 @@ -#VERSION: 2.22 -#AUTHORS: Diego de las Heras (ngosang@hotmail.es) - -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# * Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# * Redistributions in binary form must reproduce the above copyright -# notice, this list of conditions and the following disclaimer in the -# documentation and/or other materials provided with the distribution. -# * Neither the name of the author nor the names of its contributors may be -# used to endorse or promote products derived from this software without -# specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. - -from novaprinter import prettyPrinter -from helpers import retrieve_url, download_file -from HTMLParser import HTMLParser -from urllib import urlencode - -class torrentz(object): - # mandatory properties - url = 'https://torrentz2.eu' - name = 'Torrentz2' - supported_categories = {'all': ''} - - trackers_list = ['udp://tracker.coppersurfer.tk:6969/announce', - 'udp://tracker.opentrackr.org:1337/announce', - 'udp://tracker.zer0day.to:1337/announce', - 'udp://tracker.leechers-paradise.org:6969/announce', - 'udp://9.rarbg.com:2710/announce', - 'udp://explodie.org:6969/announce'] - - class MyHtmlParser(HTMLParser): - def __init__(self, results, url, trackers): - HTMLParser.__init__(self) - self.results = results - self.url = url - self.trackers = trackers - self.td_counter = None - self.current_item = None - - def handle_starttag(self, tag, attrs): - params = dict(attrs) - if tag == 'a': - if 'href' in params: - self.current_item = {} - self.td_counter = 0 - self.current_item['link'] = 'magnet:?xt=urn:btih:' + \ - params['href'].strip(' /') + self.trackers - self.current_item['desc_link'] = self.url + params['href'].strip() - elif tag == 'span': - if self.td_counter is not None: - self.td_counter += 1 - if self.td_counter > 5: # safety - self.td_counter = None - - def handle_data(self, data): - if self.td_counter == 0: - if 'name' not in self.current_item: - self.current_item['name'] = '' - self.current_item['name'] += data - elif self.td_counter == 3: - if 'size' not in self.current_item: - self.current_item['size'] = data.strip() - if self.current_item['size'] == 'Pending': - self.current_item['size'] = '' - elif self.td_counter == 4: - if 'seeds' not in self.current_item: - self.current_item['seeds'] = data.strip().replace(',', '') - if not self.current_item['seeds'].isdigit(): - self.current_item['seeds'] = 0 - elif self.td_counter == 5: - if 'leech' not in self.current_item: - self.current_item['leech'] = data.strip().replace(',', '') - if not self.current_item['leech'].isdigit(): - self.current_item['leech'] = 0 - - # display item - self.td_counter = None - self.current_item['engine_url'] = self.url - if self.current_item['name'].find(u' \xbb'): - self.current_item['name'] = self.current_item['name'].split(u' \xbb')[0] - self.current_item['link'] += '&' + urlencode({'dn' : self.current_item['name'].encode('utf-8')}) - - prettyPrinter(self.current_item) - self.results.append('a') - - def download_torrent(self, info): - print(download_file(info)) - - def search(self, what, cat='all'): - # initialize trackers for magnet links - trackers = '&' + '&'.join(urlencode({'tr' : tracker}) for tracker in self.trackers_list) - - results_list = [] - parser = self.MyHtmlParser(results_list, self.url, trackers) - i = 0 - while i < 6: - # "what" is already urlencoded - html = retrieve_url(self.url + '/search?f=%s&p=%d' % (what, i)) - parser.feed(html) - if len(results_list) < 1: - break - del results_list[:] - i += 1 - parser.close() diff --git a/nova/engines/versions.txt b/nova/engines/versions.txt index a225420..0e78f7a 100644 --- a/nova/engines/versions.txt +++ b/nova/engines/versions.txt @@ -2,5 +2,4 @@ btdb: 1.03 legittorrents: 2.02 piratebay: 2.15 torlock: 2.0 -torrentz: 2.22 zooqle: 1.12 diff --git a/nova3/engines/torrentz.py b/nova3/engines/torrentz.py deleted file mode 100644 index 9cf64cf..0000000 --- a/nova3/engines/torrentz.py +++ /dev/null @@ -1,119 +0,0 @@ -#VERSION: 2.22 -#AUTHORS: Diego de las Heras (ngosang@hotmail.es) - -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# * Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# * Redistributions in binary form must reproduce the above copyright -# notice, this list of conditions and the following disclaimer in the -# documentation and/or other materials provided with the distribution. -# * Neither the name of the author nor the names of its contributors may be -# used to endorse or promote products derived from this software without -# specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. - -from novaprinter import prettyPrinter -from helpers import retrieve_url, download_file -from html.parser import HTMLParser -from urllib.parse import urlencode - -class torrentz(object): - # mandatory properties - url = 'https://torrentz2.eu' - name = 'Torrentz2' - supported_categories = {'all': ''} - - trackers_list = ['udp://tracker.coppersurfer.tk:6969/announce', - 'udp://tracker.opentrackr.org:1337/announce', - 'udp://tracker.zer0day.to:1337/announce', - 'udp://tracker.leechers-paradise.org:6969/announce', - 'udp://9.rarbg.com:2710/announce', - 'udp://explodie.org:6969/announce'] - - class MyHtmlParser(HTMLParser): - def __init__(self, results, url, trackers): - HTMLParser.__init__(self) - self.results = results - self.url = url - self.trackers = trackers - self.td_counter = None - self.current_item = None - - def handle_starttag(self, tag, attrs): - params = dict(attrs) - if tag == 'a': - if 'href' in params: - self.current_item = {} - self.td_counter = 0 - self.current_item['link'] = 'magnet:?xt=urn:btih:' + \ - params['href'].strip(' /') + self.trackers - self.current_item['desc_link'] = self.url + params['href'].strip() - elif tag == 'span': - if self.td_counter is not None: - self.td_counter += 1 - if self.td_counter > 5: # safety - self.td_counter = None - - def handle_data(self, data): - if self.td_counter == 0: - if 'name' not in self.current_item: - self.current_item['name'] = '' - self.current_item['name'] += data - elif self.td_counter == 3: - if 'size' not in self.current_item: - self.current_item['size'] = data.strip() - if self.current_item['size'] == 'Pending': - self.current_item['size'] = '' - elif self.td_counter == 4: - if 'seeds' not in self.current_item: - self.current_item['seeds'] = data.strip().replace(',', '') - if not self.current_item['seeds'].isdigit(): - self.current_item['seeds'] = 0 - elif self.td_counter == 5: - if 'leech' not in self.current_item: - self.current_item['leech'] = data.strip().replace(',', '') - if not self.current_item['leech'].isdigit(): - self.current_item['leech'] = 0 - - # display item - self.td_counter = None - self.current_item['engine_url'] = self.url - if self.current_item['name'].find(' »'): - self.current_item['name'] = self.current_item['name'].split(' »')[0] - self.current_item['link'] += '&' + urlencode({'dn' : self.current_item['name']}) - - prettyPrinter(self.current_item) - self.results.append('a') - - def download_torrent(self, info): - print(download_file(info)) - - def search(self, what, cat='all'): - # initialize trackers for magnet links - trackers = '&' + '&'.join(urlencode({'tr' : tracker}) for tracker in self.trackers_list) - - results_list = [] - parser = self.MyHtmlParser(results_list, self.url, trackers) - i = 0 - while i < 6: - # "what" is already urlencoded - html = retrieve_url(self.url + '/search?f=%s&p=%d' % (what, i)) - parser.feed(html) - if len(results_list) < 1: - break - del results_list[:] - i += 1 - parser.close() diff --git a/nova3/engines/versions.txt b/nova3/engines/versions.txt index a225420..0e78f7a 100644 --- a/nova3/engines/versions.txt +++ b/nova3/engines/versions.txt @@ -2,5 +2,4 @@ btdb: 1.03 legittorrents: 2.02 piratebay: 2.15 torlock: 2.0 -torrentz: 2.22 zooqle: 1.12