Skip to content
browser.py 1.89 KiB
Newer Older
Roger Philibert's avatar
Roger Philibert committed
# -*- coding: utf-8 -*-

# Copyright(C) 2010-2014 Roger Philibert
Romain Bignon's avatar
Romain Bignon committed
#
# This file is part of a weboob module.
Romain Bignon's avatar
Romain Bignon committed
#
# This weboob module is free software: you can redistribute it and/or modify
Romain Bignon's avatar
Romain Bignon committed
# 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.
#
# This weboob module is distributed in the hope that it will be useful,
Christophe Benz's avatar
Christophe Benz committed
# but WITHOUT ANY WARRANTY; without even the implied warranty of
Romain Bignon's avatar
Romain Bignon committed
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
Romain Bignon's avatar
Romain Bignon committed
#
Romain Bignon's avatar
Romain Bignon committed
# You should have received a copy of the GNU Affero General Public License
# along with this weboob module. If not, see <http://www.gnu.org/licenses/>.
from weboob.browser import PagesBrowser, URL
from weboob.capabilities.base import UserError
from .pages.index import IndexPage
from .pages.video import VideoPage
Roger Philibert's avatar
Roger Philibert committed
__all__ = ['YoujizzBrowser']
Romain Bignon's avatar
Romain Bignon committed
class YoujizzBrowser(PagesBrowser):
Romain Bignon's avatar
Romain Bignon committed
    BASEURL = 'https://www.youjizz.com'
Romain Bignon's avatar
Romain Bignon committed

    index = URL(r'/?(index.php)?$',
                r'/page/\d+.html',
                IndexPage)
Romain Bignon's avatar
Romain Bignon committed
    search = URL(r'/search/(?P<pattern>.+)-(?P<pagenum>\d+).html', IndexPage)
    video = URL(r'/videos/(?P<id>.*).html', VideoPage)
    video_url = URL(r'/videos/embed/\d+', VideoPage)
Romain Bignon's avatar
Romain Bignon committed

    @video.id2url
    def get_video(self, url, video=None):
        self.location(url)
Romain Bignon's avatar
Romain Bignon committed
        assert self.video.is_here()

        return self.page.get_video(video)
            raise UserError('Pattern to short (min length : 3 characters)')
Romain Bignon's avatar
Romain Bignon committed
        self.search.go(pattern=pattern, pagenum=1)
        assert self.search.is_here(pattern=pattern, pagenum=1)
Romain Bignon's avatar
Romain Bignon committed

Romain Bignon's avatar
Romain Bignon committed
        return self.page.iter_videos()
Romain Bignon's avatar
Romain Bignon committed
        self.index.go()
        assert self.index.is_here()

Romain Bignon's avatar
Romain Bignon committed
        return self.page.iter_videos()