]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/toypics.py
Completely change project name to yt-dlp (#85)
[yt-dlp.git] / yt_dlp / extractor / toypics.py
CommitLineData
dcdb292f 1# coding: utf-8
ee8dda41
PP
2from __future__ import unicode_literals
3
74af99fc 4from .common import InfoExtractor
74af99fc 5import re
6
231f76b5 7
74af99fc 8class ToypicsIE(InfoExtractor):
2ca29f1a
S
9 IE_DESC = 'Toypics video'
10 _VALID_URL = r'https?://videos\.toypics\.net/view/(?P<id>[0-9]+)'
74af99fc 11 _TEST = {
12 'url': 'http://videos.toypics.net/view/514/chancebulged,-2-1/',
231f76b5 13 'md5': '16e806ad6d6f58079d210fe30985e08b',
74af99fc 14 'info_dict': {
15 'id': '514',
16 'ext': 'mp4',
2ca29f1a 17 'title': "Chance-Bulge'd, 2",
231f76b5
PH
18 'age_limit': 18,
19 'uploader': 'kidsune',
74af99fc 20 }
21 }
74af99fc 22
23 def _real_extract(self, url):
2ca29f1a
S
24 video_id = self._match_id(url)
25
26 webpage = self._download_webpage(url, video_id)
27
28 formats = self._parse_html5_media_entries(
29 url, webpage, video_id)[0]['formats']
77d682da 30 title = self._html_search_regex([
31 r'<h1[^>]+class=["\']view-video-title[^>]+>([^<]+)</h',
32 r'<title>([^<]+) - Toypics</title>',
2ca29f1a
S
33 ], webpage, 'title')
34
35 uploader = self._html_search_regex(
36 r'More videos from <strong>([^<]+)</strong>', webpage, 'uploader',
37 fatal=False)
38
74af99fc 39 return {
40 'id': video_id,
77d682da 41 'formats': formats,
74af99fc 42 'title': title,
2ca29f1a 43 'uploader': uploader,
231f76b5
PH
44 'age_limit': 18,
45 }
46
47
48class ToypicsUserIE(InfoExtractor):
49 IE_DESC = 'Toypics user profile'
2ca29f1a 50 _VALID_URL = r'https?://videos\.toypics\.net/(?!view)(?P<id>[^/?#&]+)'
22a6f150
PH
51 _TEST = {
52 'url': 'http://videos.toypics.net/Mikey',
53 'info_dict': {
54 'id': 'Mikey',
55 },
feec0f56 56 'playlist_mincount': 19,
22a6f150 57 }
231f76b5
PH
58
59 def _real_extract(self, url):
2ca29f1a 60 username = self._match_id(url)
231f76b5
PH
61
62 profile_page = self._download_webpage(
63 url, username, note='Retrieving profile page')
64
65 video_count = int(self._search_regex(
66 r'public/">Public Videos \(([0-9]+)\)</a></li>', profile_page,
67 'video count'))
68
69 PAGE_SIZE = 8
70 urls = []
71 page_count = (video_count + PAGE_SIZE + 1) // PAGE_SIZE
72 for n in range(1, page_count + 1):
73 lpage_url = url + '/public/%d' % n
74 lpage = self._download_webpage(
75 lpage_url, username,
76 note='Downloading page %d/%d' % (n, page_count))
77 urls.extend(
78 re.findall(
2ca29f1a 79 r'<div[^>]+class=["\']preview[^>]+>\s*<a[^>]+href="(https?://videos\.toypics\.net/view/[^"]+)"',
231f76b5
PH
80 lpage))
81
82 return {
83 '_type': 'playlist',
84 'id': username,
85 'entries': [{
86 '_type': 'url',
56dd5572 87 'url': eurl,
231f76b5 88 'ie_key': 'Toypics',
56dd5572 89 } for eurl in urls]
74af99fc 90 }