mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-23 03:02:50 +01:00
56 lines
1.8 KiB
Python
56 lines
1.8 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2020 Leonardo Taccari
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License version 2 as
|
|
# published by the Free Software Foundation.
|
|
|
|
"""Extractors for https://speakerdeck.com/"""
|
|
|
|
from .common import GalleryExtractor
|
|
from .. import text
|
|
import re
|
|
|
|
|
|
class SpeakerdeckPresentationExtractor(GalleryExtractor):
|
|
"""Extractor for images from a presentation on speakerdeck.com"""
|
|
category = "speakerdeck"
|
|
subcategory = "presentation"
|
|
directory_fmt = ("{category}", "{user}")
|
|
filename_fmt = "{presentation}-{num:>02}.{extension}"
|
|
archive_fmt = "{presentation}_{num}"
|
|
root = "https://speakerdeck.com"
|
|
pattern = r"(?:https?://)?(?:www\.)?speakerdeck\.com/([^/?#]+)/([^/?#]+)"
|
|
example = "https://speakerdeck.com/USER/PRESENTATION"
|
|
|
|
def __init__(self, match):
|
|
GalleryExtractor.__init__(self, match, "")
|
|
self.user, self.presentation = match.groups()
|
|
|
|
def metadata(self, _):
|
|
url = self.root + "/oembed.json"
|
|
params = {
|
|
"url": "{}/{}/{}".format(self.root, self.user, self.presentation),
|
|
}
|
|
data = self.request(url, params=params).json()
|
|
|
|
self.presentation_id = text.extr(
|
|
data["html"], 'src="//speakerdeck.com/player/', '"')
|
|
|
|
return {
|
|
"user": self.user,
|
|
"presentation": self.presentation,
|
|
"presentation_id": self.presentation_id,
|
|
"title": data["title"],
|
|
"author": data["author_name"],
|
|
}
|
|
|
|
def images(self, _):
|
|
url = "{}/player/{}".format(self.root, self.presentation_id)
|
|
page = re.sub(r"\s+", " ", self.request(url).text)
|
|
return [
|
|
(url, None)
|
|
for url in text.extract_iter(page, 'js-sd-slide" data-url="', '"')
|
|
]
|