Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add rarbg search plugin #48

Merged
merged 1 commit into from
Sep 17, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
87 changes: 87 additions & 0 deletions nova/engines/rarbg.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
#VERSION: 2.00
# AUTHORS: b0nk
# 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.

import json
import time
try:
# python3
from urllib.parse import urlencode, unquote
except ImportError:
# python2
from urllib import urlencode, unquote

# qBt
from novaprinter import prettyPrinter
from helpers import retrieve_url


class rarbg(object):
url = 'https://rarbg.to'
name = 'RARBG'
supported_categories = {'all': '1;4;14;15;16;17;21;22;42;18;19;41;27;28;29;30;31;32;40;23;24;25;26;33;34;43;44;45;46;47;48', # noqa
'movies': 'movies',
'tv': 'tv',
'music': '1;23;24;25;26',
'games': '1;27;28;29;30;31;32;40',
'software': '1;33;34;43'}

def search(self, what, cat='all'):
base_url = "https://torrentapi.org/pubapi_v2.php?%s"
Copy link
Member

@Chocobo1 Chocobo1 Sep 17, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it Are they related to rarbg?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't know the relationship, but it's used by several well known software. #38 (comment)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok, no more question from me, proceed as you see fit.


# get token
params = urlencode({'get_token': 'get_token', 'app_id': 'qbittorrent'})
response = retrieve_url(base_url % params)
j = json.loads(response)
token = j['token']
time.sleep(2.1)

# get response json
what = unquote(what)
category = self.supported_categories[cat]
params = urlencode({'mode': 'search',
'search_string': what,
'ranked': 0,
'category': category,
'limit': 100,
'sort': 'seeders',
'format': 'json_extended',
'token': token,
'app_id': 'qbittorrent'})
response = retrieve_url(base_url % params)
j = json.loads(response)

# parse results
for result in j['torrent_results']:
res = {'link': result['download'],
'name': result['title'],
'size': str(result['size']) + " B",
'seeds': result['seeders'],
'leech': result['leechers'],
'engine_url': self.url,
'desc_link': result['info_page']}
prettyPrinter(res)
1 change: 1 addition & 0 deletions nova/engines/versions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ btdb: 1.04
eztv: 1.01
legittorrents: 2.03
piratebay: 2.16
rarbg: 2.00
torlock: 2.1
zooqle: 1.13
87 changes: 87 additions & 0 deletions nova3/engines/rarbg.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
#VERSION: 2.00
# AUTHORS: b0nk
# 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.

import json
import time
try:
# python3
from urllib.parse import urlencode, unquote
except ImportError:
# python2
from urllib import urlencode, unquote

# qBt
from novaprinter import prettyPrinter
from helpers import retrieve_url


class rarbg(object):
url = 'https://rarbg.to'
name = 'RARBG'
supported_categories = {'all': '1;4;14;15;16;17;21;22;42;18;19;41;27;28;29;30;31;32;40;23;24;25;26;33;34;43;44;45;46;47;48', # noqa
'movies': 'movies',
'tv': 'tv',
'music': '1;23;24;25;26',
'games': '1;27;28;29;30;31;32;40',
'software': '1;33;34;43'}

def search(self, what, cat='all'):
base_url = "https://torrentapi.org/pubapi_v2.php?%s"

# get token
params = urlencode({'get_token': 'get_token', 'app_id': 'qbittorrent'})
response = retrieve_url(base_url % params)
j = json.loads(response)
token = j['token']
time.sleep(2.1)

# get response json
what = unquote(what)
category = self.supported_categories[cat]
params = urlencode({'mode': 'search',
'search_string': what,
'ranked': 0,
'category': category,
'limit': 100,
'sort': 'seeders',
'format': 'json_extended',
'token': token,
'app_id': 'qbittorrent'})
response = retrieve_url(base_url % params)
j = json.loads(response)

# parse results
for result in j['torrent_results']:
res = {'link': result['download'],
'name': result['title'],
'size': str(result['size']) + " B",
'seeds': result['seeders'],
'leech': result['leechers'],
'engine_url': self.url,
'desc_link': result['info_page']}
prettyPrinter(res)
1 change: 1 addition & 0 deletions nova3/engines/versions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ btdb: 1.04
eztv: 1.01
legittorrents: 2.03
piratebay: 2.16
rarbg: 2.00
torlock: 2.1
zooqle: 1.13