67 lines
2.3 KiB
Python
67 lines
2.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright(C) 2015 Guilhem Bonnefille
|
|
#
|
|
# 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 weboob.browser import PagesBrowser, URL
|
|
|
|
from .pages import RmllCollectionPage, RmllVideoPage, RmllChannelsPage, RmllSearchPage, RmllLatestPage
|
|
|
|
__all__ = ['RmllBrowser']
|
|
|
|
|
|
class RmllBrowser(PagesBrowser):
|
|
BASEURL = 'http://video.rmll.info'
|
|
|
|
index_page = URL(r'channels/content/(?P<id>.+)', RmllCollectionPage)
|
|
latest_page = URL(r'api/v2/latest/', RmllLatestPage)
|
|
video_page = URL(r'permalink/(?P<id>.+)/', RmllVideoPage)
|
|
channels_page = URL(r'api/v2/channels/content/\?parent_oid=(?P<oid>.*)', RmllChannelsPage)
|
|
search_page = URL(r'api/v2/search/\?search=(?P<pattern>.+)', RmllSearchPage)
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
self.channels = None
|
|
PagesBrowser.__init__(self, *args, **kwargs)
|
|
|
|
@video_page.id2url
|
|
def get_video(self, url, video=None):
|
|
self.location(url)
|
|
assert self.video_page.is_here()
|
|
video = self.page.get_video(obj=video)
|
|
return video
|
|
|
|
def search_videos(self, pattern):
|
|
url = self.search_page.build(pattern=pattern)
|
|
self.location(url)
|
|
return self.page.iter_resources()
|
|
|
|
def get_latest_videos(self):
|
|
url = self.latest_page.build()
|
|
self.location(url)
|
|
assert self.latest_page.is_here()
|
|
return self.page.iter_resources()
|
|
|
|
def get_channel_videos(self, split_path):
|
|
oid = ''
|
|
if len(split_path) > 0:
|
|
oid = split_path[-1]
|
|
url = self.channels_page.build(oid=oid)
|
|
self.location(url)
|
|
assert self.channels_page.is_here()
|
|
for video in self.page.iter_resources(split_path):
|
|
yield video
|
|
|