[photovogue] update (#1253)
This commit is contained in:
@@ -7,64 +7,78 @@
|
||||
"""Extractors for https://www.vogue.it/en/photovogue/"""
|
||||
|
||||
from .common import Extractor, Message
|
||||
from datetime import datetime
|
||||
from .. import text
|
||||
|
||||
BASE_PATTERN = r"(?:https?://)?(?:www.vogue.it(?:/en)?/photovogue)"
|
||||
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}"
|
||||
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+)"
|
||||
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",),
|
||||
("https://www.vogue.it/en/photovogue/portfolio/?id=221252"),
|
||||
("https://vogue.it/photovogue/portfolio?id=221252", {
|
||||
"pattern": r"https://images.vogue.it/Photovogue/[^/]+_gallery.jpg",
|
||||
"keyword": {
|
||||
"date": "type:datetime",
|
||||
"favorite_count": int,
|
||||
"favorited": list,
|
||||
"id": int,
|
||||
"image_id": str,
|
||||
"is_favorite": False,
|
||||
"orientation": "re:portrait|landscape",
|
||||
"photographer": {
|
||||
"biography": "Born in 1995. Live in Bologna.",
|
||||
"city": "Bologna",
|
||||
"country_id": 106,
|
||||
"favoritedCount": int,
|
||||
"id": 221252,
|
||||
"isGold": bool,
|
||||
"isPro": bool,
|
||||
"latitude": str,
|
||||
"longitude": str,
|
||||
"name": "Arianna Mattarozzi",
|
||||
"user_id": "38cb0601-4a85-453c-b7dc-7650a037f2ab",
|
||||
"websites": list,
|
||||
},
|
||||
"photographer_id": 221252,
|
||||
"tags": list,
|
||||
"title": str,
|
||||
},
|
||||
}),
|
||||
)
|
||||
|
||||
def __init__(self, match):
|
||||
Extractor.__init__(self, match)
|
||||
self.user_id = match.group(1)
|
||||
|
||||
def _photos(self):
|
||||
page = 0
|
||||
def items(self):
|
||||
for photo in self.photos():
|
||||
url = photo["gallery_image"]
|
||||
photo["title"] = photo["title"].strip()
|
||||
photo["date"] = text.parse_datetime(
|
||||
photo["date"], "%Y-%m-%dT%H:%M:%S.%f%z")
|
||||
|
||||
yield Message.Directory, photo
|
||||
yield Message.Url, url, text.nameext_from_url(url, photo)
|
||||
|
||||
def photos(self):
|
||||
url = "https://api.vogue.it/production/photos"
|
||||
params = {
|
||||
"count": "50",
|
||||
"order_by": "DESC",
|
||||
"page": 0,
|
||||
"photographer_id": self.user_id,
|
||||
}
|
||||
|
||||
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()
|
||||
data = self.request(url, params=params).json()
|
||||
yield from data["items"]
|
||||
|
||||
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"]:
|
||||
if not data["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
|
||||
params["page"] += 1
|
||||
|
||||
Reference in New Issue
Block a user