Skip to content

Commit

Permalink
[photovogue] added portfolio extractor (#1253)
Browse files Browse the repository at this point in the history
  • Loading branch information
razielgn authored Jan 22, 2021
1 parent 0265fbd commit 2529781
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/supportedsites.rst
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ Nyafuu Archive https://archive.nyafuu.org/ Boards, Search Results,
Patreon https://www.patreon.com/ Creators, Posts, User Profiles `Cookies <https://github.com/mikf/gallery-dl#cookies>`__
Pawoo https://pawoo.net/ Images from Statuses, User Profiles `OAuth <https://github.com/mikf/gallery-dl#oauth>`__
Photobucket https://photobucket.com/ Albums, individual Images
PhotoVogue https://www.vogue.it/en/photovogue/ User profiles
Piczel https://piczel.tv/ Folders, individual Images, User Profiles
Pinterest https://www.pinterest.com/ |pinterest-C| Supported
Pixiv https://www.pixiv.net/ |pixiv-C| Required
Expand Down
1 change: 1 addition & 0 deletions gallery_dl/extractor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@
"paheal",
"patreon",
"photobucket",
"photovogue",
"piczel",
"pinterest",
"pixiv",
Expand Down
70 changes: 70 additions & 0 deletions gallery_dl/extractor/photovogue.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
# -*- coding: utf-8 -*-

# 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://www.vogue.it/en/photovogue/"""

from .common import Extractor, Message
from datetime import datetime

BASE_PATTERN = r"(?:https?://)?(?:www.vogue.it(?:/en)?/photovogue)"


class PhotovogueUserExtractor(Extractor):
category = "photovogue"
subcategory = "user"
directory_fmt = ("{category}", "{photographer[id]}_{photographer[name]}")
filename_fmt = "{id}_{title}.{extension}"
archive_fmt = "{id}"
root = "https://www.vogue.it/en/photovogue/"
pattern = BASE_PATTERN + r"/portfolio/\?id=(\d+)"
test = (
("https://www.vogue.it/en/photovogue/portfolio/?id=221252",),
("https://www.vogue.it/photovogue/portfolio/?id=221252",),
)

def __init__(self, match):
Extractor.__init__(self, match)
self.user_id = match.group(1)

def _photos(self):
page = 0

while True:
res = self.request(
"https://api.vogue.it/production/photos",
params={
"count": 50,
"order_by": "DESC",
"page": page,
"photographer_id": self.user_id,
},
).json()

for item in res["items"]:
item["extension"] = "jpg"
item["title"] = item["title"].strip()
item["_mtime"] = datetime.fromisoformat(
item["date"].replace("Z", "+00:00")
).timestamp()

yield item

if not res["has_next"]:
break

page += 1

def items(self):
yield Message.Version, 1

yielded_dir = False

for photo in self._photos():
if not yielded_dir:
yield Message.Directory, photo
yielded_dir = True

yield Message.Url, photo["gallery_image"], photo

0 comments on commit 2529781

Please sign in to comment.