mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-02-02 09:55:55 +00:00
remove ExtraTorrent plugin
This commit is contained in:
parent
ce36a7ca62
commit
ebc50a7237
@ -9,8 +9,6 @@
|
|||||||
<file>searchengine/nova/engines/btdb.py</file>
|
<file>searchengine/nova/engines/btdb.py</file>
|
||||||
<file>searchengine/nova/engines/demonoid.png</file>
|
<file>searchengine/nova/engines/demonoid.png</file>
|
||||||
<file>searchengine/nova/engines/demonoid.py</file>
|
<file>searchengine/nova/engines/demonoid.py</file>
|
||||||
<file>searchengine/nova/engines/extratorrent.png</file>
|
|
||||||
<file>searchengine/nova/engines/extratorrent.py</file>
|
|
||||||
<file>searchengine/nova/engines/legittorrents.png</file>
|
<file>searchengine/nova/engines/legittorrents.png</file>
|
||||||
<file>searchengine/nova/engines/legittorrents.py</file>
|
<file>searchengine/nova/engines/legittorrents.py</file>
|
||||||
<file>searchengine/nova/engines/piratebay.png</file>
|
<file>searchengine/nova/engines/piratebay.png</file>
|
||||||
@ -28,8 +26,6 @@
|
|||||||
<file>searchengine/nova3/engines/btdb.py</file>
|
<file>searchengine/nova3/engines/btdb.py</file>
|
||||||
<file>searchengine/nova3/engines/demonoid.png</file>
|
<file>searchengine/nova3/engines/demonoid.png</file>
|
||||||
<file>searchengine/nova3/engines/demonoid.py</file>
|
<file>searchengine/nova3/engines/demonoid.py</file>
|
||||||
<file>searchengine/nova3/engines/extratorrent.png</file>
|
|
||||||
<file>searchengine/nova3/engines/extratorrent.py</file>
|
|
||||||
<file>searchengine/nova3/engines/legittorrents.png</file>
|
<file>searchengine/nova3/engines/legittorrents.png</file>
|
||||||
<file>searchengine/nova3/engines/legittorrents.py</file>
|
<file>searchengine/nova3/engines/legittorrents.py</file>
|
||||||
<file>searchengine/nova3/engines/piratebay.png</file>
|
<file>searchengine/nova3/engines/piratebay.png</file>
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 509 B |
@ -1,74 +0,0 @@
|
|||||||
#VERSION: 3.10
|
|
||||||
#AUTHORS: Christophe Dumez (chris@qbittorrent.org)
|
|
||||||
#CONTRIBUTORS: 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 xml.dom import minidom
|
|
||||||
#qBt
|
|
||||||
from novaprinter import prettyPrinter
|
|
||||||
from helpers import download_file, retrieve_url
|
|
||||||
|
|
||||||
class extratorrent(object):
|
|
||||||
""" Search engine class """
|
|
||||||
url = 'https://extra.to'
|
|
||||||
name = 'ExtraTorrent'
|
|
||||||
supported_categories = {'all' : '0',
|
|
||||||
'movies' : '4',
|
|
||||||
'tv' : '8',
|
|
||||||
'music' : '5',
|
|
||||||
'games' : '3',
|
|
||||||
'anime' : '1',
|
|
||||||
'software' : '7',
|
|
||||||
'books' : '2',
|
|
||||||
'pictures' : '6'}
|
|
||||||
|
|
||||||
def download_torrent(self, info):
|
|
||||||
""" Downloader """
|
|
||||||
print(download_file(info))
|
|
||||||
|
|
||||||
def search(self, what, cat="all"):
|
|
||||||
""" Performs search """
|
|
||||||
query = "".join((self.url, "/rss.xml?type=search&search=", what, "&cid=", self.supported_categories[cat]))
|
|
||||||
response = retrieve_url(query)
|
|
||||||
|
|
||||||
xmldoc = minidom.parseString(response)
|
|
||||||
itemlist = xmldoc.getElementsByTagName('item')
|
|
||||||
for item in itemlist:
|
|
||||||
current_item = current_item = {"engine_url" : self.url}
|
|
||||||
current_item['name'] = item.getElementsByTagName('title')[0].childNodes[0].data
|
|
||||||
current_item["link"] = item.getElementsByTagName('enclosure')[0].attributes['url'].value.replace('extratorrent.cc', 'extra.to')
|
|
||||||
current_item["desc_link"] = item.getElementsByTagName('link')[0].childNodes[0].data.replace('extratorrent.cc', 'extra.to')
|
|
||||||
current_item["size"] = item.getElementsByTagName('size')[0].childNodes[0].data
|
|
||||||
current_item["leech"] = item.getElementsByTagName('leechers')[0].childNodes[0].data
|
|
||||||
if not current_item["leech"].isdigit():
|
|
||||||
current_item["leech"] = ''
|
|
||||||
current_item["seeds"] = item.getElementsByTagName('seeders')[0].childNodes[0].data
|
|
||||||
if not current_item["seeds"].isdigit():
|
|
||||||
current_item["seeds"] = ''
|
|
||||||
|
|
||||||
prettyPrinter(current_item)
|
|
||||||
|
|
||||||
return
|
|
@ -1,6 +1,5 @@
|
|||||||
btdb: 1.01
|
btdb: 1.01
|
||||||
demonoid: 1.23
|
demonoid: 1.23
|
||||||
extratorrent: 3.10
|
|
||||||
legittorrents: 2.02
|
legittorrents: 2.02
|
||||||
piratebay: 2.15
|
piratebay: 2.15
|
||||||
torlock: 2.0
|
torlock: 2.0
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 509 B |
@ -1,74 +0,0 @@
|
|||||||
#VERSION: 3.10
|
|
||||||
#AUTHORS: Christophe Dumez (chris@qbittorrent.org)
|
|
||||||
#CONTRIBUTORS: 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 xml.dom import minidom
|
|
||||||
#qBt
|
|
||||||
from novaprinter import prettyPrinter
|
|
||||||
from helpers import download_file, retrieve_url
|
|
||||||
|
|
||||||
class extratorrent(object):
|
|
||||||
""" Search engine class """
|
|
||||||
url = 'https://extra.to'
|
|
||||||
name = 'ExtraTorrent'
|
|
||||||
supported_categories = {'all' : '0',
|
|
||||||
'movies' : '4',
|
|
||||||
'tv' : '8',
|
|
||||||
'music' : '5',
|
|
||||||
'games' : '3',
|
|
||||||
'anime' : '1',
|
|
||||||
'software' : '7',
|
|
||||||
'books' : '2',
|
|
||||||
'pictures' : '6'}
|
|
||||||
|
|
||||||
def download_torrent(self, info):
|
|
||||||
""" Downloader """
|
|
||||||
print(download_file(info))
|
|
||||||
|
|
||||||
def search(self, what, cat="all"):
|
|
||||||
""" Performs search """
|
|
||||||
query = "".join((self.url, "/rss.xml?type=search&search=", what, "&cid=", self.supported_categories[cat]))
|
|
||||||
response = retrieve_url(query)
|
|
||||||
|
|
||||||
xmldoc = minidom.parseString(response)
|
|
||||||
itemlist = xmldoc.getElementsByTagName('item')
|
|
||||||
for item in itemlist:
|
|
||||||
current_item = current_item = {"engine_url" : self.url}
|
|
||||||
current_item['name'] = item.getElementsByTagName('title')[0].childNodes[0].data
|
|
||||||
current_item["link"] = item.getElementsByTagName('enclosure')[0].attributes['url'].value.replace('extratorrent.cc', 'extra.to')
|
|
||||||
current_item["desc_link"] = item.getElementsByTagName('link')[0].childNodes[0].data.replace('extratorrent.cc', 'extra.to')
|
|
||||||
current_item["size"] = item.getElementsByTagName('size')[0].childNodes[0].data
|
|
||||||
current_item["leech"] = item.getElementsByTagName('leechers')[0].childNodes[0].data
|
|
||||||
if not current_item["leech"].isdigit():
|
|
||||||
current_item["leech"] = ''
|
|
||||||
current_item["seeds"] = item.getElementsByTagName('seeders')[0].childNodes[0].data
|
|
||||||
if not current_item["seeds"].isdigit():
|
|
||||||
current_item["seeds"] = ''
|
|
||||||
|
|
||||||
prettyPrinter(current_item)
|
|
||||||
|
|
||||||
return
|
|
@ -1,6 +1,5 @@
|
|||||||
btdb: 1.01
|
btdb: 1.01
|
||||||
demonoid: 1.23
|
demonoid: 1.23
|
||||||
extratorrent: 3.10
|
|
||||||
legittorrents: 2.02
|
legittorrents: 2.02
|
||||||
piratebay: 2.15
|
piratebay: 2.15
|
||||||
torlock: 2.0
|
torlock: 2.0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user