]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/piapro.py
Tolerate failure to `--write-link` due to unknown URL
[yt-dlp.git] / yt_dlp / extractor / piapro.py
CommitLineData
6bb608d0
LNO
1# coding: utf-8
2from __future__ import unicode_literals
3
4from .common import InfoExtractor
5from ..compat import compat_urlparse
6from ..utils import (
7 ExtractorError,
8 parse_duration,
9 parse_filesize,
10 str_to_int,
11 unified_timestamp,
12 urlencode_postdata,
13)
14
15
16class PiaproIE(InfoExtractor):
17 _NETRC_MACHINE = 'piapro'
18 _VALID_URL = r'https?://piapro\.jp/t/(?P<id>\w+)/?'
19 _TESTS = [{
20 'url': 'https://piapro.jp/t/NXYR',
21 'md5': 'a9d52f27d13bafab7ee34116a7dcfa77',
22 'info_dict': {
23 'id': 'NXYR',
24 'ext': 'mp3',
25 'uploader': 'wowaka',
26 'uploader_id': 'wowaka',
27 'title': '裏表ラバーズ',
28 'thumbnail': r're:^https?://.*\.jpg$',
29 }
30 }]
31
32 def _real_initialize(self):
33 self._login_status = self._login()
34
35 def _login(self):
36 username, password = self._get_login_info()
37 if not username:
38 return False
39 login_ok = True
40 login_form_strs = {
41 '_username': username,
42 '_password': password,
43 '_remember_me': 'on',
44 'login': 'ログイン'
45 }
46 self._request_webpage('https://piapro.jp/login/', None)
47 urlh = self._request_webpage(
48 'https://piapro.jp/login/exe', None,
49 note='Logging in', errnote='Unable to log in',
50 data=urlencode_postdata(login_form_strs))
51 if urlh is False:
52 login_ok = False
53 else:
54 parts = compat_urlparse.urlparse(urlh.geturl())
55 if parts.path != '/':
56 login_ok = False
57 if not login_ok:
58 self.report_warning(
59 'unable to log in: bad username or password')
60 return login_ok
61
62 def _real_extract(self, url):
63 video_id = self._match_id(url)
64 webpage = self._download_webpage(url, video_id)
65
66 category_id = self._search_regex(r'categoryId=(.+)">', webpage, 'category ID')
67 if category_id not in ('1', '2', '21', '22', '23', '24', '25'):
68 raise ExtractorError('The URL does not contain audio.', expected=True)
69
70 str_duration, str_filesize = self._search_regex(
71 r'サイズ:</span>(.+?)/\(([0-9,]+?[KMG]?B))', webpage, 'duration and size',
72 group=(1, 2), default=(None, None))
73 str_viewcount = self._search_regex(r'閲覧数:</span>([0-9,]+)\s+', webpage, 'view count', fatal=False)
74
75 uploader_id, uploader = self._search_regex(
76 r'<a\s+class="cd_user-name"\s+href="/(.*)">([^<]+)さん<', webpage, 'uploader',
77 group=(1, 2), default=(None, None))
78 content_id = self._search_regex(r'contentId\:\'(.+)\'', webpage, 'content ID')
79 create_date = self._search_regex(r'createDate\:\'(.+)\'', webpage, 'timestamp')
80
81 player_webpage = self._download_webpage(
82 f'https://piapro.jp/html5_player_popup/?id={content_id}&cdate={create_date}',
83 video_id, note='Downloading player webpage')
84
85 return {
86 'id': video_id,
87 'title': self._html_search_regex(r'<h1\s+class="cd_works-title">(.+?)</h1>', webpage, 'title', fatal=False),
88 'description': self._html_search_regex(r'<p\s+class="cd_dtl_cap">(.+?)</p>\s*<div', webpage, 'description', fatal=False),
89 'uploader': uploader,
90 'uploader_id': uploader_id,
91 'timestamp': unified_timestamp(create_date, False),
92 'duration': parse_duration(str_duration),
93 'view_count': str_to_int(str_viewcount),
94 'thumbnail': self._html_search_meta('twitter:image', webpage),
95
96 'filesize_approx': parse_filesize(str_filesize.replace(',', '')),
97 'url': self._search_regex(r'mp3:\s*\'(.*?)\'\}', player_webpage, 'url'),
98 'ext': 'mp3',
99 'vcodec': 'none',
100 }