2016-10-02 11:39:18 +00:00
|
|
|
# coding: utf-8
|
2014-07-28 18:40:58 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2021-08-29 21:47:50 +00:00
|
|
|
import itertools
|
|
|
|
|
2014-07-28 18:40:58 +00:00
|
|
|
from .common import InfoExtractor
|
2021-05-27 16:44:43 +00:00
|
|
|
from .vimeo import VimeoIE
|
|
|
|
|
|
|
|
from ..compat import compat_urllib_parse_unquote
|
2018-10-05 19:11:01 +00:00
|
|
|
from ..utils import (
|
|
|
|
clean_html,
|
|
|
|
determine_ext,
|
|
|
|
int_or_none,
|
2019-11-05 13:04:17 +00:00
|
|
|
KNOWN_EXTENSIONS,
|
|
|
|
mimetype2ext,
|
2018-10-05 19:11:01 +00:00
|
|
|
parse_iso8601,
|
2019-11-05 13:04:17 +00:00
|
|
|
str_or_none,
|
|
|
|
try_get,
|
2021-08-29 21:47:50 +00:00
|
|
|
url_or_none,
|
2018-10-05 19:11:01 +00:00
|
|
|
)
|
2014-07-28 18:40:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
class PatreonIE(InfoExtractor):
|
2018-10-05 19:11:01 +00:00
|
|
|
_VALID_URL = r'https?://(?:www\.)?patreon\.com/(?:creation\?hid=|posts/(?:[\w-]+-)?)(?P<id>\d+)'
|
|
|
|
_TESTS = [{
|
|
|
|
'url': 'http://www.patreon.com/creation?hid=743933',
|
|
|
|
'md5': 'e25505eec1053a6e6813b8ed369875cc',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '743933',
|
|
|
|
'ext': 'mp3',
|
|
|
|
'title': 'Episode 166: David Smalley of Dogma Debate',
|
|
|
|
'description': 'md5:713b08b772cd6271b9f3906683cfacdf',
|
|
|
|
'uploader': 'Cognitive Dissonance Podcast',
|
|
|
|
'thumbnail': 're:^https?://.*$',
|
|
|
|
'timestamp': 1406473987,
|
|
|
|
'upload_date': '20140727',
|
2019-11-05 13:04:17 +00:00
|
|
|
'uploader_id': '87145',
|
2018-10-05 19:11:01 +00:00
|
|
|
},
|
|
|
|
}, {
|
|
|
|
'url': 'http://www.patreon.com/creation?hid=754133',
|
|
|
|
'md5': '3eb09345bf44bf60451b8b0b81759d0a',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '754133',
|
|
|
|
'ext': 'mp3',
|
|
|
|
'title': 'CD 167 Extra',
|
|
|
|
'uploader': 'Cognitive Dissonance Podcast',
|
|
|
|
'thumbnail': 're:^https?://.*$',
|
2014-07-28 18:40:58 +00:00
|
|
|
},
|
2018-10-05 19:11:01 +00:00
|
|
|
'skip': 'Patron-only content',
|
|
|
|
}, {
|
|
|
|
'url': 'https://www.patreon.com/creation?hid=1682498',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'SU4fj_aEMVw',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'I\'m on Patreon!',
|
|
|
|
'uploader': 'TraciJHines',
|
|
|
|
'thumbnail': 're:^https?://.*$',
|
|
|
|
'upload_date': '20150211',
|
|
|
|
'description': 'md5:c5a706b1f687817a3de09db1eb93acd4',
|
|
|
|
'uploader_id': 'TraciJHines',
|
2014-08-05 05:26:23 +00:00
|
|
|
},
|
2018-10-05 19:11:01 +00:00
|
|
|
'params': {
|
|
|
|
'noplaylist': True,
|
|
|
|
'skip_download': True,
|
2015-02-19 00:04:19 +00:00
|
|
|
}
|
2018-10-05 19:11:01 +00:00
|
|
|
}, {
|
|
|
|
'url': 'https://www.patreon.com/posts/episode-166-of-743933',
|
|
|
|
'only_matching': True,
|
|
|
|
}, {
|
|
|
|
'url': 'https://www.patreon.com/posts/743933',
|
|
|
|
'only_matching': True,
|
2021-05-27 16:44:43 +00:00
|
|
|
}, {
|
|
|
|
'url': 'https://www.patreon.com/posts/kitchen-as-seen-51706779',
|
|
|
|
'md5': '96656690071f6d64895866008484251b',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '555089736',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'KITCHEN AS SEEN ON DEEZ NUTS EXTENDED!',
|
|
|
|
'uploader': 'Cold Ones',
|
|
|
|
'thumbnail': 're:^https?://.*$',
|
|
|
|
'upload_date': '20210526',
|
|
|
|
'description': 'md5:557a409bd79d3898689419094934ba79',
|
|
|
|
'uploader_id': '14936315',
|
|
|
|
},
|
|
|
|
'skip': 'Patron-only content'
|
2018-10-05 19:11:01 +00:00
|
|
|
}]
|
2014-07-28 18:40:58 +00:00
|
|
|
|
|
|
|
# Currently Patreon exposes download URL via hidden CSS, so login is not
|
|
|
|
# needed. Keeping this commented for when this inevitably changes.
|
|
|
|
'''
|
|
|
|
def _login(self):
|
2018-05-26 15:12:44 +00:00
|
|
|
username, password = self._get_login_info()
|
2014-07-28 18:40:58 +00:00
|
|
|
if username is None:
|
|
|
|
return
|
|
|
|
|
|
|
|
login_form = {
|
|
|
|
'redirectUrl': 'http://www.patreon.com/',
|
|
|
|
'email': username,
|
|
|
|
'password': password,
|
|
|
|
}
|
|
|
|
|
2015-11-21 16:18:17 +00:00
|
|
|
request = sanitized_Request(
|
2014-07-28 18:40:58 +00:00
|
|
|
'https://www.patreon.com/processLogin',
|
2016-03-25 19:46:57 +00:00
|
|
|
compat_urllib_parse_urlencode(login_form).encode('utf-8')
|
2014-07-28 18:40:58 +00:00
|
|
|
)
|
2017-11-11 13:49:03 +00:00
|
|
|
login_page = self._download_webpage(request, None, note='Logging in')
|
2014-07-28 18:40:58 +00:00
|
|
|
|
|
|
|
if re.search(r'onLoginFailed', login_page):
|
|
|
|
raise ExtractorError('Unable to login, incorrect username and/or password', expected=True)
|
|
|
|
|
|
|
|
def _real_initialize(self):
|
|
|
|
self._login()
|
|
|
|
'''
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2015-02-18 23:38:05 +00:00
|
|
|
video_id = self._match_id(url)
|
2018-10-05 19:11:01 +00:00
|
|
|
post = self._download_json(
|
2019-11-05 13:04:17 +00:00
|
|
|
'https://www.patreon.com/api/posts/' + video_id, video_id, query={
|
|
|
|
'fields[media]': 'download_url,mimetype,size_bytes',
|
|
|
|
'fields[post]': 'comment_count,content,embed,image,like_count,post_file,published_at,title',
|
|
|
|
'fields[user]': 'full_name,url',
|
|
|
|
'json-api-use-default-includes': 'false',
|
|
|
|
'include': 'media,user',
|
|
|
|
})
|
2018-10-05 19:11:01 +00:00
|
|
|
attributes = post['data']['attributes']
|
|
|
|
title = attributes['title'].strip()
|
|
|
|
image = attributes.get('image') or {}
|
|
|
|
info = {
|
2014-08-22 00:33:29 +00:00
|
|
|
'id': video_id,
|
|
|
|
'title': title,
|
2018-10-05 19:11:01 +00:00
|
|
|
'description': clean_html(attributes.get('content')),
|
|
|
|
'thumbnail': image.get('large_url') or image.get('url'),
|
|
|
|
'timestamp': parse_iso8601(attributes.get('published_at')),
|
|
|
|
'like_count': int_or_none(attributes.get('like_count')),
|
|
|
|
'comment_count': int_or_none(attributes.get('comment_count')),
|
2014-08-22 00:33:29 +00:00
|
|
|
}
|
2018-10-05 19:11:01 +00:00
|
|
|
|
|
|
|
for i in post.get('included', []):
|
|
|
|
i_type = i.get('type')
|
2019-11-05 13:04:17 +00:00
|
|
|
if i_type == 'media':
|
|
|
|
media_attributes = i.get('attributes') or {}
|
|
|
|
download_url = media_attributes.get('download_url')
|
|
|
|
ext = mimetype2ext(media_attributes.get('mimetype'))
|
|
|
|
if download_url and ext in KNOWN_EXTENSIONS:
|
|
|
|
info.update({
|
|
|
|
'ext': ext,
|
|
|
|
'filesize': int_or_none(media_attributes.get('size_bytes')),
|
|
|
|
'url': download_url,
|
|
|
|
})
|
2018-10-05 19:11:01 +00:00
|
|
|
elif i_type == 'user':
|
|
|
|
user_attributes = i.get('attributes')
|
|
|
|
if user_attributes:
|
|
|
|
info.update({
|
|
|
|
'uploader': user_attributes.get('full_name'),
|
2019-11-05 13:04:17 +00:00
|
|
|
'uploader_id': str_or_none(i.get('id')),
|
2018-10-05 19:11:01 +00:00
|
|
|
'uploader_url': user_attributes.get('url'),
|
|
|
|
})
|
|
|
|
|
2021-05-27 16:44:43 +00:00
|
|
|
if not info.get('url'):
|
|
|
|
# handle Vimeo embeds
|
|
|
|
if try_get(attributes, lambda x: x['embed']['provider']) == 'Vimeo':
|
|
|
|
embed_html = try_get(attributes, lambda x: x['embed']['html'])
|
|
|
|
v_url = url_or_none(compat_urllib_parse_unquote(
|
|
|
|
self._search_regex(r'src=(https%3A%2F%2Fplayer\.vimeo\.com.+)%3F', embed_html, 'vimeo url', fatal=False)))
|
|
|
|
if v_url:
|
|
|
|
info.update({
|
|
|
|
'_type': 'url_transparent',
|
|
|
|
'url': VimeoIE._smuggle_referrer(v_url, 'https://patreon.com'),
|
|
|
|
'ie_key': 'Vimeo',
|
|
|
|
})
|
|
|
|
|
2018-10-05 21:45:04 +00:00
|
|
|
if not info.get('url'):
|
2019-11-05 13:04:17 +00:00
|
|
|
embed_url = try_get(attributes, lambda x: x['embed']['url'])
|
|
|
|
if embed_url:
|
|
|
|
info.update({
|
|
|
|
'_type': 'url',
|
|
|
|
'url': embed_url,
|
|
|
|
})
|
2018-10-05 21:45:04 +00:00
|
|
|
|
2018-10-05 19:11:01 +00:00
|
|
|
if not info.get('url'):
|
2019-11-05 13:04:17 +00:00
|
|
|
post_file = attributes['post_file']
|
|
|
|
ext = determine_ext(post_file.get('name'))
|
|
|
|
if ext in KNOWN_EXTENSIONS:
|
|
|
|
info.update({
|
|
|
|
'ext': ext,
|
|
|
|
'url': post_file['url'],
|
|
|
|
})
|
2018-10-05 19:11:01 +00:00
|
|
|
|
|
|
|
return info
|
2021-08-29 21:47:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
class PatreonUserIE(InfoExtractor):
|
|
|
|
|
|
|
|
_VALID_URL = r'https?://(?:www\.)?patreon\.com/(?P<id>[-_\w\d]+)/?(?:posts/?)?'
|
|
|
|
|
|
|
|
_TESTS = [{
|
|
|
|
'url': 'https://www.patreon.com/dissonancepod/',
|
|
|
|
'info_dict': {
|
|
|
|
'title': 'dissonancepod',
|
|
|
|
},
|
|
|
|
'playlist_mincount': 68,
|
|
|
|
'expected_warnings': 'Post not viewable by current user! Skipping!',
|
|
|
|
}, {
|
|
|
|
'url': 'https://www.patreon.com/dissonancepod/posts',
|
|
|
|
'only_matching': True
|
|
|
|
}, ]
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def suitable(cls, url):
|
|
|
|
return False if PatreonIE.suitable(url) else super(PatreonUserIE, cls).suitable(url)
|
|
|
|
|
|
|
|
def _entries(self, campaign_id, user_id):
|
|
|
|
cursor = None
|
|
|
|
params = {
|
|
|
|
'fields[campaign]': 'show_audio_post_download_links,name,url',
|
|
|
|
'fields[post]': 'current_user_can_view,embed,image,is_paid,post_file,published_at,patreon_url,url,post_type,thumbnail_url,title',
|
|
|
|
'filter[campaign_id]': campaign_id,
|
|
|
|
'filter[is_draft]': 'false',
|
|
|
|
'sort': '-published_at',
|
|
|
|
'json-api-version': 1.0,
|
|
|
|
'json-api-use-default-includes': 'false',
|
|
|
|
}
|
|
|
|
|
|
|
|
for page in itertools.count(1):
|
|
|
|
|
|
|
|
params.update({'page[cursor]': cursor} if cursor else {})
|
|
|
|
posts_json = self._download_json('https://www.patreon.com/api/posts', user_id, note='Downloading posts page %d' % page, query=params, headers={'Cookie': '.'})
|
|
|
|
|
|
|
|
cursor = try_get(posts_json, lambda x: x['meta']['pagination']['cursors']['next'])
|
|
|
|
|
|
|
|
for post in posts_json.get('data') or []:
|
|
|
|
yield self.url_result(url_or_none(try_get(post, lambda x: x['attributes']['patreon_url'])), 'Patreon')
|
|
|
|
|
|
|
|
if cursor is None:
|
|
|
|
break
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
|
|
|
|
user_id = self._match_id(url)
|
|
|
|
webpage = self._download_webpage(url, user_id, headers={'Cookie': '.'})
|
|
|
|
campaign_id = self._search_regex(r'https://www.patreon.com/api/campaigns/(\d+)/?', webpage, 'Campaign ID')
|
|
|
|
return self.playlist_result(self._entries(campaign_id, user_id), playlist_title=user_id)
|