From d28a0fd94b0f863cf630e327ed5ad646a05909b9 Mon Sep 17 00:00:00 2001
From: Eugene Molotov
Date: Mon, 29 Jul 2024 01:34:12 +0500
Subject: [PATCH] [Vk2Bridge] Handling albums (#4163)
---
bridges/Vk2Bridge.php | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/bridges/Vk2Bridge.php b/bridges/Vk2Bridge.php
index 0bc0879f..6fecba84 100644
--- a/bridges/Vk2Bridge.php
+++ b/bridges/Vk2Bridge.php
@@ -168,6 +168,12 @@ class Vk2Bridge extends BridgeAbstract
$ret .= "* {$text}: {$votes} ({$rate}%)
";
}
$ret .= '
';
+ } elseif ($attachment['type'] == 'album') {
+ $album = $attachment['album'];
+ $url = "https://vk.com/album{$album['owner_id']}_{$album['id']}";
+ $title = 'Альбом: ' . $album['title'];
+ $photo = $this->getImageURLWithLargestWidth($album['thumb']['sizes']);
+ $ret .= "
{$title}
";
} elseif (!in_array($attachment['type'], ['video', 'audio', 'doc'])) {
$ret .= "Unknown attachment type: {$attachment['type']}
";
}