mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-21 18:22:30 +01:00
merge #6475: [imagechest] fix extractors
This commit is contained in:
commit
f0419574a5
@ -10,7 +10,7 @@
|
|||||||
"""Extractors for https://imgchest.com/"""
|
"""Extractors for https://imgchest.com/"""
|
||||||
|
|
||||||
from .common import GalleryExtractor, Extractor, Message
|
from .common import GalleryExtractor, Extractor, Message
|
||||||
from .. import text, exception
|
from .. import text, util, exception
|
||||||
|
|
||||||
BASE_PATTERN = r"(?:https?://)?(?:www\.)?imgchest\.com"
|
BASE_PATTERN = r"(?:https?://)?(?:www\.)?imgchest\.com"
|
||||||
|
|
||||||
@ -33,35 +33,23 @@ class ImagechestGalleryExtractor(GalleryExtractor):
|
|||||||
self.api = ImagechestAPI(self, access_token)
|
self.api = ImagechestAPI(self, access_token)
|
||||||
self.gallery_url = None
|
self.gallery_url = None
|
||||||
self.metadata = self._metadata_api
|
self.metadata = self._metadata_api
|
||||||
self.images = self._images_api
|
|
||||||
|
|
||||||
def metadata(self, page):
|
def metadata(self, page):
|
||||||
if "Sorry, but the page you requested could not be found." in page:
|
try:
|
||||||
raise exception.NotFoundError("gallery")
|
data = util.json_loads(text.unescape(text.extr(
|
||||||
|
page, 'data-page="', '"')))
|
||||||
|
post = data["props"]["post"]
|
||||||
|
except Exception:
|
||||||
|
if "<title>Not Found</title>" in page:
|
||||||
|
raise exception.NotFoundError("gallery")
|
||||||
|
self.files = ()
|
||||||
|
return {}
|
||||||
|
|
||||||
return {
|
self.files = post.pop("files", ())
|
||||||
"gallery_id": self.gallery_id,
|
post["gallery_id"] = self.gallery_id
|
||||||
"title": text.unescape(text.extr(
|
post["tags"] = [tag["name"] for tag in post["tags"]]
|
||||||
page, 'property="og:title" content="', '"').strip())
|
|
||||||
}
|
|
||||||
|
|
||||||
def images(self, page):
|
return post
|
||||||
if ' load-all">' in page:
|
|
||||||
url = "{}/p/{}/loadAll".format(self.root, self.gallery_id)
|
|
||||||
headers = {
|
|
||||||
"X-Requested-With": "XMLHttpRequest",
|
|
||||||
"Origin" : self.root,
|
|
||||||
"Referer" : self.gallery_url,
|
|
||||||
}
|
|
||||||
csrf_token = text.extr(page, 'name="csrf-token" content="', '"')
|
|
||||||
data = {"_token": csrf_token}
|
|
||||||
page += self.request(
|
|
||||||
url, method="POST", headers=headers, data=data).text
|
|
||||||
|
|
||||||
return [
|
|
||||||
(url, None)
|
|
||||||
for url in text.extract_iter(page, 'data-url="', '"')
|
|
||||||
]
|
|
||||||
|
|
||||||
def _metadata_api(self, page):
|
def _metadata_api(self, page):
|
||||||
post = self.api.post(self.gallery_id)
|
post = self.api.post(self.gallery_id)
|
||||||
@ -74,15 +62,18 @@ class ImagechestGalleryExtractor(GalleryExtractor):
|
|||||||
|
|
||||||
post["gallery_id"] = self.gallery_id
|
post["gallery_id"] = self.gallery_id
|
||||||
post.pop("image_count", None)
|
post.pop("image_count", None)
|
||||||
self._image_list = post.pop("images")
|
self.files = post.pop("images")
|
||||||
|
|
||||||
return post
|
return post
|
||||||
|
|
||||||
def _images_api(self, page):
|
def images(self, page):
|
||||||
return [
|
try:
|
||||||
(img["link"], img)
|
return [
|
||||||
for img in self._image_list
|
(file["link"], file)
|
||||||
]
|
for file in self.files
|
||||||
|
]
|
||||||
|
except Exception:
|
||||||
|
return ()
|
||||||
|
|
||||||
|
|
||||||
class ImagechestUserExtractor(Extractor):
|
class ImagechestUserExtractor(Extractor):
|
||||||
@ -93,10 +84,6 @@ class ImagechestUserExtractor(Extractor):
|
|||||||
pattern = BASE_PATTERN + r"/u/([^/?#]+)"
|
pattern = BASE_PATTERN + r"/u/([^/?#]+)"
|
||||||
example = "https://imgchest.com/u/USER"
|
example = "https://imgchest.com/u/USER"
|
||||||
|
|
||||||
def __init__(self, match):
|
|
||||||
Extractor.__init__(self, match)
|
|
||||||
self.user = match.group(1)
|
|
||||||
|
|
||||||
def items(self):
|
def items(self):
|
||||||
url = self.root + "/api/posts"
|
url = self.root + "/api/posts"
|
||||||
params = {
|
params = {
|
||||||
@ -104,7 +91,7 @@ class ImagechestUserExtractor(Extractor):
|
|||||||
"sort" : "new",
|
"sort" : "new",
|
||||||
"tag" : "",
|
"tag" : "",
|
||||||
"q" : "",
|
"q" : "",
|
||||||
"username": text.unquote(self.user),
|
"username": text.unquote(self.groups[0]),
|
||||||
"nsfw" : "true",
|
"nsfw" : "true",
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -114,6 +101,9 @@ class ImagechestUserExtractor(Extractor):
|
|||||||
except (TypeError, KeyError):
|
except (TypeError, KeyError):
|
||||||
return
|
return
|
||||||
|
|
||||||
|
if not data:
|
||||||
|
return
|
||||||
|
|
||||||
for gallery in data:
|
for gallery in data:
|
||||||
gallery["_extractor"] = ImagechestGalleryExtractor
|
gallery["_extractor"] = ImagechestGalleryExtractor
|
||||||
yield Message.Queue, gallery["link"], gallery
|
yield Message.Queue, gallery["link"], gallery
|
||||||
|
Loading…
Reference in New Issue
Block a user