Compare commits

...

11 commits

Author SHA1 Message Date
mr❤️🤢
a6ce85aa6c
Merge bf3f7ac3cb into 4b7d2b9b17 2025-05-27 11:20:44 +00:00
mrilyew
bf3f7ac3cb wall.delete очень тяжёлое условие 2025-05-27 14:19:34 +03:00
mrilyew
4d8370f322 setStatusEditorShown >>>>> focus 2025-05-27 14:00:58 +03:00
mrilyew
6ffbc0ed29 albums-{your_id} >>> u was x albums 2025-05-27 13:47:30 +03:00
mrilyew
abf43c7ab5 albums-{your_id} >>> "mou fotografii" 2025-05-27 13:45:52 +03:00
mrilyew
5416090407 fix albums select on phota picketr 2025-05-27 13:44:20 +03:00
mrilyew
b43fe8b016 do not add photo to wall photos if it wrong 2025-05-27 13:38:29 +03:00
mrilyew
ff61ba5e24 provide upload id on upload context 2025-05-26 23:54:14 +03:00
mrilyew
9bd59d2b89 cover is unlisted now 2025-05-26 23:22:41 +03:00
mrilyew
88125a7195 overridesTemplates -> theme id != "mobile_ovk" 2025-05-26 21:45:40 +03:00
mrilyew
51e640ce42 add space 2025-05-26 21:41:34 +03:00
8 changed files with 37 additions and 22 deletions

View file

@ -1104,13 +1104,18 @@ final class Wall extends VKAPIRequestHandler
$post = (new PostsRepo())->getPostById($owner_id, $post_id, true); $post = (new PostsRepo())->getPostById($owner_id, $post_id, true);
if (!$post || $post->isDeleted()) { if (!$post || $post->isDeleted()) {
$this->fail(583, "Invalid post"); $this->fail(15, "Not found");
} }
$wallOwner = $post->getWallOwner(); $wallOwner = $post->getWallOwner();
# trying to solve the condition below.
# $post->getTargetWall() < 0 - if post on wall of club
# !$post->getWallOwner()->canBeModifiedBy($this->getUser()) - group is cannot be modifiet by %user%
# $post->getWallOwner()->getWallType() != 1 - wall is not open
# $post->getSuggestionType() == 0 - post is not suggested
if ($post->getTargetWall() < 0 && !$post->getWallOwner()->canBeModifiedBy($this->getUser()) && $post->getWallOwner()->getWallType() != 1 && $post->getSuggestionType() == 0) { if ($post->getTargetWall() < 0 && !$post->getWallOwner()->canBeModifiedBy($this->getUser()) && $post->getWallOwner()->getWallType() != 1 && $post->getSuggestionType() == 0) {
$this->fail(12, "Access denied: you can't delete your accepted post."); $this->fail(15, "Access denied");
} }
if ($post->getOwnerPost() == $this->getUser()->getId() || $post->getTargetWall() == $this->getUser()->getId() || $owner_id < 0 && $wallOwner->canBeModifiedBy($this->getUser())) { if ($post->getOwnerPost() == $this->getUser()->getId() || $post->getTargetWall() == $this->getUser()->getId() || $owner_id < 0 && $wallOwner->canBeModifiedBy($this->getUser())) {

View file

@ -260,6 +260,7 @@ class Playlist extends MediaCollection
$cover->setDescription("Playlist cover image"); $cover->setDescription("Playlist cover image");
$cover->setFile($file); $cover->setFile($file);
$cover->setCreated(time()); $cover->setCreated(time());
$cover->setSystem(true);
$cover->save(); $cover->save();
$this->setCover_photo_id($cover->getId()); $this->setCover_photo_id($cover->getId());

View file

@ -135,7 +135,7 @@ final class GroupPresenter extends OpenVKPresenter
$this->template->paginatorConf = (object) [ $this->template->paginatorConf = (object) [
"count" => $this->template->count, "count" => $this->template->count,
"page" => (int)($this->queryParam("p") ?? 1), "page" => (int) ($this->queryParam("p") ?? 1),
"amount" => 10, "amount" => 10,
"perPage" => OPENVK_DEFAULT_PER_PAGE, "perPage" => OPENVK_DEFAULT_PER_PAGE,
]; ];

View file

@ -272,21 +272,25 @@ final class PhotosPresenter extends OpenVKPresenter
$this->assertUserLoggedIn(); $this->assertUserLoggedIn();
$this->willExecuteWriteAction(true); $this->willExecuteWriteAction(true);
$upload_context = $this->queryParam("upload_context");
if (is_null($this->queryParam("album"))) { if (is_null($this->queryParam("album"))) {
$album = $this->albums->getUserWallAlbum($this->user->identity); if ((int) $upload_context == $this->user->id) {
$album = $this->albums->getUserWallAlbum($this->user->identity);
}
} else { } else {
[$owner, $id] = explode("_", $this->queryParam("album")); [$owner, $id] = explode("_", $this->queryParam("album"));
$album = $this->albums->get((int) $id); $album = $this->albums->get((int) $id);
} }
if (!$album) { if ($_SERVER["REQUEST_METHOD"] == "GET" || $this->queryParam("act") == "finish") {
$this->flashFail("err", tr("error"), tr("error_adding_to_deleted"), 500, true); if (!$album) {
$this->flashFail("err", tr("error"), tr("error_adding_to_deleted"));
}
} }
# Для быстрой загрузки фоток из пикера фотографий нужен альбом, но юзер не может загружать фото if ($album && !$album->canBeModifiedBy($this->user->identity)) {
# в системные альбомы, так что так. $this->flashFail("err", tr("error_access_denied_short"), tr("error_access_denied"));
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 ($_SERVER["REQUEST_METHOD"] === "POST") {
@ -306,8 +310,6 @@ final class PhotosPresenter extends OpenVKPresenter
$phot->setDescription($description); $phot->setDescription($description);
$phot->save(); $phot->save();
$album = $phot->getAlbum();
} }
$this->returnJson(["success" => true, $this->returnJson(["success" => true,
@ -346,9 +348,11 @@ final class PhotosPresenter extends OpenVKPresenter
$this->flashFail("err", "Неизвестная ошибка", "Не удалось сохранить фотографию в $name.", 500, true); $this->flashFail("err", "Неизвестная ошибка", "Не удалось сохранить фотографию в $name.", 500, true);
} }
$album->addPhoto($photo); if ($album != null) {
$album->setEdited(time()); $album->addPhoto($photo);
$album->save(); $album->setEdited(time());
$album->save();
}
} }
$this->returnJson(["success" => true, $this->returnJson(["success" => true,

View file

@ -5,7 +5,7 @@
{block title}{_albums} {$owner->getCanonicalName()}{/block} {block title}{_albums} {$owner->getCanonicalName()}{/block}
{block header} {block header}
{if isset($thisUser) && $thisUser->getId() == $owner->getId()} {if isset($thisUser) && $thisUser->getId() == $owner->getRealId()}
{_my_photos} {_my_photos}
{else} {else}
<a href="{$owner->getURL()}"> <a href="{$owner->getURL()}">
@ -18,7 +18,7 @@
{block size} {block size}
<div style="padding-bottom: 0px; padding-top: 0;" class="summaryBar"> <div style="padding-bottom: 0px; padding-top: 0;" class="summaryBar">
<div class="summary"> <div class="summary">
{if !is_null($thisUser) && $owner->getId() === $thisUser->getId()} {if !is_null($thisUser) && $owner->getRealId() === $thisUser->getId()}
{tr("albums_list", $count)} {tr("albums_list", $count)}
{else} {else}
{tr("albums", $count)} {tr("albums", $count)}

View file

@ -19,7 +19,7 @@
{* remove the "n:if" if you having issues with your theme *} {* remove the "n:if" if you having issues with your theme *}
<link n:if="!$theme->overridesTemplates()" rel="stylesheet" href="/themepack/{$theme->getId()}/{$theme->getVersion()}/stylesheet/styles.css" /> <link n:if="$theme->getId() != 'mobile_ovk'" rel="stylesheet" href="/themepack/{$theme->getId()}/{$theme->getVersion()}/stylesheet/styles.css" />
{if $isXmas} {if $isXmas}
<link rel="stylesheet" href="/themepack/{$theme->getId()}/{$theme->getVersion()}/resource/xmas.css" /> <link rel="stylesheet" href="/themepack/{$theme->getId()}/{$theme->getVersion()}/resource/xmas.css" />

View file

@ -2,7 +2,7 @@
{var $textAreaId = ($post ?? NULL) === NULL ? (++$GLOBALS["textAreaCtr"]) : $post->getId()} {var $textAreaId = ($post ?? NULL) === NULL ? (++$GLOBALS["textAreaCtr"]) : $post->getId()}
{var $textAreaId = ($custom_id ?? NULL) === NULL ? $textAreaId : $custom_id} {var $textAreaId = ($custom_id ?? NULL) === NULL ? $textAreaId : $custom_id}
<div id="write" class='model_content_textarea' style="padding: 5px 0;"> <div id="write" class='model_content_textarea' style="padding: 5px 0;" data-id="{is_null($owner) || gettype($owner) == 'integer' ? $owner : $owner->getId()}">
<form action="{$route}" method="post" enctype="multipart/form-data" style="margin:0;"> <form action="{$route}" method="post" enctype="multipart/form-data" style="margin:0;">
<textarea id="wall-post-input{$textAreaId}" placeholder="{_write}" name="text" style="width: 100%;resize: none;" class="small-textarea"></textarea> <textarea id="wall-post-input{$textAreaId}" placeholder="{_write}" name="text" style="width: 100%;resize: none;" class="small-textarea"></textarea>
<div> <div>

View file

@ -1198,7 +1198,7 @@ async function __uploadToTextarea(file, textareaNode) {
const rand = random_int(0, 1000) const rand = random_int(0, 1000)
textareaNode.find('.post-horizontal').append(`<a id='temp_filler${rand}' class="upload-item lagged"><img src='${temp_url}'></a>`) textareaNode.find('.post-horizontal').append(`<a id='temp_filler${rand}' class="upload-item lagged"><img src='${temp_url}'></a>`)
const res = await fetch(`/photos/upload`, { const res = await fetch(`/photos/upload?upload_context=${textareaNode.nodes[0].dataset.id}`, {
method: 'POST', method: 'POST',
body: form_data body: form_data
}) })
@ -1366,7 +1366,7 @@ u(document).on("click", "#__photoAttachment", async (e) => {
if(album == 0) { if(album == 0) {
photos = await window.OVKAPI.call('photos.getAll', {'owner_id': window.openvk.current_id, 'photo_sizes': 1, 'count': photos_per_page, 'offset': page * photos_per_page}) photos = await window.OVKAPI.call('photos.getAll', {'owner_id': window.openvk.current_id, 'photo_sizes': 1, 'count': photos_per_page, 'offset': page * photos_per_page})
} else { } else {
photos = await window.OVKAPI.call('photos.get', {'owner_id': window.openvk.current_id, 'album_id': album, 'photo_sizes': 1, 'count': photos_per_page, 'offset': page * photos_per_page}) photos = await window.OVKAPI.call('photos.get', {'owner_id': club != 0 ? Math.abs(club) * -1 : window.openvk.current_id, 'album_id': album, 'photo_sizes': 1, 'count': photos_per_page, 'offset': page * photos_per_page})
} }
} catch(e) { } catch(e) {
u("#attachment_insert_count h4").html(tr("is_x_photos", -1)) u("#attachment_insert_count h4").html(tr("is_x_photos", -1))
@ -2572,7 +2572,12 @@ u(document).on('mouseover mousemove mouseout', `div[data-tip='simple']`, (e) =>
}) })
function setStatusEditorShown(shown) { function setStatusEditorShown(shown) {
document.getElementById("status_editor").style.display = shown ? "block" : "none"; if(shown) {
document.getElementById("status_editor").style.display = "block"
document.querySelector("#status_editor input").focus()
} else {
document.getElementById("status_editor").style.display = "none"
}
} }
u(document).on('click', (event) => { u(document).on('click', (event) => {