72 lines
2.4 KiB
Python
72 lines
2.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright(C) 2010 Christophe Benz, Romain Bignon
|
|
#
|
|
# 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, version 3 of the License.
|
|
#
|
|
# 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, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
import re
|
|
|
|
from weboob.tools.browser import BasePage
|
|
from weboob.tools.parsers.lxmlparser import select
|
|
from weboob.tools.misc import to_unicode
|
|
|
|
from .video import YoutubeVideo
|
|
|
|
|
|
__all__ = ['ForbiddenVideo', 'ForbiddenVideoPage', 'VerifyAgePage', 'VideoPage']
|
|
|
|
|
|
class ForbiddenVideo(Exception):
|
|
pass
|
|
|
|
|
|
class ForbiddenVideoPage(BasePage):
|
|
def get_video(self, video=None):
|
|
element = select(self.document.getroot(), '.yt-alert-content', 1)
|
|
raise ForbiddenVideo(element.text.strip())
|
|
|
|
|
|
class VerifyAgePage(BasePage):
|
|
def get_video(self, video=None):
|
|
raise ForbiddenVideo('verify age not implemented')
|
|
|
|
|
|
class VideoPage(BasePage):
|
|
VIDEO_SIGNATURE_REGEX = re.compile(r'&t=([^ ,&]*)')
|
|
|
|
def get_video(self, video=None):
|
|
if video is None:
|
|
video = YoutubeVideo(self.group_dict['id'])
|
|
video.title = self.get_title()
|
|
video.url = self.get_url(video.id)
|
|
video.author = self.get_author()
|
|
return video
|
|
|
|
def get_author(self):
|
|
element = select(self.document.getroot(), 'a.watch-description-username strong', 1)
|
|
return element.text.strip()
|
|
|
|
def get_title(self):
|
|
element = select(self.document.getroot(), 'meta[name=title]', 1)
|
|
return to_unicode(element.attrib['content'].strip())
|
|
|
|
def get_url(self, _id):
|
|
video_signature = None
|
|
for data in self.document.getiterator('script'):
|
|
if not data.text:
|
|
continue
|
|
for m in re.finditer(self.VIDEO_SIGNATURE_REGEX, data.text):
|
|
video_signature = m.group(1)
|
|
return u'http://www.youtube.com/get_video?video_id=%s&t=%s&eurl=&el=&ps=&asv=&fmt=18' % (_id, video_signature)
|