mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 14:26:32 -05:00
parent
356ac009d3
commit
1dd6d9ca9d
@ -1006,7 +1006,10 @@ from .paramountplus import (
|
|||||||
)
|
)
|
||||||
from .parliamentliveuk import ParliamentLiveUKIE
|
from .parliamentliveuk import ParliamentLiveUKIE
|
||||||
from .parlview import ParlviewIE
|
from .parlview import ParlviewIE
|
||||||
from .patreon import PatreonIE
|
from .patreon import (
|
||||||
|
PatreonIE,
|
||||||
|
PatreonUserIE
|
||||||
|
)
|
||||||
from .pbs import PBSIE
|
from .pbs import PBSIE
|
||||||
from .pearvideo import PearVideoIE
|
from .pearvideo import PearVideoIE
|
||||||
from .peertube import PeerTubeIE
|
from .peertube import PeerTubeIE
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
# coding: utf-8
|
# coding: utf-8
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
import itertools
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from .vimeo import VimeoIE
|
from .vimeo import VimeoIE
|
||||||
|
|
||||||
@ -14,7 +16,7 @@ from ..utils import (
|
|||||||
parse_iso8601,
|
parse_iso8601,
|
||||||
str_or_none,
|
str_or_none,
|
||||||
try_get,
|
try_get,
|
||||||
url_or_none
|
url_or_none,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@ -185,3 +187,56 @@ class PatreonIE(InfoExtractor):
|
|||||||
})
|
})
|
||||||
|
|
||||||
return info
|
return info
|
||||||
|
|
||||||
|
|
||||||
|
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)
|
||||||
|
Loading…
Reference in New Issue
Block a user