2015-02-10 17:52:12 +03:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
'''
|
|
|
|
Torrenter plugin for XBMC
|
|
|
|
Copyright (C) 2012 Vadim Skorba
|
|
|
|
vadim.skorba@gmail.com
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
'''
|
|
|
|
import re
|
2015-06-23 23:00:27 +03:00
|
|
|
|
2015-02-10 17:52:12 +03:00
|
|
|
import Content
|
|
|
|
|
2015-06-23 23:00:27 +03:00
|
|
|
|
2015-02-10 17:52:12 +03:00
|
|
|
class ThePirateBaySe(Content.Content):
|
2016-07-22 22:32:57 +03:00
|
|
|
# debug = log
|
2015-02-10 17:52:12 +03:00
|
|
|
category_dict = {
|
2016-01-15 13:14:17 +03:00
|
|
|
'tvshows': ('TV Shows', '/browse/205', {'page': '/browse/208/%d', 'increase': 1, 'second_page': 1,
|
2015-06-23 23:00:27 +03:00
|
|
|
'sort': [{'name': 'by Seeders', 'url_after': '/0/7/0'},
|
|
|
|
{'name': 'by Date', 'url_after': '/0/3/0'}]}),
|
2015-02-10 17:52:12 +03:00
|
|
|
'tvshowshd': ('TV Shows [HD]', '/browse/208', {'page': '/browse/208/%d', 'increase': 1, 'second_page': 1,
|
2015-06-23 23:00:27 +03:00
|
|
|
'sort': [{'name': 'by Seeders', 'url_after': '/0/7/0'},
|
|
|
|
{'name': 'by Date', 'url_after': '/0/3/0'}]}),
|
2015-02-10 17:52:12 +03:00
|
|
|
'movies': ('Movies', '/browse/201', {'page': '/browse/208/%d', 'increase': 1, 'second_page': 1,
|
2015-06-23 23:00:27 +03:00
|
|
|
'sort': [{'name': 'by Seeders', 'url_after': '/0/7/0'},
|
|
|
|
{'name': 'by Date', 'url_after': '/0/3/0'}]}),
|
2015-02-10 17:52:12 +03:00
|
|
|
'movieshd': ('Movies [HD]', '/browse/207', {'page': '/browse/208/%d', 'increase': 1, 'second_page': 1,
|
2015-06-23 23:00:27 +03:00
|
|
|
'sort': [{'name': 'by Seeders', 'url_after': '/0/7/0'},
|
|
|
|
{'name': 'by Date', 'url_after': '/0/3/0'}]}),
|
2016-01-15 13:14:17 +03:00
|
|
|
'movies3D': ('Movies [3D]', '/browse/209', {'page': '/browse/209/%d', 'increase': 1, 'second_page': 1,
|
|
|
|
'sort': [{'name': 'by Seeders', 'url_after': '/0/7/0'},
|
|
|
|
{'name': 'by Date', 'url_after': '/0/3/0'}]}),
|
|
|
|
'movies bluray': ('Movies [Bluray]', '/search/bluray', {'page': '/search/bluray/%d', 'increase': 1, 'second_page': 1,
|
|
|
|
'sort': [{'name': 'by Seeders', 'url_after': '/0/7/207'},
|
|
|
|
{'name': 'by Date', 'url_after': '/0/3/207'}]}),
|
|
|
|
'heb_movies': ('סרטים מדובבים', '/search/Hebrew-dubbed/0/7/0'),
|
2015-02-10 17:52:12 +03:00
|
|
|
}
|
|
|
|
|
2016-07-22 22:32:57 +03:00
|
|
|
baseurl = "http://thepiratebay.ae"
|
2015-02-10 17:52:12 +03:00
|
|
|
headers = [('User-Agent',
|
|
|
|
'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124' + \
|
|
|
|
' YaBrowser/14.10.2062.12061 Safari/537.36'),
|
2016-07-22 22:32:57 +03:00
|
|
|
('Referer', 'http://thepiratebay.ae/'), ('Accept-Encoding', 'gzip')]
|
2015-02-10 17:52:12 +03:00
|
|
|
'''
|
|
|
|
Weight of source with this searcher provided.
|
|
|
|
Will be multiplied on default weight.
|
|
|
|
Default weight is seeds number
|
|
|
|
'''
|
|
|
|
sourceWeight = 1
|
|
|
|
|
2015-07-15 19:14:22 +03:00
|
|
|
def isTracker(self):
|
2015-02-10 17:52:12 +03:00
|
|
|
return True
|
|
|
|
|
2015-07-15 19:14:22 +03:00
|
|
|
def isSearcher(self):
|
|
|
|
return False
|
|
|
|
|
2015-02-10 17:52:12 +03:00
|
|
|
def isScrappable(self):
|
|
|
|
return False
|
|
|
|
|
|
|
|
def isInfoLink(self):
|
2015-02-10 18:05:52 +03:00
|
|
|
return True
|
2015-02-10 17:52:12 +03:00
|
|
|
|
|
|
|
def isPages(self):
|
|
|
|
return True
|
|
|
|
|
|
|
|
def isSort(self):
|
|
|
|
return True
|
|
|
|
|
|
|
|
def isSearchOption(self):
|
|
|
|
return False
|
|
|
|
|
|
|
|
def get_contentList(self, category, subcategory=None, apps_property=None):
|
|
|
|
contentList = []
|
|
|
|
url = self.get_url(category, subcategory, apps_property)
|
|
|
|
|
2016-07-22 22:32:57 +03:00
|
|
|
import requests
|
|
|
|
response = requests.get(url).text
|
2015-02-10 17:52:12 +03:00
|
|
|
|
|
|
|
if None != response and 0 < len(response):
|
2015-06-23 23:00:27 +03:00
|
|
|
# print response
|
2015-02-10 17:52:12 +03:00
|
|
|
if category:
|
|
|
|
contentList = self.mode(response)
|
2015-06-23 23:00:27 +03:00
|
|
|
# print str(contentList)
|
2015-02-10 17:52:12 +03:00
|
|
|
return contentList
|
|
|
|
|
|
|
|
def mode(self, response):
|
|
|
|
contentList = []
|
2016-07-22 22:32:57 +03:00
|
|
|
self.debug = self.log
|
2015-02-10 17:52:12 +03:00
|
|
|
num = 31
|
2016-07-22 22:32:57 +03:00
|
|
|
self.debug(response)
|
|
|
|
regex = '''<tr>.+?</tr>'''
|
|
|
|
regex_tr = r'<div class="detName">.+?">(.+?)</a>.+?<a href="(.+?)".+?<font class="detDesc">Uploaded (.+?), Size (.+?), .+?</font>.+?<td align="right">(\d+?)</td>.+?<td align="right">(\d+?)</td>'
|
|
|
|
for tr in re.compile(regex, re.DOTALL).findall(response):
|
|
|
|
result = re.compile(regex_tr, re.DOTALL).findall(tr)
|
|
|
|
self.debug(tr + ' -> ' + str(result))
|
|
|
|
if result:
|
|
|
|
(title, link, date, size, seeds, leechers) = result[0]
|
|
|
|
|
|
|
|
info = {}
|
|
|
|
num = num - 1
|
|
|
|
original_title = None
|
|
|
|
year = 0
|
|
|
|
img = ''
|
|
|
|
size = size.replace(' ', ' ')
|
|
|
|
date = self.stripHtml(date.replace(' ', ' '))
|
|
|
|
|
|
|
|
# info
|
|
|
|
|
|
|
|
info['label'] = info['title'] = self.unescape(title)
|
|
|
|
info['link'] = link
|
|
|
|
self.log(info['link'])
|
|
|
|
info['plot'] = info['title'] + '\r\n[I](%s) [S/L: %s/%s] [/I]\r\n%s' % (size, seeds, leechers, date)
|
|
|
|
contentList.append((
|
|
|
|
int(int(self.sourceWeight) * (int(num))),
|
|
|
|
original_title, title, int(year), img, info,
|
|
|
|
))
|
2015-02-10 17:52:12 +03:00
|
|
|
return contentList
|