diff --git a/VKAPI/Handlers/Wall.php b/VKAPI/Handlers/Wall.php
index add2159b..179d5e0e 100644
--- a/VKAPI/Handlers/Wall.php
+++ b/VKAPI/Handlers/Wall.php
@@ -60,7 +60,10 @@ final class Wall extends VKAPIRequestHandler
} else if ($attachment instanceof \openvk\Web\Models\Entities\Note) {
$attachments[] = $attachment->toVkApiStruct();
} else if ($attachment instanceof \openvk\Web\Models\Entities\Audio) {
- $attachments[] = $attachment->toVkApiStruct($this->getUser());
+ $attachments[] = [
+ "type" => "audio",
+ "audio" => $attachment->toVkApiStruct($this->getUser()),
+ ];
} else if ($attachment instanceof \openvk\Web\Models\Entities\Post) {
$repostAttachments = [];
@@ -237,7 +240,10 @@ final class Wall extends VKAPIRequestHandler
} else if ($attachment instanceof \openvk\Web\Models\Entities\Note) {
$attachments[] = $attachment->toVkApiStruct();
} else if ($attachment instanceof \openvk\Web\Models\Entities\Audio) {
- $attachments[] = $attachment->toVkApiStruct($this->getUser());
+ $attachments[] = [
+ "type" => "audio",
+ "audio" => $attachment->toVkApiStruct($this->getUser())
+ ];
} else if ($attachment instanceof \openvk\Web\Models\Entities\Post) {
$repostAttachments = [];
@@ -576,7 +582,10 @@ final class Wall extends VKAPIRequestHandler
} elseif($attachment instanceof \openvk\Web\Models\Entities\Note) {
$attachments[] = $attachment->toVkApiStruct();
} elseif($attachment instanceof \openvk\Web\Models\Entities\Audio) {
- $attachments[] = $attachment->toVkApiStruct($this->getUser());
+ $attachments[] = [
+ "type" => "audio",
+ "audio" => $attachment->toVkApiStruct($this->getUser()),
+ ];
}
}
@@ -636,6 +645,9 @@ final class Wall extends VKAPIRequestHandler
$comment = (new CommentsRepo)->get($comment_id); # один хуй айди всех комментов общий
+ if(!$comment || $comment->isDeleted())
+ $this->fail(100, "Invalid comment");
+
$profiles = [];
$attachments = [];
@@ -644,7 +656,10 @@ final class Wall extends VKAPIRequestHandler
if($attachment instanceof \openvk\Web\Models\Entities\Photo) {
$attachments[] = $this->getApiPhoto($attachment);
} elseif($attachment instanceof \openvk\Web\Models\Entities\Audio) {
- $attachments[] = $attachment->toVkApiStruct($this->getUser());
+ $attachments[] = [
+ "type" => "audio",
+ "audio" => $attachment->toVkApiStruct($this->getUser()),
+ ];
}
}
diff --git a/Web/Presenters/AudioPresenter.php b/Web/Presenters/AudioPresenter.php
index 3bae710c..8ec17012 100644
--- a/Web/Presenters/AudioPresenter.php
+++ b/Web/Presenters/AudioPresenter.php
@@ -304,7 +304,7 @@ final class AudioPresenter extends OpenVKPresenter
if ($_SERVER["REQUEST_METHOD"] === "POST") {
$title = $this->postParam("title");
$description = $this->postParam("description");
- $audios = !empty($this->postParam("audios")) ? array_slice(explode(",", $this->postParam("audios")), 0, 100) : [];
+ $audios = !empty($this->postParam("audios")) ? array_slice(explode(",", $this->postParam("audios")), 0, 1000) : [];
if(empty($title) || iconv_strlen($title) < 1)
$this->flashFail("err", tr("error"), tr("set_playlist_name"));
@@ -478,9 +478,9 @@ final class AudioPresenter extends OpenVKPresenter
$this->template->audios = iterator_to_array($playlist->fetch($page, 10));
$this->template->ownerId = $owner_id;
$this->template->owner = $playlist->getOwner();
- $this->template->isBookmarked = $playlist->isBookmarkedBy($this->user->identity);
- $this->template->isMy = $playlist->getOwner()->getId() === $this->user->id;
- $this->template->canEdit = $playlist->canBeModifiedBy($this->user->identity);
+ $this->template->isBookmarked = $this->user->identity && $playlist->isBookmarkedBy($this->user->identity);
+ $this->template->isMy = $this->user->identity && $playlist->getOwner()->getId() === $this->user->id;
+ $this->template->canEdit = $this->user->identity && $playlist->canBeModifiedBy($this->user->identity);
}
function renderAction(int $audio_id): void
diff --git a/Web/Presenters/templates/Audio/Playlist.xml b/Web/Presenters/templates/Audio/Playlist.xml
index f14b6ac1..175dfc3a 100644
--- a/Web/Presenters/templates/Audio/Playlist.xml
+++ b/Web/Presenters/templates/Audio/Playlist.xml
@@ -39,7 +39,7 @@
-