Skip to content

Commit

Permalink
[vk] improve extractor (#474)
Browse files Browse the repository at this point in the history
- fetch all photos
- add 'metadata' option
- fix extracting photos without '?' in URL
  • Loading branch information
mikf committed Apr 1, 2021
1 parent ebd142e commit ec3d5d5
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 23 deletions.
2 changes: 1 addition & 1 deletion docs/supportedsites.md
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ Consider all sites to be NSFW unless otherwise known.
<tr>
<td>VK</td>
<td>https://vk.com/</td>
<td>Albums</td>
<td>Photos</td>
<td></td>
</tr>
<tr>
Expand Down
77 changes: 55 additions & 22 deletions gallery_dl/extractor/vk.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,48 +8,81 @@

"""Extractors for https://vk.com/"""

from .common import GalleryExtractor
from .common import Extractor, Message
from .. import text
import re


class VkAlbumExtractor(GalleryExtractor):
"""Extractor for vkontakte albums"""
class VkPhotosExtractor(Extractor):
"""Extractor for photos from a vk user"""
category = "vk"
subcategory = "album"
directory_fmt = ("{category}", "{album_id}")
subcategory = "photos"
directory_fmt = ("{category}", "{user[id]}")
filename_fmt = "{id}.{extension}"
archive_fmt = "{id}"
root = "https://vk.com/"
pattern = r"(?:https://)?(?:www\.|m\.)?vk\.com/(?:albums|id)(\d+)"
root = "https://vk.com"
request_interval = 1.0
pattern = r"(?:https://)?(?:www\.|m\.)?vk\.com/(?:albums|photos|id)(\d+)"
test = (
("https://vk.com/id398982326", {
"pattern": r"https://sun\d+-\d+\.userapi\.com/c\d+/v\d+"
r"/[0-9a-f]+/[\w-]+\.jpg",
"count": ">= 35",
}),
("https://m.vk.com/albums398982326"),
("https://www.vk.com/id398982326"),
("https://www.vk.com/id398982326?profile=1"),
)

def __init__(self, match):
self.album_id = match.group(1)
url = "{}/albums{}".format(self.root, self.album_id)
GalleryExtractor.__init__(self, match, url)
Extractor.__init__(self, match)
self.user_id = match.group(1)

def metadata(self, page):
return {
"album_id": self.album_id,
def items(self):
user_id = self.user_id

if self.config("metadata"):
url = "{}/id{}".format(self.root, user_id)
extr = text.extract_from(self.request(url).text)
data = {"user": {
"id" : user_id,
"nick": text.unescape(extr(
"<title>", " | VK<")),
"name": text.unescape(extr(
'<h1 class="page_name">', "<")).replace(" ", " "),
"info": text.unescape(text.remove_html(extr(
'<span class="current_text">', '</span')))
}}
else:
data = {"user": {"id": user_id}}

photos_url = "{}/photos{}".format(self.root, user_id)
headers = {
"X-Requested-With": "XMLHttpRequest",
"Origin" : self.root,
"Referer" : photos_url,
}
params = {
"al" : "1",
"al_ad" : "0",
"offset": 0,
"part" : "1",
}

def images(self, page):
results = []
yield Message.Directory, data
sub = re.compile(r"/imp[fg]/").sub
needle = 'data-id="{}_'.format(self.album_id)
needle = 'data-id="{}_'.format(user_id)

while True:
offset, html = self.request(
photos_url, method="POST", headers=headers, data=params
).json()["payload"][1]

for photo in text.extract_iter(page, needle, '?'):
photo_id = photo.partition('"')[0]
url = sub("/", photo.rpartition("(")[2])
results.append((url, {"id": photo_id}))
for cnt, photo in enumerate(text.extract_iter(html, needle, ')')):
data["id"] = photo[:photo.find('"')]
url = photo[photo.rindex("(")+1:]
url = sub("/", url.partition("?")[0])
yield Message.Url, url, text.nameext_from_url(url, data)

return results
if cnt <= 40 or offset == params["offset"]:
return
params["offset"] = offset

0 comments on commit ec3d5d5

Please sign in to comment.