new backend nolifetv
This commit is contained in:
parent
7ac8fbb611
commit
2b23948da6
8 changed files with 355 additions and 0 deletions
0
weboob/backends/nolifetv/pages/__init__.py
Normal file
0
weboob/backends/nolifetv/pages/__init__.py
Normal file
58
weboob/backends/nolifetv/pages/index.py
Normal file
58
weboob/backends/nolifetv/pages/index.py
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2011 Romain Bignon
|
||||
#
|
||||
# This file is part of weboob.
|
||||
#
|
||||
# weboob is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# weboob 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 Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with weboob. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
from dateutil.parser import parse as parse_dt
|
||||
import re
|
||||
|
||||
from weboob.tools.browser import BasePage
|
||||
from weboob.tools.capabilities.thumbnail import Thumbnail
|
||||
from weboob.capabilities.base import NotAvailable
|
||||
|
||||
from ..video import NolifeTVVideo
|
||||
|
||||
|
||||
__all__ = ['IndexPage']
|
||||
|
||||
|
||||
class IndexPage(BasePage):
|
||||
def iter_videos(self):
|
||||
div_list = self.parser.select(self.document.getroot(), 'div.ligne_video')
|
||||
for div in div_list:
|
||||
m = re.match('index.php\?id=(\d+)', div.find('a').attrib['href'])
|
||||
if not m:
|
||||
continue
|
||||
video = NolifeTVVideo(m.group(1))
|
||||
video.title = self.parser.select(div, 'span.span_title', 1).text
|
||||
video.description = self.parser.select(div, 'span.span_description', 1).text
|
||||
video.thumbnail = Thumbnail(self.parser.select(div, 'div.screen_video', 1).find('img').attrib['src'])
|
||||
try:
|
||||
video.date = parse_dt(self.parser.select(div, 'div.infos_video span.span_title', 1).text.strip())
|
||||
except Exception:
|
||||
video.date = NotAvailable
|
||||
|
||||
rating_url = self.parser.select(div, 'span.description img')[0].attrib['src']
|
||||
m = re.match('.*view_level(\d+)\.gif', rating_url)
|
||||
if m:
|
||||
video.rating = int(m.group(1))
|
||||
video.rating_max = 21
|
||||
else:
|
||||
video.rating = video.rating_max = NotAvailable
|
||||
|
||||
yield video
|
||||
89
weboob/backends/nolifetv/pages/video.py
Normal file
89
weboob/backends/nolifetv/pages/video.py
Normal file
|
|
@ -0,0 +1,89 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2011 Romain Bignon
|
||||
#
|
||||
# This file is part of weboob.
|
||||
#
|
||||
# weboob is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# weboob 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 Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with weboob. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
from dateutil.parser import parse as parse_dt
|
||||
import urllib
|
||||
|
||||
from weboob.capabilities.base import NotAvailable
|
||||
from weboob.tools.capabilities.thumbnail import Thumbnail
|
||||
from weboob.tools.browser import BasePage
|
||||
from weboob.tools.misc import to_unicode
|
||||
|
||||
from ..video import NolifeTVVideo
|
||||
|
||||
|
||||
__all__ = ['VideoPage']
|
||||
|
||||
|
||||
class ForbiddenVideo(Exception):
|
||||
pass
|
||||
|
||||
class VideoPage(BasePage):
|
||||
|
||||
def get_video(self, video=None):
|
||||
_id = to_unicode(self.group_dict['id'])
|
||||
if video is None:
|
||||
video = NolifeTVVideo(_id)
|
||||
#title_el = self.parser.select(self.document.getroot(), 'title', 1)
|
||||
#video.title = to_unicode(title_el.text.strip())
|
||||
|
||||
## youjizz HTML is crap, we must parse it with regexps
|
||||
#data = lxml.html.tostring(self.document.getroot())
|
||||
#m = re.search(r'<strong>.*?Runtime.*?</strong> (.+?)<br.*>', data)
|
||||
#if m:
|
||||
# txt = m.group(1).strip()
|
||||
# if txt == 'Unknown':
|
||||
# video.duration = NotAvailable
|
||||
# else:
|
||||
# minutes, seconds = (int(v) for v in to_unicode(txt).split(':'))
|
||||
# video.duration = datetime.timedelta(minutes=minutes, seconds=seconds)
|
||||
#else:
|
||||
# raise BrokenPageError('Unable to retrieve video duration')
|
||||
|
||||
div = self.parser.select(self.document.getroot(), 'div#informations_video', 1)
|
||||
video.title = self.parser.select(div, 'div#ligne_titre_big', 1).text
|
||||
video.description = self.parser.select(div, 'div#ligne_titre_small', 1).text
|
||||
video.thumbnail = Thumbnail(self.parser.select(div, 'div#icone_video img', 1).attrib['src'])
|
||||
try:
|
||||
video.date = parse_dt(self.parser.select(div, 'div#infos_complementaires', 1).find('p').text.strip())
|
||||
except Exception:
|
||||
video.date = NotAvailable
|
||||
video.author = NotAvailable
|
||||
video.duration = NotAvailable
|
||||
video.rating = NotAvailable
|
||||
video.rating_max = NotAvailable
|
||||
|
||||
if not video.url:
|
||||
r = self.browser.request_class('http://online.nolife-tv.com/_newplayer/api/api_player.php',
|
||||
'skey=9fJhXtl%5D%7CFR%3FN%7D%5B%3A%5Fd%22%5F&connect=1&a=US',
|
||||
{'Referer': 'http://online.nolife-tv.com/_newplayer/nolifeplayer_flash10.swf?idvideo=%s&autostart=0' % _id})
|
||||
self.browser.openurl(r)
|
||||
r = self.browser.request_class('http://online.nolife-tv.com/_newplayer/api/api_player.php',
|
||||
'skey=9fJhXtl%5D%7CFR%3FN%7D%5B%3A%5Fd%22%5F&a=UEM%7CSEM&quality=0&id%5Fnlshow=' + _id,
|
||||
{'Referer': 'http://online.nolife-tv.com/_newplayer/nolifeplayer_flash10.swf?idvideo=%s&autostart=0' % _id})
|
||||
data = self.browser.readurl(r)
|
||||
values = dict([urllib.splitvalue(s) for s in data.split('&')])
|
||||
|
||||
if not 'url' in values:
|
||||
raise ForbiddenVideo(values['message'].decode('iso-8859-15'))
|
||||
video.url = values['url']
|
||||
|
||||
return video
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue