2021-03-23 18:48:01 +01:00
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
2022-02-06 21:39:24 +01:00
|
|
|
|
# Copyright 2021-2022 Mike Fährmann
|
2021-03-23 18:48:01 +01: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.
|
|
|
|
|
|
|
|
|
|
"""Extractors for https://vk.com/"""
|
|
|
|
|
|
2021-04-01 14:35:56 +02:00
|
|
|
|
from .common import Extractor, Message
|
2021-03-23 18:48:01 +01:00
|
|
|
|
from .. import text
|
|
|
|
|
import re
|
|
|
|
|
|
2021-10-23 00:46:20 +02:00
|
|
|
|
BASE_PATTERN = r"(?:https://)?(?:www\.|m\.)?vk\.com"
|
2021-03-23 18:48:01 +01:00
|
|
|
|
|
2021-10-23 00:46:20 +02:00
|
|
|
|
|
|
|
|
|
class VkExtractor(Extractor):
|
|
|
|
|
"""Base class for vk extractors"""
|
2021-03-23 18:48:01 +01:00
|
|
|
|
category = "vk"
|
2021-07-15 00:43:42 +02:00
|
|
|
|
directory_fmt = ("{category}", "{user[name]|user[id]}")
|
2021-03-23 18:48:01 +01:00
|
|
|
|
filename_fmt = "{id}.{extension}"
|
|
|
|
|
archive_fmt = "{id}"
|
2021-04-01 14:35:56 +02:00
|
|
|
|
root = "https://vk.com"
|
|
|
|
|
request_interval = 1.0
|
2021-10-23 00:46:20 +02:00
|
|
|
|
|
|
|
|
|
def items(self):
|
|
|
|
|
data = self.metadata()
|
|
|
|
|
yield Message.Directory, data
|
|
|
|
|
for photo in self.photos():
|
|
|
|
|
photo.update(data)
|
|
|
|
|
yield Message.Url, photo["url"], photo
|
|
|
|
|
|
|
|
|
|
def _pagination(self, photos_url, user_id):
|
|
|
|
|
sub = re.compile(r"/imp[fg]/").sub
|
|
|
|
|
needle = 'data-id="{}_'.format(user_id)
|
|
|
|
|
|
|
|
|
|
headers = {
|
|
|
|
|
"X-Requested-With": "XMLHttpRequest",
|
|
|
|
|
"Origin" : self.root,
|
|
|
|
|
"Referer" : photos_url,
|
|
|
|
|
}
|
|
|
|
|
params = {
|
|
|
|
|
"al" : "1",
|
|
|
|
|
"al_ad" : "0",
|
|
|
|
|
"offset": 0,
|
|
|
|
|
"part" : "1",
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
while True:
|
|
|
|
|
payload = self.request(
|
|
|
|
|
photos_url, method="POST", headers=headers, data=params
|
|
|
|
|
).json()["payload"][1]
|
|
|
|
|
|
|
|
|
|
offset = payload[0]
|
|
|
|
|
html = payload[1]
|
|
|
|
|
|
2022-02-13 17:46:53 +01:00
|
|
|
|
cnt = 0
|
|
|
|
|
for photo in text.extract_iter(html, needle, ')'):
|
|
|
|
|
cnt += 1
|
2021-10-23 00:46:20 +02:00
|
|
|
|
pid = photo[:photo.find('"')]
|
|
|
|
|
url = photo[photo.rindex("(")+1:]
|
|
|
|
|
url = sub("/", url.partition("?")[0])
|
|
|
|
|
yield text.nameext_from_url(url, {"url": url, "id": pid})
|
|
|
|
|
|
|
|
|
|
if cnt <= 20 or offset == params["offset"]:
|
|
|
|
|
return
|
|
|
|
|
params["offset"] = offset
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class VkPhotosExtractor(VkExtractor):
|
|
|
|
|
"""Extractor for photos from a vk user"""
|
|
|
|
|
subcategory = "photos"
|
|
|
|
|
pattern = (BASE_PATTERN + r"/(?:"
|
|
|
|
|
r"(?:albums|photos|id)(-?\d+)"
|
|
|
|
|
r"|(?!album-?\d+_)([^/?#]+))")
|
2021-03-23 18:48:01 +01:00
|
|
|
|
test = (
|
|
|
|
|
("https://vk.com/id398982326", {
|
2022-04-18 17:24:00 +02:00
|
|
|
|
"pattern": r"https://sun\d+-\d+\.userapi\.com"
|
|
|
|
|
r"/\w+/v\d+/[0-9a-f]+/[\w-]+\.jpg",
|
2021-03-23 18:48:01 +01:00
|
|
|
|
"count": ">= 35",
|
2021-07-15 00:43:42 +02:00
|
|
|
|
"keywords": {
|
|
|
|
|
"id": r"re:\d+",
|
|
|
|
|
"user": {
|
|
|
|
|
"id": "398982326",
|
|
|
|
|
"info": "Мы за Движуху! – m1ni SounD #4 [EROmusic]",
|
|
|
|
|
"name": "",
|
|
|
|
|
"nick": "Dobrov Kurva",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
}),
|
|
|
|
|
("https://vk.com/cosplayinrussia", {
|
|
|
|
|
"range": "75-100",
|
|
|
|
|
"keywords": {
|
|
|
|
|
"id": r"re:\d+",
|
|
|
|
|
"user": {
|
|
|
|
|
"id" : "-165740836",
|
|
|
|
|
"info": "Предложка открыта, кидайте ваши косплейчики. При "
|
|
|
|
|
"правильном оформлении они будут опубликованы",
|
|
|
|
|
"name": "cosplayinrussia",
|
|
|
|
|
"nick": "Косплей | Cosplay 18+",
|
|
|
|
|
},
|
|
|
|
|
},
|
2021-03-23 18:48:01 +01:00
|
|
|
|
}),
|
|
|
|
|
("https://m.vk.com/albums398982326"),
|
2021-04-01 14:35:56 +02:00
|
|
|
|
("https://www.vk.com/id398982326?profile=1"),
|
2021-07-15 00:43:42 +02:00
|
|
|
|
("https://vk.com/albums-165740836"),
|
2021-03-23 18:48:01 +01:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def __init__(self, match):
|
2021-10-23 00:46:20 +02:00
|
|
|
|
VkExtractor.__init__(self, match)
|
2021-07-15 00:43:42 +02:00
|
|
|
|
self.user_id, self.user_name = match.groups()
|
2021-03-23 18:48:01 +01:00
|
|
|
|
|
2021-10-23 00:46:20 +02:00
|
|
|
|
def photos(self):
|
|
|
|
|
url = "{}/photos{}".format(self.root, self.user_id)
|
|
|
|
|
return self._pagination(url, self.user_id)
|
|
|
|
|
|
|
|
|
|
def metadata(self):
|
2021-07-15 00:43:42 +02:00
|
|
|
|
if self.user_id:
|
|
|
|
|
user_id = self.user_id
|
|
|
|
|
prefix = "public" if user_id[0] == "-" else "id"
|
|
|
|
|
url = "{}/{}{}".format(self.root, prefix, user_id.lstrip("-"))
|
|
|
|
|
data = self._extract_profile(url)
|
2021-04-01 14:35:56 +02:00
|
|
|
|
else:
|
2021-07-15 00:43:42 +02:00
|
|
|
|
url = "{}/{}".format(self.root, self.user_name)
|
|
|
|
|
data = self._extract_profile(url)
|
2021-10-23 00:46:20 +02:00
|
|
|
|
self.user_id = data["user"]["id"]
|
|
|
|
|
return data
|
2021-07-15 00:43:42 +02:00
|
|
|
|
|
|
|
|
|
def _extract_profile(self, url):
|
|
|
|
|
extr = text.extract_from(self.request(url).text)
|
|
|
|
|
return {"user": {
|
|
|
|
|
"name": text.unescape(extr(
|
|
|
|
|
'rel="canonical" href="https://vk.com/', '"')),
|
|
|
|
|
"nick": text.unescape(extr(
|
|
|
|
|
'<h1 class="page_name">', "<")).replace(" ", " "),
|
|
|
|
|
"info": text.unescape(text.remove_html(extr(
|
|
|
|
|
'<span class="current_text">', '</span'))),
|
|
|
|
|
"id" : extr('<a href="/albums', '"'),
|
|
|
|
|
}}
|
2021-10-23 00:46:20 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class VkAlbumExtractor(VkExtractor):
|
|
|
|
|
"""Extractor for a vk album"""
|
|
|
|
|
subcategory = "album"
|
|
|
|
|
directory_fmt = ("{category}", "{user[id]}", "{album[id]}")
|
|
|
|
|
pattern = BASE_PATTERN + r"/album(-?\d+)_(\d+)$"
|
|
|
|
|
test = (
|
2022-04-18 17:24:00 +02:00
|
|
|
|
("https://vk.com/album232175027_00", {
|
|
|
|
|
"count": 8,
|
2021-10-23 00:46:20 +02:00
|
|
|
|
}),
|
|
|
|
|
("https://vk.com/album-165740836_281339889", {
|
|
|
|
|
"count": 12,
|
|
|
|
|
}),
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def __init__(self, match):
|
|
|
|
|
VkExtractor.__init__(self, match)
|
|
|
|
|
self.user_id, self.album_id = match.groups()
|
|
|
|
|
|
|
|
|
|
def photos(self):
|
|
|
|
|
url = "{}/album{}_{}".format(self.root, self.user_id, self.album_id)
|
|
|
|
|
return self._pagination(url, self.user_id)
|
|
|
|
|
|
|
|
|
|
def metadata(self):
|
|
|
|
|
return {
|
|
|
|
|
"user": {"id": self.user_id},
|
|
|
|
|
"album": {"id": self.album_id},
|
|
|
|
|
}
|