1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-22 18:53:21 +01:00
gallery-dl/gallery_dl/extractor/shopify.py

126 lines
3.8 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
# Copyright 2019-2023 Mike Fährmann
#
# 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 Shopify instances"""
2021-01-27 23:43:14 +01:00
from .common import BaseExtractor, Message
2019-03-07 22:55:26 +01:00
from .. import text
2021-01-27 23:43:14 +01:00
class ShopifyExtractor(BaseExtractor):
"""Base class for Shopify extractors"""
basecategory = "shopify"
filename_fmt = "{product[title]}_{num:>02}_{id}.{extension}"
archive_fmt = "{id}"
def __init__(self, match):
2021-01-27 23:43:14 +01:00
BaseExtractor.__init__(self, match)
self.item_url = self.root + match.group(match.lastindex)
def items(self):
data = self.metadata()
yield Message.Directory, data
for product in self.products():
for num, image in enumerate(product.pop("images"), 1):
text.nameext_from_url(image["src"], image)
image.update(data)
image["product"] = product
image["num"] = num
yield Message.Url, image["src"], image
def metadata(self):
"""Return general metadata"""
return {}
def products(self):
"""Return an iterable with all relevant product URLs"""
2021-01-27 23:43:14 +01:00
BASE_PATTERN = ShopifyExtractor.update({
"chelseacrew": {
"root": "https://chelseacrew.com",
"pattern": r"(?:www\.)?chelseacrew\.com",
},
2021-01-27 23:43:14 +01:00
"fashionnova": {
"root": "https://www.fashionnova.com",
"pattern": r"(?:www\.)?fashionnova\.com",
},
"loungeunderwear": {
"root": "https://loungeunderwear.com",
"pattern": r"(?:[a-z]+\.)?loungeunderwear\.com",
},
"michaelscameras": {
"root": "https://michaels.com.au",
"pattern": r"michaels\.com\.au",
},
"modcloth": {
"root": "https://modcloth.com",
"pattern": r"modcloth\.com",
},
2023-01-31 19:54:41 +01:00
"ohpolly": {
"root": "https://www.ohpolly.com",
"pattern": r"(?:www\.)?ohpolly\.com",
},
"omgmiamiswimwear": {
"root": "https://www.omgmiamiswimwear.com",
"pattern": r"(?:www\.)?omgmiamiswimwear\.com",
},
"pinupgirlclothing": {
"root": "https://pinupgirlclothing.com",
"pattern": r"pinupgirlclothing\.com",
},
"raidlondon": {
"root": "https://www.raidlondon.com",
"pattern": r"(?:www\.)?raidlondon\.com",
},
"unique-vintage": {
"root": "https://www.unique-vintage.com",
"pattern": r"(?:www\.)?unique\-vintage\.com",
},
"windsorstore": {
"root": "https://www.windsorstore.com",
"pattern": r"(?:www\.)?windsorstore\.com",
},
2021-01-27 23:43:14 +01:00
})
class ShopifyCollectionExtractor(ShopifyExtractor):
"""Base class for collection extractors for Shopify based sites"""
subcategory = "collection"
directory_fmt = ("{category}", "{collection[title]}")
2021-01-27 23:43:14 +01:00
pattern = BASE_PATTERN + r"(/collections/[\w-]+)/?(?:$|[?#])"
example = "https://www.fashionnova.com/collections/TITLE"
def metadata(self):
return self.request(self.item_url + ".json").json()
def products(self):
url = self.item_url + "/products.json"
2023-04-03 08:49:09 +02:00
params = {"page": 1}
2023-04-03 08:49:09 +02:00
while True:
data = self.request(url, params=params).json()["products"]
if not data:
return
2023-04-03 08:49:09 +02:00
yield from data
params["page"] += 1
class ShopifyProductExtractor(ShopifyExtractor):
"""Base class for product extractors for Shopify based sites"""
subcategory = "product"
directory_fmt = ("{category}", "Products")
2021-01-27 23:43:14 +01:00
pattern = BASE_PATTERN + r"((?:/collections/[\w-]+)?/products/[\w-]+)"
example = "https://www.fashionnova.com/collections/TITLE/products/NAME"
def products(self):
product = self.request(self.item_url + ".json").json()["product"]
del product["image"]
return (product,)