2016-09-02 19:11:16 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2022-03-21 10:11:51 +01:00
|
|
|
# Copyright 2016-2022 Mike Fährmann
|
2016-09-02 19:11:16 +02:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2020-06-16 14:41:05 +02:00
|
|
|
"""Extractors for https://www.pinterest.com/"""
|
2016-09-02 19:11:16 +02:00
|
|
|
|
|
|
|
from .common import Extractor, Message
|
2020-10-15 00:51:53 +02:00
|
|
|
from .. import text, util, exception
|
|
|
|
from ..cache import cache
|
2020-06-16 14:41:05 +02:00
|
|
|
import itertools
|
2018-04-24 22:17:25 +02:00
|
|
|
import json
|
2016-09-02 19:11:16 +02:00
|
|
|
|
2020-07-27 14:41:34 +02:00
|
|
|
BASE_PATTERN = r"(?:https?://)?(?:\w+\.)?pinterest\.[\w.]+"
|
2018-08-15 21:28:27 +02:00
|
|
|
|
|
|
|
|
2016-09-03 10:00:32 +02:00
|
|
|
class PinterestExtractor(Extractor):
|
|
|
|
"""Base class for pinterest extractors"""
|
2016-09-02 19:11:16 +02:00
|
|
|
category = "pinterest"
|
2022-04-06 21:21:33 +02:00
|
|
|
filename_fmt = "{category}_{id}{media_id:?_//}.{extension}"
|
|
|
|
archive_fmt = "{id}{media_id}"
|
2020-12-29 16:57:03 +01:00
|
|
|
root = "https://www.pinterest.com"
|
2016-09-02 19:11:16 +02:00
|
|
|
|
2019-02-11 13:31:10 +01:00
|
|
|
def __init__(self, match):
|
|
|
|
Extractor.__init__(self, match)
|
2017-09-09 17:31:42 +02:00
|
|
|
self.api = PinterestAPI(self)
|
2016-09-02 19:11:16 +02:00
|
|
|
|
2018-08-15 21:28:27 +02:00
|
|
|
def items(self):
|
2020-10-15 00:51:53 +02:00
|
|
|
self.api.login()
|
2018-08-15 21:28:27 +02:00
|
|
|
data = self.metadata()
|
2020-12-21 16:09:06 +01:00
|
|
|
videos = self.config("videos", True)
|
2018-08-15 21:28:27 +02:00
|
|
|
|
2020-12-21 16:09:06 +01:00
|
|
|
yield Message.Directory, data
|
2018-08-15 21:28:27 +02:00
|
|
|
for pin in self.pins():
|
2022-07-03 18:12:16 +02:00
|
|
|
|
|
|
|
if isinstance(pin, tuple):
|
|
|
|
url, data = pin
|
|
|
|
yield Message.Queue, url, data
|
|
|
|
continue
|
|
|
|
|
2022-04-06 21:21:33 +02:00
|
|
|
pin.update(data)
|
|
|
|
|
|
|
|
carousel_data = pin.get("carousel_data")
|
|
|
|
if carousel_data:
|
|
|
|
for num, slot in enumerate(carousel_data["carousel_slots"], 1):
|
|
|
|
slot["media_id"] = slot.pop("id")
|
|
|
|
pin.update(slot)
|
|
|
|
pin["num"] = num
|
|
|
|
size, image = next(iter(slot["images"].items()))
|
|
|
|
url = image["url"].replace("/" + size + "/", "/originals/")
|
|
|
|
yield Message.Url, url, text.nameext_from_url(url, pin)
|
2020-12-21 16:09:06 +01:00
|
|
|
|
2022-04-06 21:21:33 +02:00
|
|
|
else:
|
|
|
|
try:
|
|
|
|
media = self._media_from_pin(pin)
|
|
|
|
except Exception:
|
|
|
|
self.log.debug("Unable to fetch download URL for pin %s",
|
|
|
|
pin.get("id"))
|
|
|
|
continue
|
2020-12-21 16:09:06 +01:00
|
|
|
|
2022-04-06 21:21:33 +02:00
|
|
|
if videos or media.get("duration") is None:
|
|
|
|
pin.update(media)
|
|
|
|
pin["num"] = 0
|
|
|
|
pin["media_id"] = ""
|
2020-12-21 16:09:06 +01:00
|
|
|
|
2022-04-06 21:21:33 +02:00
|
|
|
url = media["url"]
|
|
|
|
text.nameext_from_url(url, pin)
|
2020-12-21 16:09:06 +01:00
|
|
|
|
2022-04-06 21:21:33 +02:00
|
|
|
if pin["extension"] == "m3u8":
|
|
|
|
url = "ytdl:" + url
|
|
|
|
pin["extension"] = "mp4"
|
2020-12-21 16:09:06 +01:00
|
|
|
|
2022-04-06 21:21:33 +02:00
|
|
|
yield Message.Url, url, pin
|
2018-08-15 21:28:27 +02:00
|
|
|
|
2018-08-16 18:11:39 +02:00
|
|
|
def metadata(self):
|
|
|
|
"""Return general metadata"""
|
|
|
|
|
|
|
|
def pins(self):
|
2020-12-21 16:09:06 +01:00
|
|
|
"""Return all relevant pin objects"""
|
2018-08-16 18:11:39 +02:00
|
|
|
|
|
|
|
@staticmethod
|
2020-12-21 16:09:06 +01:00
|
|
|
def _media_from_pin(pin):
|
|
|
|
videos = pin.get("videos")
|
|
|
|
if videos:
|
|
|
|
video_formats = videos["video_list"]
|
|
|
|
|
|
|
|
for fmt in ("V_HLSV4", "V_HLSV3_WEB", "V_HLSV3_MOBILE"):
|
|
|
|
if fmt in video_formats:
|
|
|
|
media = video_formats[fmt]
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
media = max(video_formats.values(),
|
|
|
|
key=lambda x: x.get("width", 0))
|
|
|
|
|
|
|
|
if "V_720P" in video_formats:
|
|
|
|
media["_fallback"] = (video_formats["V_720P"]["url"],)
|
|
|
|
|
|
|
|
return media
|
|
|
|
|
|
|
|
return pin["images"]["orig"]
|
2016-09-03 10:00:32 +02:00
|
|
|
|
|
|
|
|
|
|
|
class PinterestPinExtractor(PinterestExtractor):
|
2016-09-12 10:20:57 +02:00
|
|
|
"""Extractor for images from a single pin from pinterest.com"""
|
2016-09-03 10:00:32 +02:00
|
|
|
subcategory = "pin"
|
2019-02-08 13:45:40 +01:00
|
|
|
pattern = BASE_PATTERN + r"/pin/([^/?#&]+)(?!.*#related$)"
|
|
|
|
test = (
|
2017-01-03 12:12:36 +01:00
|
|
|
("https://www.pinterest.com/pin/858146903966145189/", {
|
2018-03-06 14:28:21 +01:00
|
|
|
"url": "afb3c26719e3a530bb0e871c480882a801a4e8a5",
|
2020-01-18 21:06:44 +01:00
|
|
|
"content": ("4c435a66f6bb82bb681db2ecc888f76cf6c5f9ca",
|
|
|
|
"d3e24bc9f7af585e8c23b9136956bd45a4d9b947"),
|
2017-01-03 12:12:36 +01:00
|
|
|
}),
|
2020-12-21 16:09:06 +01:00
|
|
|
# video pin (#1189)
|
|
|
|
("https://www.pinterest.com/pin/422564377542934214/", {
|
|
|
|
"pattern": r"https://v\.pinimg\.com/videos/mc/hls/d7/22/ff"
|
|
|
|
r"/d722ff00ab2352981b89974b37909de8.m3u8",
|
|
|
|
}),
|
2017-01-03 12:12:36 +01:00
|
|
|
("https://www.pinterest.com/pin/858146903966145188/", {
|
2018-04-17 17:12:42 +02:00
|
|
|
"exception": exception.NotFoundError,
|
|
|
|
}),
|
2019-02-08 13:45:40 +01:00
|
|
|
)
|
2016-09-03 10:00:32 +02:00
|
|
|
|
|
|
|
def __init__(self, match):
|
2019-02-11 13:31:10 +01:00
|
|
|
PinterestExtractor.__init__(self, match)
|
2016-09-03 10:00:32 +02:00
|
|
|
self.pin_id = match.group(1)
|
2018-08-15 21:28:27 +02:00
|
|
|
self.pin = None
|
2016-09-03 10:00:32 +02:00
|
|
|
|
2018-08-15 21:28:27 +02:00
|
|
|
def metadata(self):
|
|
|
|
self.pin = self.api.pin(self.pin_id)
|
2020-12-21 16:09:06 +01:00
|
|
|
return self.pin
|
2018-08-15 21:28:27 +02:00
|
|
|
|
|
|
|
def pins(self):
|
|
|
|
return (self.pin,)
|
2016-09-03 10:00:32 +02:00
|
|
|
|
|
|
|
|
|
|
|
class PinterestBoardExtractor(PinterestExtractor):
|
2016-09-12 10:20:57 +02:00
|
|
|
"""Extractor for images from a board from pinterest.com"""
|
2016-09-03 10:00:32 +02:00
|
|
|
subcategory = "board"
|
2019-02-08 13:45:40 +01:00
|
|
|
directory_fmt = ("{category}", "{board[owner][username]}", "{board[name]}")
|
2018-04-24 22:17:25 +02:00
|
|
|
archive_fmt = "{board[id]}_{id}"
|
2022-04-01 16:59:58 +02:00
|
|
|
pattern = (BASE_PATTERN + r"/(?!pin/)([^/?#&]+)"
|
|
|
|
"/(?!_saved|_created)([^/?#&]+)/?$")
|
2019-02-08 13:45:40 +01:00
|
|
|
test = (
|
2017-01-03 12:12:36 +01:00
|
|
|
("https://www.pinterest.com/g1952849/test-/", {
|
2018-12-02 19:37:50 +01:00
|
|
|
"pattern": r"https://i\.pinimg\.com/originals/",
|
|
|
|
"count": 2,
|
2017-01-03 12:12:36 +01:00
|
|
|
}),
|
2020-06-16 14:41:05 +02:00
|
|
|
# board with sections (#835)
|
2020-06-20 23:22:40 +02:00
|
|
|
("https://www.pinterest.com/g1952849/stuff/", {
|
2020-06-16 14:41:05 +02:00
|
|
|
"options": (("sections", True),),
|
|
|
|
"count": 5,
|
|
|
|
}),
|
2020-10-15 00:51:53 +02:00
|
|
|
# secret board (#1055)
|
|
|
|
("https://www.pinterest.de/g1952849/secret/", {
|
|
|
|
"count": 2,
|
|
|
|
}),
|
2017-01-03 12:12:36 +01:00
|
|
|
("https://www.pinterest.com/g1952848/test/", {
|
2018-05-11 17:28:34 +02:00
|
|
|
"exception": exception.GalleryDLException,
|
2017-01-03 12:12:36 +01:00
|
|
|
}),
|
2020-07-27 14:41:34 +02:00
|
|
|
# .co.uk TLD (#914)
|
|
|
|
("https://www.pinterest.co.uk/hextra7519/based-animals/"),
|
2019-02-08 13:45:40 +01:00
|
|
|
)
|
2016-09-03 10:00:32 +02:00
|
|
|
|
|
|
|
def __init__(self, match):
|
2019-02-11 13:31:10 +01:00
|
|
|
PinterestExtractor.__init__(self, match)
|
2018-04-26 16:36:42 +02:00
|
|
|
self.user = text.unquote(match.group(1))
|
2020-06-16 14:41:05 +02:00
|
|
|
self.board_name = text.unquote(match.group(2))
|
|
|
|
self.board = None
|
2016-09-03 10:00:32 +02:00
|
|
|
|
2018-08-15 21:28:27 +02:00
|
|
|
def metadata(self):
|
2020-06-16 14:41:05 +02:00
|
|
|
self.board = self.api.board(self.user, self.board_name)
|
|
|
|
return {"board": self.board}
|
2018-08-15 21:28:27 +02:00
|
|
|
|
|
|
|
def pins(self):
|
2020-06-16 14:41:05 +02:00
|
|
|
board = self.board
|
2022-07-03 18:12:16 +02:00
|
|
|
pins = self.api.board_pins(board["id"])
|
2020-06-16 14:41:05 +02:00
|
|
|
|
|
|
|
if board["section_count"] and self.config("sections", True):
|
2022-07-03 18:12:16 +02:00
|
|
|
base = "{}/{}/{}/id:".format(
|
|
|
|
self.root, board["owner"]["username"], board["name"])
|
|
|
|
data = {"_extractor": PinterestSectionExtractor}
|
|
|
|
sections = [(base + section["id"], data)
|
|
|
|
for section in self.api.board_sections(board["id"])]
|
|
|
|
pins = itertools.chain(pins, sections)
|
|
|
|
|
|
|
|
return pins
|
2018-08-15 21:28:27 +02:00
|
|
|
|
|
|
|
|
2021-01-02 02:36:53 +01:00
|
|
|
class PinterestUserExtractor(PinterestExtractor):
|
|
|
|
"""Extractor for a user's boards"""
|
|
|
|
subcategory = "user"
|
|
|
|
pattern = BASE_PATTERN + r"/(?!pin/)([^/?#&]+)(?:/_saved)?/?$"
|
|
|
|
test = (
|
|
|
|
("https://www.pinterest.de/g1952849/", {
|
|
|
|
"pattern": PinterestBoardExtractor.pattern,
|
|
|
|
"count": ">= 2",
|
|
|
|
}),
|
|
|
|
("https://www.pinterest.de/g1952849/_saved/"),
|
|
|
|
)
|
2020-12-29 16:57:03 +01:00
|
|
|
|
|
|
|
def __init__(self, match):
|
|
|
|
PinterestExtractor.__init__(self, match)
|
|
|
|
self.user = text.unquote(match.group(1))
|
|
|
|
|
|
|
|
def items(self):
|
|
|
|
for board in self.api.boards(self.user):
|
|
|
|
url = board.get("url")
|
|
|
|
if url:
|
|
|
|
board["_extractor"] = PinterestBoardExtractor
|
|
|
|
yield Message.Queue, self.root + url, board
|
|
|
|
|
|
|
|
|
2022-04-01 16:59:58 +02:00
|
|
|
class PinterestCreatedExtractor(PinterestExtractor):
|
|
|
|
"""Extractor for a user's created pins"""
|
|
|
|
subcategory = "created"
|
|
|
|
directory_fmt = ("{category}", "{user}")
|
|
|
|
pattern = BASE_PATTERN + r"/(?!pin/)([^/?#&]+)/_created/?$"
|
|
|
|
test = ("https://www.pinterest.com/amazon/_created", {
|
|
|
|
"pattern": r"https://i\.pinimg\.com/originals/[0-9a-f]{2}"
|
|
|
|
r"/[0-9a-f]{2}/[0-9a-f]{2}/[0-9a-f]{32}\.jpg",
|
2022-04-06 21:21:33 +02:00
|
|
|
"count": 10,
|
2022-04-01 16:59:58 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
def __init__(self, match):
|
|
|
|
PinterestExtractor.__init__(self, match)
|
|
|
|
self.user = text.unquote(match.group(1))
|
|
|
|
|
|
|
|
def metadata(self):
|
|
|
|
return {"user": self.user}
|
|
|
|
|
|
|
|
def pins(self):
|
|
|
|
return self.api.user_activity_pins(self.user)
|
|
|
|
|
|
|
|
|
2020-06-20 23:22:40 +02:00
|
|
|
class PinterestSectionExtractor(PinterestExtractor):
|
|
|
|
"""Extractor for board sections on pinterest.com"""
|
|
|
|
subcategory = "section"
|
|
|
|
directory_fmt = ("{category}", "{board[owner][username]}",
|
|
|
|
"{board[name]}", "{section[title]}")
|
|
|
|
archive_fmt = "{board[id]}_{id}"
|
|
|
|
pattern = BASE_PATTERN + r"/(?!pin/)([^/?#&]+)/([^/?#&]+)/([^/?#&]+)"
|
|
|
|
test = ("https://www.pinterest.com/g1952849/stuff/section", {
|
|
|
|
"count": 2,
|
|
|
|
})
|
|
|
|
|
|
|
|
def __init__(self, match):
|
|
|
|
PinterestExtractor.__init__(self, match)
|
|
|
|
self.user = text.unquote(match.group(1))
|
|
|
|
self.board_slug = text.unquote(match.group(2))
|
|
|
|
self.section_slug = text.unquote(match.group(3))
|
|
|
|
self.section = None
|
|
|
|
|
|
|
|
def metadata(self):
|
2022-07-03 18:12:16 +02:00
|
|
|
if self.section_slug.startswith("id:"):
|
|
|
|
section = self.section = self.api.board_section(
|
|
|
|
self.section_slug[3:])
|
|
|
|
else:
|
|
|
|
section = self.section = self.api.board_section_by_name(
|
|
|
|
self.user, self.board_slug, self.section_slug)
|
2020-06-20 23:22:40 +02:00
|
|
|
section.pop("preview_pins", None)
|
|
|
|
return {"board": section.pop("board"), "section": section}
|
|
|
|
|
|
|
|
def pins(self):
|
|
|
|
return self.api.board_section_pins(self.section["id"])
|
|
|
|
|
|
|
|
|
2021-03-29 01:41:28 +02:00
|
|
|
class PinterestSearchExtractor(PinterestExtractor):
|
|
|
|
"""Extractor for Pinterest search results"""
|
|
|
|
subcategory = "search"
|
|
|
|
directory_fmt = ("{category}", "Search", "{search}")
|
|
|
|
pattern = BASE_PATTERN + r"/search/pins/?\?q=([^&#]+)"
|
|
|
|
test = ("https://www.pinterest.de/search/pins/?q=nature", {
|
|
|
|
"range": "1-50",
|
|
|
|
"count": ">= 50",
|
|
|
|
})
|
|
|
|
|
|
|
|
def __init__(self, match):
|
|
|
|
PinterestExtractor.__init__(self, match)
|
|
|
|
self.search = match.group(1)
|
|
|
|
|
|
|
|
def metadata(self):
|
|
|
|
return {"search": self.search}
|
|
|
|
|
|
|
|
def pins(self):
|
|
|
|
return self.api.search(self.search)
|
|
|
|
|
|
|
|
|
2018-08-15 21:28:27 +02:00
|
|
|
class PinterestRelatedPinExtractor(PinterestPinExtractor):
|
|
|
|
"""Extractor for related pins of another pin from pinterest.com"""
|
|
|
|
subcategory = "related-pin"
|
2019-02-08 13:45:40 +01:00
|
|
|
directory_fmt = ("{category}", "related {original_pin[id]}")
|
|
|
|
pattern = BASE_PATTERN + r"/pin/([^/?#&]+).*#related$"
|
|
|
|
test = ("https://www.pinterest.com/pin/858146903966145189/#related", {
|
2019-11-10 17:03:38 +01:00
|
|
|
"range": "31-70",
|
|
|
|
"count": 40,
|
|
|
|
"archive": False,
|
2019-02-08 13:45:40 +01:00
|
|
|
})
|
2018-08-15 21:28:27 +02:00
|
|
|
|
|
|
|
def metadata(self):
|
2020-12-21 16:09:06 +01:00
|
|
|
return {"original_pin": self.api.pin(self.pin_id)}
|
2018-08-15 21:28:27 +02:00
|
|
|
|
|
|
|
def pins(self):
|
|
|
|
return self.api.pin_related(self.pin_id)
|
|
|
|
|
|
|
|
|
|
|
|
class PinterestRelatedBoardExtractor(PinterestBoardExtractor):
|
|
|
|
"""Extractor for related pins of a board from pinterest.com"""
|
|
|
|
subcategory = "related-board"
|
2019-02-08 13:45:40 +01:00
|
|
|
directory_fmt = ("{category}", "{board[owner][username]}",
|
|
|
|
"{board[name]}", "related")
|
2020-06-20 23:22:40 +02:00
|
|
|
pattern = BASE_PATTERN + r"/(?!pin/)([^/?#&]+)/([^/?#&]+)/?#related$"
|
2019-02-08 13:45:40 +01:00
|
|
|
test = ("https://www.pinterest.com/g1952849/test-/#related", {
|
2019-11-10 17:03:38 +01:00
|
|
|
"range": "31-70",
|
|
|
|
"count": 40,
|
|
|
|
"archive": False,
|
2019-02-08 13:45:40 +01:00
|
|
|
})
|
2018-08-15 21:28:27 +02:00
|
|
|
|
|
|
|
def pins(self):
|
2020-06-16 14:41:05 +02:00
|
|
|
return self.api.board_related(self.board["id"])
|
2016-09-03 10:00:32 +02:00
|
|
|
|
2016-09-02 19:11:16 +02:00
|
|
|
|
2017-01-27 21:51:28 +01:00
|
|
|
class PinterestPinitExtractor(PinterestExtractor):
|
2017-05-08 15:08:39 +02:00
|
|
|
"""Extractor for images from a pin.it URL"""
|
2017-01-27 21:51:28 +01:00
|
|
|
subcategory = "pinit"
|
2019-02-08 13:45:40 +01:00
|
|
|
pattern = r"(?:https?://)?pin\.it/([^/?#&]+)"
|
2018-12-02 19:37:50 +01:00
|
|
|
|
2019-02-08 13:45:40 +01:00
|
|
|
test = (
|
2017-01-27 21:51:28 +01:00
|
|
|
("https://pin.it/Hvt8hgT", {
|
|
|
|
"url": "8daad8558382c68f0868bdbd17d05205184632fa",
|
|
|
|
}),
|
|
|
|
("https://pin.it/Hvt8hgS", {
|
|
|
|
"exception": exception.NotFoundError,
|
2017-05-08 15:08:39 +02:00
|
|
|
}),
|
2019-02-08 13:45:40 +01:00
|
|
|
)
|
2017-01-27 21:51:28 +01:00
|
|
|
|
|
|
|
def __init__(self, match):
|
2019-02-11 13:31:10 +01:00
|
|
|
PinterestExtractor.__init__(self, match)
|
2018-12-02 19:37:50 +01:00
|
|
|
self.shortened_id = match.group(1)
|
2017-01-27 21:51:28 +01:00
|
|
|
|
|
|
|
def items(self):
|
2018-12-02 19:37:50 +01:00
|
|
|
url = "https://api.pinterest.com/url_shortener/{}/redirect".format(
|
|
|
|
self.shortened_id)
|
|
|
|
response = self.request(url, method="HEAD", allow_redirects=False)
|
2017-01-27 21:51:28 +01:00
|
|
|
location = response.headers.get("Location")
|
2020-01-18 21:06:44 +01:00
|
|
|
if not location or not PinterestPinExtractor.pattern.match(location):
|
2017-01-27 21:51:28 +01:00
|
|
|
raise exception.NotFoundError("pin")
|
2019-12-29 23:37:34 +01:00
|
|
|
yield Message.Queue, location, {"_extractor": PinterestPinExtractor}
|
2017-01-27 21:51:28 +01:00
|
|
|
|
|
|
|
|
2016-09-02 19:11:16 +02:00
|
|
|
class PinterestAPI():
|
2018-04-24 22:17:25 +02:00
|
|
|
"""Minimal interface for the Pinterest Web API
|
|
|
|
|
|
|
|
For a better and more complete implementation in PHP, see
|
|
|
|
- https://github.com/seregazhuk/php-pinterest-bot
|
|
|
|
"""
|
|
|
|
|
2019-01-14 15:19:07 +01:00
|
|
|
BASE_URL = "https://www.pinterest.com"
|
2018-04-24 22:17:25 +02:00
|
|
|
HEADERS = {
|
|
|
|
"Accept" : "application/json, text/javascript, "
|
|
|
|
"*/*, q=0.01",
|
|
|
|
"Accept-Language" : "en-US,en;q=0.5",
|
2020-10-15 00:51:53 +02:00
|
|
|
"Referer" : BASE_URL + "/",
|
2018-04-24 22:17:25 +02:00
|
|
|
"X-Requested-With" : "XMLHttpRequest",
|
2021-03-29 01:41:28 +02:00
|
|
|
"X-APP-VERSION" : "31461e0",
|
2020-10-15 00:51:53 +02:00
|
|
|
"X-CSRFToken" : None,
|
|
|
|
"X-Pinterest-AppState": "active",
|
2020-06-16 14:41:05 +02:00
|
|
|
"Origin" : BASE_URL,
|
2018-04-24 22:17:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
def __init__(self, extractor):
|
2018-04-26 16:36:42 +02:00
|
|
|
self.extractor = extractor
|
2016-09-02 19:11:16 +02:00
|
|
|
|
2021-01-11 22:12:40 +01:00
|
|
|
csrf_token = util.generate_token()
|
2020-10-15 00:51:53 +02:00
|
|
|
self.headers = self.HEADERS.copy()
|
|
|
|
self.headers["X-CSRFToken"] = csrf_token
|
|
|
|
self.cookies = {"csrftoken": csrf_token}
|
|
|
|
|
2018-04-24 22:17:25 +02:00
|
|
|
def pin(self, pin_id):
|
2016-09-02 19:11:16 +02:00
|
|
|
"""Query information about a pin"""
|
2018-04-24 22:17:25 +02:00
|
|
|
options = {"id": pin_id, "field_set_key": "detailed"}
|
|
|
|
return self._call("Pin", options)["resource_response"]["data"]
|
2016-09-02 19:11:16 +02:00
|
|
|
|
2018-08-15 21:28:27 +02:00
|
|
|
def pin_related(self, pin_id):
|
|
|
|
"""Yield related pins of another pin"""
|
|
|
|
options = {"pin": pin_id, "add_vase": True, "pins_only": True}
|
|
|
|
return self._pagination("RelatedPinFeed", options)
|
|
|
|
|
2020-06-16 14:41:05 +02:00
|
|
|
def board(self, user, board_name):
|
2016-09-03 10:00:32 +02:00
|
|
|
"""Query information about a board"""
|
2020-06-16 14:41:05 +02:00
|
|
|
options = {"slug": board_name, "username": user,
|
2018-04-24 22:17:25 +02:00
|
|
|
"field_set_key": "detailed"}
|
|
|
|
return self._call("Board", options)["resource_response"]["data"]
|
2016-09-03 10:00:32 +02:00
|
|
|
|
2020-12-29 16:57:03 +01:00
|
|
|
def boards(self, user):
|
|
|
|
"""Yield all boards from 'user'"""
|
|
|
|
options = {
|
|
|
|
"sort" : "last_pinned_to",
|
|
|
|
"field_set_key" : "profile_grid_item",
|
|
|
|
"filter_stories" : False,
|
|
|
|
"username" : user,
|
|
|
|
"page_size" : 25,
|
|
|
|
"include_archived": True,
|
|
|
|
}
|
|
|
|
return self._pagination("Boards", options)
|
|
|
|
|
2018-04-24 22:17:25 +02:00
|
|
|
def board_pins(self, board_id):
|
2016-09-02 19:11:16 +02:00
|
|
|
"""Yield all pins of a specific board"""
|
2018-04-24 22:17:25 +02:00
|
|
|
options = {"board_id": board_id}
|
|
|
|
return self._pagination("BoardFeed", options)
|
|
|
|
|
2022-07-03 18:12:16 +02:00
|
|
|
def board_section(self, section_id):
|
2020-06-20 23:22:40 +02:00
|
|
|
"""Yield a specific board section"""
|
2022-07-03 18:12:16 +02:00
|
|
|
options = {"section_id": section_id}
|
|
|
|
return self._call("BoardSection", options)["resource_response"]["data"]
|
|
|
|
|
|
|
|
def board_section_by_name(self, user, board_slug, section_slug):
|
|
|
|
"""Yield a board section by name"""
|
2020-06-20 23:22:40 +02:00
|
|
|
options = {"board_slug": board_slug, "section_slug": section_slug,
|
|
|
|
"username": user}
|
|
|
|
return self._call("BoardSection", options)["resource_response"]["data"]
|
|
|
|
|
2020-06-16 14:41:05 +02:00
|
|
|
def board_sections(self, board_id):
|
|
|
|
"""Yield all sections of a specific board"""
|
|
|
|
options = {"board_id": board_id}
|
|
|
|
return self._pagination("BoardSections", options)
|
|
|
|
|
|
|
|
def board_section_pins(self, section_id):
|
|
|
|
"""Yield all pins from a board section"""
|
|
|
|
options = {"section_id": section_id}
|
|
|
|
return self._pagination("BoardSectionPins", options)
|
|
|
|
|
2018-08-15 21:28:27 +02:00
|
|
|
def board_related(self, board_id):
|
|
|
|
"""Yield related pins of a specific board"""
|
|
|
|
options = {"board_id": board_id, "add_vase": True}
|
|
|
|
return self._pagination("BoardRelatedPixieFeed", options)
|
|
|
|
|
2022-04-01 16:59:58 +02:00
|
|
|
def user_activity_pins(self, user):
|
|
|
|
"""Yield pins created by 'user'"""
|
|
|
|
options = {
|
|
|
|
"exclude_add_pin_rep": True,
|
|
|
|
"field_set_key" : "grid_item",
|
|
|
|
"is_own_profile_pins": False,
|
|
|
|
"username" : user,
|
|
|
|
}
|
|
|
|
return self._pagination("UserActivityPins", options)
|
|
|
|
|
2021-03-29 01:41:28 +02:00
|
|
|
def search(self, query):
|
|
|
|
"""Yield pins from searches"""
|
|
|
|
options = {"query": query, "scope": "pins", "rs": "typed"}
|
|
|
|
return self._pagination("BaseSearch", options)
|
|
|
|
|
2020-10-15 00:51:53 +02:00
|
|
|
def login(self):
|
|
|
|
"""Login and obtain session cookies"""
|
|
|
|
username, password = self.extractor._get_auth_info()
|
|
|
|
if username:
|
|
|
|
self.cookies.update(self._login_impl(username, password))
|
|
|
|
|
|
|
|
@cache(maxage=180*24*3600, keyarg=1)
|
|
|
|
def _login_impl(self, username, password):
|
|
|
|
self.extractor.log.info("Logging in as %s", username)
|
|
|
|
|
|
|
|
url = self.BASE_URL + "/resource/UserSessionResource/create/"
|
|
|
|
options = {
|
|
|
|
"username_or_email": username,
|
|
|
|
"password" : password,
|
|
|
|
}
|
|
|
|
data = {"data": json.dumps({"options": options}), "source_url": ""}
|
|
|
|
|
|
|
|
try:
|
|
|
|
response = self.extractor.request(
|
|
|
|
url, method="POST", headers=self.headers,
|
|
|
|
cookies=self.cookies, data=data)
|
|
|
|
resource = response.json()["resource_response"]
|
|
|
|
except (exception.HttpError, ValueError, KeyError):
|
|
|
|
raise exception.AuthenticationError()
|
|
|
|
|
|
|
|
if resource["status"] != "success":
|
|
|
|
raise exception.AuthenticationError()
|
|
|
|
return {
|
|
|
|
cookie.name: cookie.value
|
|
|
|
for cookie in response.cookies
|
|
|
|
}
|
|
|
|
|
2018-04-24 22:17:25 +02:00
|
|
|
def _call(self, resource, options):
|
2018-04-25 16:04:30 +02:00
|
|
|
url = "{}/resource/{}Resource/get/".format(self.BASE_URL, resource)
|
|
|
|
params = {"data": json.dumps({"options": options}), "source_url": ""}
|
2016-09-02 19:11:16 +02:00
|
|
|
|
2018-04-26 16:36:42 +02:00
|
|
|
response = self.extractor.request(
|
2020-10-15 00:51:53 +02:00
|
|
|
url, params=params, headers=self.headers,
|
|
|
|
cookies=self.cookies, fatal=False)
|
2018-05-11 17:28:34 +02:00
|
|
|
|
|
|
|
try:
|
|
|
|
data = response.json()
|
|
|
|
except ValueError:
|
|
|
|
data = {}
|
2018-04-17 17:12:42 +02:00
|
|
|
|
2019-07-04 23:45:26 +02:00
|
|
|
if response.status_code < 400 and not response.history:
|
2018-04-16 15:43:31 +02:00
|
|
|
return data
|
|
|
|
|
2018-04-26 16:36:42 +02:00
|
|
|
if response.status_code == 404 or response.history:
|
2018-08-15 21:28:27 +02:00
|
|
|
resource = self.extractor.subcategory.rpartition("-")[2]
|
|
|
|
raise exception.NotFoundError(resource)
|
2019-12-10 21:30:08 +01:00
|
|
|
self.extractor.log.debug("Server response: %s", response.text)
|
2019-10-28 16:06:36 +01:00
|
|
|
raise exception.StopExtraction("API request failed")
|
2018-04-17 17:12:42 +02:00
|
|
|
|
2018-04-25 16:04:30 +02:00
|
|
|
def _pagination(self, resource, options):
|
2018-04-17 17:12:42 +02:00
|
|
|
while True:
|
2018-04-24 22:17:25 +02:00
|
|
|
data = self._call(resource, options)
|
2021-03-29 01:41:28 +02:00
|
|
|
results = data["resource_response"]["data"]
|
|
|
|
if isinstance(results, dict):
|
|
|
|
results = results["results"]
|
|
|
|
yield from results
|
2018-04-24 22:17:25 +02:00
|
|
|
|
|
|
|
try:
|
|
|
|
bookmarks = data["resource"]["options"]["bookmarks"]
|
2018-08-16 18:11:39 +02:00
|
|
|
if (not bookmarks or bookmarks[0] == "-end-" or
|
|
|
|
bookmarks[0].startswith("Y2JOb25lO")):
|
2018-04-24 22:17:25 +02:00
|
|
|
return
|
2018-04-25 16:04:30 +02:00
|
|
|
options["bookmarks"] = bookmarks
|
2018-04-24 22:17:25 +02:00
|
|
|
except KeyError:
|
2018-04-17 17:12:42 +02:00
|
|
|
return
|