openvk/Web/Presenters/PhotosPresenter.php

444 lines
16 KiB
PHP
Raw Normal View History

<?php
declare(strict_types=1);
2020-06-07 19:04:43 +03:00
namespace openvk\Web\Presenters;
use openvk\Web\Models\Entities\{Club, Photo, Album, User};
use openvk\Web\Models\Repositories\{Photos, Albums, Users, Clubs};
2020-06-07 19:04:43 +03:00
use Nette\InvalidStateException as ISE;
final class PhotosPresenter extends OpenVKPresenter
{
private $users;
private $photos;
private $albums;
2022-09-17 00:19:46 +03:00
protected $presenterName = "photos";
public function __construct(Photos $photos, Albums $albums, Users $users)
2020-06-07 19:04:43 +03:00
{
$this->users = $users;
$this->photos = $photos;
$this->albums = $albums;
2020-06-07 19:04:43 +03:00
parent::__construct();
}
public function renderAlbumList(int $owner): void
2020-06-07 19:04:43 +03:00
{
if ($owner > 0) {
2020-06-07 19:04:43 +03:00
$user = $this->users->get($owner);
if (!$user) {
$this->notFound();
}
if (!$user->getPrivacyPermission('photos.read', $this->user->identity ?? null)) {
$this->flashFail("err", tr("forbidden"), tr("forbidden_comment"));
}
$this->template->albums = $this->albums->getUserAlbums($user, (int) ($this->queryParam("p") ?? 1));
2020-06-07 19:04:43 +03:00
$this->template->count = $this->albums->getUserAlbumsCount($user);
$this->template->owner = $user;
$this->template->canEdit = false;
if (!is_null($this->user)) {
2020-06-07 19:04:43 +03:00
$this->template->canEdit = $this->user->id === $user->getId();
}
2020-06-07 19:04:43 +03:00
} else {
$club = (new Clubs())->get(abs($owner));
if (!$club) {
$this->notFound();
}
$this->template->albums = $this->albums->getClubAlbums($club, (int) ($this->queryParam("p") ?? 1));
2020-06-07 19:04:43 +03:00
$this->template->count = $this->albums->getClubAlbumsCount($club);
$this->template->owner = $club;
$this->template->canEdit = false;
if (!is_null($this->user)) {
2020-06-07 19:04:43 +03:00
$this->template->canEdit = $club->canBeModifiedBy($this->user->identity);
}
2020-06-07 19:04:43 +03:00
}
2020-06-07 19:04:43 +03:00
$this->template->paginatorConf = (object) [
"count" => $this->template->count,
"page" => (int) ($this->queryParam("p") ?? 1),
"amount" => null,
2020-06-07 19:04:43 +03:00
"perPage" => OPENVK_DEFAULT_PER_PAGE,
];
}
public function renderCreateAlbum(): void
2020-06-07 19:04:43 +03:00
{
$this->assertUserLoggedIn();
$this->willExecuteWriteAction();
if (!is_null($gpid = $this->queryParam("gpid"))) {
$club = (new Clubs())->get((int) $gpid);
if (!$club->canBeModifiedBy($this->user->identity)) {
2020-06-07 19:04:43 +03:00
$this->notFound();
}
2020-06-07 19:04:43 +03:00
$this->template->club = $club;
}
if ($_SERVER["REQUEST_METHOD"] === "POST") {
if (empty($this->postParam("name")) || mb_strlen(trim($this->postParam("name"))) === 0) {
$this->flashFail("err", tr("error"), tr("error_segmentation"));
} elseif (strlen($this->postParam("name")) > 36) {
$this->flashFail("err", tr("error"), tr("error_data_too_big", "name", 36, "bytes"));
}
$album = new Album();
2020-06-07 19:04:43 +03:00
$album->setOwner(isset($club) ? $club->getId() * -1 : $this->user->id);
$album->setName($this->postParam("name"));
$album->setDescription($this->postParam("desc"));
$album->setCreated(time());
$album->save();
if (isset($club)) {
$this->redirect("/album-" . $album->getOwner()->getId() . "_" . $album->getId());
} else {
$this->redirect("/album" . $album->getOwner()->getId() . "_" . $album->getId());
}
2020-06-07 19:04:43 +03:00
}
}
public function renderEditAlbum(int $owner, int $id): void
2020-06-07 19:04:43 +03:00
{
$this->assertUserLoggedIn();
$this->willExecuteWriteAction();
2020-06-07 19:04:43 +03:00
$album = $this->albums->get($id);
if (!$album) {
$this->notFound();
}
if ($album->getPrettyId() !== $owner . "_" . $id || $album->isDeleted()) {
$this->notFound();
}
if (is_null($this->user) || !$album->canBeModifiedBy($this->user->identity) || $album->isDeleted()) {
$this->flashFail("err", tr("error_access_denied_short"), tr("error_access_denied"));
}
2020-06-07 19:04:43 +03:00
$this->template->album = $album;
if ($_SERVER["REQUEST_METHOD"] === "POST") {
if (strlen($this->postParam("name")) > 36) {
$this->flashFail("err", tr("error"), tr("error_data_too_big", "name", 36, "bytes"));
}
$album->setName((empty($this->postParam("name")) || mb_strlen(trim($this->postParam("name"))) === 0) ? $album->getName() : $this->postParam("name"));
$album->setDescription(empty($this->postParam("desc")) ? null : $this->postParam("desc"));
2020-06-07 19:04:43 +03:00
$album->setEdited(time());
$album->save();
$this->flash("succ", tr("changes_saved"), tr("new_data_accepted"));
2020-06-07 19:04:43 +03:00
}
}
public function renderDeleteAlbum(int $owner, int $id): void
2020-06-07 19:04:43 +03:00
{
$this->assertUserLoggedIn();
$this->willExecuteWriteAction();
2020-06-07 19:04:43 +03:00
$this->assertNoCSRF();
2020-06-07 19:04:43 +03:00
$album = $this->albums->get($id);
if (!$album) {
$this->notFound();
}
if ($album->getPrettyId() !== $owner . "_" . $id || $album->isDeleted()) {
$this->notFound();
}
if (is_null($this->user) || !$album->canBeModifiedBy($this->user->identity)) {
$this->flashFail("err", tr("error_access_denied_short"), tr("error_access_denied"));
}
$name = $album->getName();
$owner = $album->getOwner();
2020-06-07 19:04:43 +03:00
$album->delete();
$this->flash("succ", tr("album_is_deleted"), tr("album_x_is_deleted", $name));
$this->redirect("/albums" . ($owner instanceof Club ? "-" : "") . $owner->getId());
2020-06-07 19:04:43 +03:00
}
public function renderAlbum(int $owner, int $id): void
2020-06-07 19:04:43 +03:00
{
$album = $this->albums->get($id);
if (!$album) {
2020-06-07 19:04:43 +03:00
$this->notFound();
}
if ($album->getPrettyId() !== $owner . "_" . $id || $album->isDeleted()) {
$this->notFound();
}
2023-12-02 20:21:16 +03:00
if (!$album->canBeViewedBy($this->user->identity)) {
2023-12-02 20:21:16 +03:00
$this->flashFail("err", tr("forbidden"), tr("forbidden_comment"));
}
if ($owner > 0 /* bc we currently don't have perms for clubs */) {
$ownerObject = (new Users())->get($owner);
if (!$ownerObject->getPrivacyPermission('photos.read', $this->user->identity ?? null)) {
$this->flashFail("err", tr("forbidden"), tr("forbidden_comment"));
}
}
2020-06-07 19:04:43 +03:00
$this->template->album = $album;
$this->template->photos = iterator_to_array($album->getPhotos((int) ($this->queryParam("p") ?? 1), 20));
2020-06-07 19:04:43 +03:00
$this->template->paginatorConf = (object) [
"count" => $album->getPhotosCount(),
"page" => (int) ($this->queryParam("p") ?? 1),
2020-06-07 19:04:43 +03:00
"amount" => sizeof($this->template->photos),
2021-12-20 23:51:50 +03:00
"perPage" => 20,
"atBottom" => true,
2020-06-07 19:04:43 +03:00
];
}
public function renderPhoto(int $ownerId, int $photoId): void
2020-06-07 19:04:43 +03:00
{
$photo = $this->photos->getByOwnerAndVID($ownerId, $photoId);
if (!$photo || $photo->isDeleted()) {
$this->notFound();
}
if (!$photo->canBeViewedBy($this->user->identity)) {
2023-12-02 20:21:16 +03:00
$this->flashFail("err", tr("forbidden"), tr("forbidden_comment"));
}
if (!is_null($this->queryParam("from"))) {
if (preg_match("%^album([0-9]++)$%", $this->queryParam("from"), $matches) === 1) {
2020-06-07 19:04:43 +03:00
$album = $this->albums->get((int) $matches[1]);
if ($album) {
if ($album->hasPhoto($photo) && !$album->isDeleted()) {
2020-06-07 19:04:43 +03:00
$this->template->album = $album;
}
}
2020-06-07 19:04:43 +03:00
}
}
2020-06-07 19:04:43 +03:00
$this->template->photo = $photo;
$this->template->cCount = $photo->getCommentsCount();
$this->template->cPage = (int) ($this->queryParam("p") ?? 1);
$this->template->comments = iterator_to_array($photo->getComments($this->template->cPage));
$this->template->owner = $photo->getOwner();
2020-06-07 19:04:43 +03:00
}
public function renderAbsolutePhoto($id): void
2021-11-15 22:45:48 +03:00
{
2021-11-16 12:56:27 +03:00
$id = (int) base_convert((string) $id, 32, 10);
2021-11-15 22:45:48 +03:00
$photo = $this->photos->get($id);
if (!$photo || $photo->isDeleted()) {
2021-11-15 22:45:48 +03:00
$this->notFound();
}
2021-11-15 22:45:48 +03:00
$this->template->_template = "Photos/Photo.xml";
$this->renderPhoto($photo->getOwner(true)->getId(), $photo->getVirtualId());
}
public function renderThumbnail($id, $size): void
{
$photo = $this->photos->get($id);
if (!$photo || $photo->isDeleted()) {
$this->notFound();
}
if (!$photo->forceSize($size)) {
chandler_http_panic(588, "Gone", "This thumbnail cannot be generated due to server misconfiguration");
}
$this->redirect($photo->getURLBySizeId($size), 8);
}
public function renderEditPhoto(int $ownerId, int $photoId): void
2020-06-07 19:04:43 +03:00
{
$this->assertUserLoggedIn();
$this->willExecuteWriteAction();
2020-06-07 19:04:43 +03:00
$photo = $this->photos->getByOwnerAndVID($ownerId, $photoId);
if (!$photo) {
$this->notFound();
}
if (is_null($this->user) || $this->user->id != $ownerId) {
$this->flashFail("err", tr("error_access_denied_short"), tr("error_access_denied"));
}
if ($_SERVER["REQUEST_METHOD"] === "POST") {
$photo->setDescription(empty($this->postParam("desc")) ? null : $this->postParam("desc"));
2020-06-07 19:04:43 +03:00
$photo->save();
$this->flash("succ", tr("changes_saved"), tr("new_description_will_appear"));
$this->redirect("/photo" . $photo->getPrettyId());
}
2020-06-07 19:04:43 +03:00
$this->template->photo = $photo;
}
public function renderUploadPhoto(): void
2020-06-07 19:04:43 +03:00
{
$this->assertUserLoggedIn();
$this->willExecuteWriteAction(true);
[WIP] Textarea: Upload multiple pictures (#800) * VKAPI: Fix bug when DELETED user appear if there is no user_ids * Textarea: Make multiple attachments * постмодернистское искусство * Use only attachPic for grabbing pic attachments TODO throw flashFail on bruh moment with pic attachments * draft masonry picture layout in posts xddd где мои опиаты??? * fix funny typos in computeMasonryLayout * Fix video bruh moment in textarea * Posts: add multiple kakahi for microblog * Photo: Add minimal implementation of миниатюра открывашка Co-authored-by: Daniel <60743585+myslivets@users.noreply.github.com> * Photo: Add ability to slide trough photos in one post This also gives ability to easily implement comments and actions * Photo: The Fxck Is This implementation of comments under photo in viewer * FloatingPhotoViewer: Better CSS - Fix that details background issue - Make slide buttons slightly shorter by height * FloatingPhotoViewer: Refactor, and make it better - Now you can actually check the comments under EVERY photo - Fix for textarea. Now you can publish comments * Fix funny typos xddd * Kinda fix poll display in non-microblog posts * Posts: Fix poll display in microblog posts * Add photos picker (#986) * early implementation of photos pickir Добавлен пикер фоточек и быстрая загрузка фото. Так же пофикшен просмотрщик фото в группах. Но, правда, я сломал копипейст, но это ладн. * Fiks fotos viver four coments. * Add picking photos from clubs albums Копипейст и граффити так и не пофикшены * Fix graffiti and copypaste Какого-то хуя копипаста у постов срабатывает два раза. * some fixesx * dragon drop * Fix PHP 8 compatibility * 5 (#988) --------- Co-authored-by: celestora <kitsuruko@gmail.com> Co-authored-by: Daniel <60743585+myslivets@users.noreply.github.com> Co-authored-by: lalka2016 <99399973+lalka2016@users.noreply.github.com> Co-authored-by: Alexander Minkin <weryskok@gmail.com>
2023-10-03 19:40:13 +03:00
if (is_null($this->queryParam("album"))) {
[WIP] Textarea: Upload multiple pictures (#800) * VKAPI: Fix bug when DELETED user appear if there is no user_ids * Textarea: Make multiple attachments * постмодернистское искусство * Use only attachPic for grabbing pic attachments TODO throw flashFail on bruh moment with pic attachments * draft masonry picture layout in posts xddd где мои опиаты??? * fix funny typos in computeMasonryLayout * Fix video bruh moment in textarea * Posts: add multiple kakahi for microblog * Photo: Add minimal implementation of миниатюра открывашка Co-authored-by: Daniel <60743585+myslivets@users.noreply.github.com> * Photo: Add ability to slide trough photos in one post This also gives ability to easily implement comments and actions * Photo: The Fxck Is This implementation of comments under photo in viewer * FloatingPhotoViewer: Better CSS - Fix that details background issue - Make slide buttons slightly shorter by height * FloatingPhotoViewer: Refactor, and make it better - Now you can actually check the comments under EVERY photo - Fix for textarea. Now you can publish comments * Fix funny typos xddd * Kinda fix poll display in non-microblog posts * Posts: Fix poll display in microblog posts * Add photos picker (#986) * early implementation of photos pickir Добавлен пикер фоточек и быстрая загрузка фото. Так же пофикшен просмотрщик фото в группах. Но, правда, я сломал копипейст, но это ладн. * Fiks fotos viver four coments. * Add picking photos from clubs albums Копипейст и граффити так и не пофикшены * Fix graffiti and copypaste Какого-то хуя копипаста у постов срабатывает два раза. * some fixesx * dragon drop * Fix PHP 8 compatibility * 5 (#988) --------- Co-authored-by: celestora <kitsuruko@gmail.com> Co-authored-by: Daniel <60743585+myslivets@users.noreply.github.com> Co-authored-by: lalka2016 <99399973+lalka2016@users.noreply.github.com> Co-authored-by: Alexander Minkin <weryskok@gmail.com>
2023-10-03 19:40:13 +03:00
$album = $this->albums->getUserWallAlbum($this->user->identity);
} else {
[$owner, $id] = explode("_", $this->queryParam("album"));
$album = $this->albums->get((int) $id);
}
if (!$album) {
$this->flashFail("err", tr("error"), tr("error_adding_to_deleted"), 500, true);
}
[WIP] Textarea: Upload multiple pictures (#800) * VKAPI: Fix bug when DELETED user appear if there is no user_ids * Textarea: Make multiple attachments * постмодернистское искусство * Use only attachPic for grabbing pic attachments TODO throw flashFail on bruh moment with pic attachments * draft masonry picture layout in posts xddd где мои опиаты??? * fix funny typos in computeMasonryLayout * Fix video bruh moment in textarea * Posts: add multiple kakahi for microblog * Photo: Add minimal implementation of миниатюра открывашка Co-authored-by: Daniel <60743585+myslivets@users.noreply.github.com> * Photo: Add ability to slide trough photos in one post This also gives ability to easily implement comments and actions * Photo: The Fxck Is This implementation of comments under photo in viewer * FloatingPhotoViewer: Better CSS - Fix that details background issue - Make slide buttons slightly shorter by height * FloatingPhotoViewer: Refactor, and make it better - Now you can actually check the comments under EVERY photo - Fix for textarea. Now you can publish comments * Fix funny typos xddd * Kinda fix poll display in non-microblog posts * Posts: Fix poll display in microblog posts * Add photos picker (#986) * early implementation of photos pickir Добавлен пикер фоточек и быстрая загрузка фото. Так же пофикшен просмотрщик фото в группах. Но, правда, я сломал копипейст, но это ладн. * Fiks fotos viver four coments. * Add picking photos from clubs albums Копипейст и граффити так и не пофикшены * Fix graffiti and copypaste Какого-то хуя копипаста у постов срабатывает два раза. * some fixesx * dragon drop * Fix PHP 8 compatibility * 5 (#988) --------- Co-authored-by: celestora <kitsuruko@gmail.com> Co-authored-by: Daniel <60743585+myslivets@users.noreply.github.com> Co-authored-by: lalka2016 <99399973+lalka2016@users.noreply.github.com> Co-authored-by: Alexander Minkin <weryskok@gmail.com>
2023-10-03 19:40:13 +03:00
# Для быстрой загрузки фоток из пикера фотографий нужен альбом, но юзер не может загружать фото
# в системные альбомы, так что так.
if (is_null($this->user) || !is_null($this->queryParam("album")) && !$album->canBeModifiedBy($this->user->identity)) {
$this->flashFail("err", tr("error_access_denied_short"), tr("error_access_denied"), 500, true);
}
if ($_SERVER["REQUEST_METHOD"] === "POST") {
if ($this->queryParam("act") == "finish") {
$result = json_decode($this->postParam("photos"), true);
foreach ($result as $photoId => $description) {
$phot = $this->photos->get($photoId);
if (!$phot || $phot->isDeleted() || $phot->getOwner()->getId() != $this->user->id) {
continue;
}
if (iconv_strlen($description) > 255) {
$this->flashFail("err", tr("error"), tr("description_too_long"), 500, true);
}
$phot->setDescription($description);
$phot->save();
$album = $phot->getAlbum();
}
$this->returnJson(["success" => true,
"album" => $album->getId(),
"owner" => $album->getOwner() instanceof User ? $album->getOwner()->getId() : $album->getOwner()->getId() * -1]);
2020-06-07 19:04:43 +03:00
}
if (!isset($_FILES)) {
$this->flashFail("err", tr("no_photo"), tr("select_file"), 500, true);
}
$photos = [];
if ((int) $this->postParam("count") > 10) {
[WIP] Textarea: Upload multiple pictures (#800) * VKAPI: Fix bug when DELETED user appear if there is no user_ids * Textarea: Make multiple attachments * постмодернистское искусство * Use only attachPic for grabbing pic attachments TODO throw flashFail on bruh moment with pic attachments * draft masonry picture layout in posts xddd где мои опиаты??? * fix funny typos in computeMasonryLayout * Fix video bruh moment in textarea * Posts: add multiple kakahi for microblog * Photo: Add minimal implementation of миниатюра открывашка Co-authored-by: Daniel <60743585+myslivets@users.noreply.github.com> * Photo: Add ability to slide trough photos in one post This also gives ability to easily implement comments and actions * Photo: The Fxck Is This implementation of comments under photo in viewer * FloatingPhotoViewer: Better CSS - Fix that details background issue - Make slide buttons slightly shorter by height * FloatingPhotoViewer: Refactor, and make it better - Now you can actually check the comments under EVERY photo - Fix for textarea. Now you can publish comments * Fix funny typos xddd * Kinda fix poll display in non-microblog posts * Posts: Fix poll display in microblog posts * Add photos picker (#986) * early implementation of photos pickir Добавлен пикер фоточек и быстрая загрузка фото. Так же пофикшен просмотрщик фото в группах. Но, правда, я сломал копипейст, но это ладн. * Fiks fotos viver four coments. * Add picking photos from clubs albums Копипейст и граффити так и не пофикшены * Fix graffiti and copypaste Какого-то хуя копипаста у постов срабатывает два раза. * some fixesx * dragon drop * Fix PHP 8 compatibility * 5 (#988) --------- Co-authored-by: celestora <kitsuruko@gmail.com> Co-authored-by: Daniel <60743585+myslivets@users.noreply.github.com> Co-authored-by: lalka2016 <99399973+lalka2016@users.noreply.github.com> Co-authored-by: Alexander Minkin <weryskok@gmail.com>
2023-10-03 19:40:13 +03:00
$this->flashFail("err", tr("no_photo"), "ты еблан", 500, true);
}
[WIP] Textarea: Upload multiple pictures (#800) * VKAPI: Fix bug when DELETED user appear if there is no user_ids * Textarea: Make multiple attachments * постмодернистское искусство * Use only attachPic for grabbing pic attachments TODO throw flashFail on bruh moment with pic attachments * draft masonry picture layout in posts xddd где мои опиаты??? * fix funny typos in computeMasonryLayout * Fix video bruh moment in textarea * Posts: add multiple kakahi for microblog * Photo: Add minimal implementation of миниатюра открывашка Co-authored-by: Daniel <60743585+myslivets@users.noreply.github.com> * Photo: Add ability to slide trough photos in one post This also gives ability to easily implement comments and actions * Photo: The Fxck Is This implementation of comments under photo in viewer * FloatingPhotoViewer: Better CSS - Fix that details background issue - Make slide buttons slightly shorter by height * FloatingPhotoViewer: Refactor, and make it better - Now you can actually check the comments under EVERY photo - Fix for textarea. Now you can publish comments * Fix funny typos xddd * Kinda fix poll display in non-microblog posts * Posts: Fix poll display in microblog posts * Add photos picker (#986) * early implementation of photos pickir Добавлен пикер фоточек и быстрая загрузка фото. Так же пофикшен просмотрщик фото в группах. Но, правда, я сломал копипейст, но это ладн. * Fiks fotos viver four coments. * Add picking photos from clubs albums Копипейст и граффити так и не пофикшены * Fix graffiti and copypaste Какого-то хуя копипаста у постов срабатывает два раза. * some fixesx * dragon drop * Fix PHP 8 compatibility * 5 (#988) --------- Co-authored-by: celestora <kitsuruko@gmail.com> Co-authored-by: Daniel <60743585+myslivets@users.noreply.github.com> Co-authored-by: lalka2016 <99399973+lalka2016@users.noreply.github.com> Co-authored-by: Alexander Minkin <weryskok@gmail.com>
2023-10-03 19:40:13 +03:00
for ($i = 0; $i < $this->postParam("count"); $i++) {
try {
$photo = new Photo();
$photo->setOwner($this->user->id);
$photo->setDescription("");
$photo->setFile($_FILES["photo_" . $i]);
$photo->setCreated(time());
$photo->save();
$photos[] = [
"url" => $photo->getURLBySizeId("tiny"),
"id" => $photo->getId(),
"vid" => $photo->getVirtualId(),
"owner" => $photo->getOwner()->getId(),
"link" => $photo->getURL(),
"pretty_id" => $photo->getPrettyId(),
];
} catch (ISE $ex) {
$name = $album->getName();
$this->flashFail("err", "Неизвестная ошибка", "Не удалось сохранить фотографию в $name.", 500, true);
}
$album->addPhoto($photo);
$album->setEdited(time());
$album->save();
}
$this->returnJson(["success" => true,
"photos" => $photos]);
2020-06-07 19:04:43 +03:00
} else {
$this->template->album = $album;
}
}
public function renderUnlinkPhoto(int $owner, int $albumId, int $photoId): void
2020-06-07 19:04:43 +03:00
{
$this->assertUserLoggedIn();
$this->willExecuteWriteAction();
2020-06-07 19:04:43 +03:00
$album = $this->albums->get($albumId);
$photo = $this->photos->get($photoId);
if (!$album || !$photo) {
$this->notFound();
}
if (!$album->hasPhoto($photo)) {
$this->notFound();
}
if (is_null($this->user) || !$album->canBeModifiedBy($this->user->identity)) {
$this->flashFail("err", tr("error_access_denied_short"), tr("error_access_denied"));
}
if ($_SERVER["REQUEST_METHOD"] === "POST") {
2020-06-07 19:04:43 +03:00
$this->assertNoCSRF();
$album->removePhoto($photo);
$album->setEdited(time());
$album->save();
$this->flash("succ", tr("photo_is_deleted"), tr("photo_is_deleted_desc"));
$this->redirect("/album" . $album->getPrettyId());
2020-06-07 19:04:43 +03:00
}
}
public function renderDeletePhoto(int $ownerId, int $photoId): void
2020-06-07 19:04:43 +03:00
{
$this->assertUserLoggedIn();
$this->willExecuteWriteAction($_SERVER["REQUEST_METHOD"] === "POST");
2020-06-07 19:04:43 +03:00
$this->assertNoCSRF();
2020-06-07 19:04:43 +03:00
$photo = $this->photos->getByOwnerAndVID($ownerId, $photoId);
if (!$photo) {
$this->notFound();
}
if (is_null($this->user) || $this->user->id != $ownerId) {
$this->flashFail("err", tr("error_access_denied_short"), tr("error_access_denied"));
}
if (!is_null($album = $photo->getAlbum())) {
$redirect = $album->getOwner() instanceof User ? "/id0" : "/club" . $ownerId;
} else {
$redirect = "/id0";
}
2020-06-07 19:04:43 +03:00
$photo->isolate();
$photo->delete();
if ($_SERVER["REQUEST_METHOD"] === "POST") {
$this->returnJson(["success" => true]);
}
$this->flash("succ", tr("photo_is_deleted"), tr("photo_is_deleted_desc"));
$this->redirect($redirect);
2020-06-07 19:04:43 +03:00
}
public function renderLike(int $wall, int $post_id): void
{
$this->assertUserLoggedIn();
$this->willExecuteWriteAction();
$this->assertNoCSRF();
$photo = $this->photos->getByOwnerAndVID($wall, $post_id);
if (!$photo || $photo->isDeleted() || !$photo->canBeViewedBy($this->user->identity)) {
$this->notFound();
}
if (!is_null($this->user)) {
$photo->toggleLike($this->user->identity);
}
if ($_SERVER["REQUEST_METHOD"] === "POST") {
$this->returnJson([
'success' => true,
]);
}
$this->redirect("$_SERVER[HTTP_REFERER]");
}
2020-06-07 19:04:43 +03:00
}