mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 18:53:21 +01:00
68 lines
2.2 KiB
Python
68 lines
2.2 KiB
Python
# -*- 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://fapachi.com/"""
|
|
|
|
from .common import Extractor, Message
|
|
from .. import text
|
|
|
|
|
|
class FapachiPostExtractor(Extractor):
|
|
"""Extractor for individual posts on fapachi.com"""
|
|
category = "fapachi"
|
|
subcategory = "post"
|
|
root = "https://fapachi.com"
|
|
directory_fmt = ("{category}", "{user}")
|
|
filename_fmt = "{user}_{id}.{extension}"
|
|
archive_fmt = "{user}_{id}"
|
|
pattern = (r"(?:https?://)?(?:www\.)?fapachi\.com"
|
|
r"/(?!search/)([^/?#]+)/media/(\d+)")
|
|
example = "https://fapachi.com/MODEL/media/12345"
|
|
|
|
def __init__(self, match):
|
|
Extractor.__init__(self, match)
|
|
self.user, self.id = match.groups()
|
|
|
|
def items(self):
|
|
data = {
|
|
"user": self.user,
|
|
"id" : self.id,
|
|
}
|
|
page = self.request("{}/{}/media/{}".format(
|
|
self.root, self.user, self.id)).text
|
|
url = self.root + text.extr(page, 'd-block" src="', '"')
|
|
yield Message.Directory, data
|
|
yield Message.Url, url, text.nameext_from_url(url, data)
|
|
|
|
|
|
class FapachiUserExtractor(Extractor):
|
|
"""Extractor for all posts from a fapachi user"""
|
|
category = "fapachi"
|
|
subcategory = "user"
|
|
root = "https://fapachi.com"
|
|
pattern = (r"(?:https?://)?(?:www\.)?fapachi\.com"
|
|
r"/(?!search(?:/|$))([^/?#]+)(?:/page/(\d+))?$")
|
|
example = "https://fapachi.com/MODEL"
|
|
|
|
def __init__(self, match):
|
|
Extractor.__init__(self, match)
|
|
self.user = match.group(1)
|
|
self.num = text.parse_int(match.group(2), 1)
|
|
|
|
def items(self):
|
|
data = {"_extractor": FapachiPostExtractor}
|
|
while True:
|
|
page = self.request("{}/{}/page/{}".format(
|
|
self.root, self.user, self.num)).text
|
|
for post in text.extract_iter(page, 'model-media-prew">', ">"):
|
|
path = text.extr(post, '<a href="', '"')
|
|
if path:
|
|
yield Message.Queue, self.root + path, data
|
|
|
|
if '">Next page</a>' not in page:
|
|
return
|
|
self.num += 1
|