mirror of
https://github.com/openvk/openvk
synced 2025-07-07 00:09:48 +03:00
When you like a repost, put likes on the entire hierarchy of repost posts recursively
If you like a repost, all posts from the hierarchy will be liked. If you remove a like from a post, likes will be removed from all posts from the hierarchy. I don’t know what the load will be in the case of large hierarchies (for example, 20 posts), but with small hierarchies (5 posts) everything works fine. Fixes #159
This commit is contained in:
parent
202c203b80
commit
e44cfa5bc4
3 changed files with 59 additions and 7 deletions
|
@ -3,6 +3,7 @@ namespace openvk\Web\Models\Entities;
|
|||
use Chandler\Database\DatabaseConnection as DB;
|
||||
use openvk\Web\Models\Repositories\Clubs;
|
||||
use openvk\Web\Models\RowModel;
|
||||
use openvk\Web\Models\Entities\Notifications\LikeNotification;
|
||||
|
||||
class Post extends Postable
|
||||
{
|
||||
|
@ -121,6 +122,42 @@ class Post extends Postable
|
|||
|
||||
$this->stateChanges("content", $content);
|
||||
}
|
||||
|
||||
function toggleLike(User $user): bool
|
||||
{
|
||||
$liked = parent::toggleLike($user);
|
||||
|
||||
if($this->getOwner(false)->getId() !== $user->getId() && !($this->getOwner() instanceof Club))
|
||||
(new LikeNotification($this->getOwner(false), $this, $user))->emit();
|
||||
|
||||
foreach($this->getChildren() as $attachment) {
|
||||
if($attachment instanceof Post)
|
||||
$attachment->setLike($liked, $user);
|
||||
}
|
||||
|
||||
return $liked;
|
||||
}
|
||||
|
||||
function setLike(bool $liked, User $user): void
|
||||
{
|
||||
$searchData = [
|
||||
"origin" => $user->getId(),
|
||||
"model" => static::class,
|
||||
"target" => $this->getRecord()->id,
|
||||
];
|
||||
|
||||
if((sizeof(DB::i()->getContext()->table("likes")->where($searchData)) > 0) !== $liked) {
|
||||
if($this->getOwner(false)->getId() !== $user->getId() && !($this->getOwner() instanceof Club))
|
||||
(new LikeNotification($this->getOwner(false), $this, $user))->emit();
|
||||
|
||||
parent::setLike($liked, $user);
|
||||
}
|
||||
|
||||
foreach($this->getChildren() as $attachment) {
|
||||
if($attachment instanceof Post)
|
||||
$attachment->setLike($liked, $user);
|
||||
}
|
||||
}
|
||||
|
||||
function deletePost(): void
|
||||
{
|
||||
|
|
|
@ -96,17 +96,35 @@ abstract class Postable extends Attachable
|
|||
yield (new Users)->get($like->origin);
|
||||
}
|
||||
|
||||
function toggleLike(User $user): void
|
||||
function toggleLike(User $user): bool
|
||||
{
|
||||
$searchData = [
|
||||
"origin" => $user->getId(),
|
||||
"model" => static::class,
|
||||
"target" => $this->getRecord()->id,
|
||||
];
|
||||
if(sizeof(DB::i()->getContext()->table("likes")->where($searchData)) > 0)
|
||||
|
||||
if(sizeof(DB::i()->getContext()->table("likes")->where($searchData)) > 0) {
|
||||
DB::i()->getContext()->table("likes")->where($searchData)->delete();
|
||||
else
|
||||
return false;
|
||||
}
|
||||
|
||||
DB::i()->getContext()->table("likes")->insert($searchData);
|
||||
return true;
|
||||
}
|
||||
|
||||
function setLike(bool $liked, User $user): void
|
||||
{
|
||||
$searchData = [
|
||||
"origin" => $user->getId(),
|
||||
"model" => static::class,
|
||||
"target" => $this->getRecord()->id,
|
||||
];
|
||||
|
||||
if($liked)
|
||||
DB::i()->getContext()->table("likes")->insert($searchData);
|
||||
else
|
||||
DB::i()->getContext()->table("likes")->where($searchData)->delete();
|
||||
}
|
||||
|
||||
function hasLikeFrom(User $user): bool
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?php declare(strict_types=1);
|
||||
namespace openvk\Web\Presenters;
|
||||
use openvk\Web\Models\Entities\{Post, Photo, Video, Club, User};
|
||||
use openvk\Web\Models\Entities\Notifications\{LikeNotification, RepostNotification, WallPostNotification};
|
||||
use openvk\Web\Models\Entities\Notifications\{RepostNotification, WallPostNotification};
|
||||
use openvk\Web\Models\Repositories\{Posts, Users, Clubs, Albums};
|
||||
use Chandler\Database\DatabaseConnection;
|
||||
use Nette\InvalidStateException as ISE;
|
||||
|
@ -278,9 +278,6 @@ final class WallPresenter extends OpenVKPresenter
|
|||
|
||||
if(!is_null($this->user)) {
|
||||
$post->toggleLike($this->user->identity);
|
||||
|
||||
if($post->getOwner(false)->getId() !== $this->user->identity->getId() && !($post->getOwner() instanceof Club))
|
||||
(new LikeNotification($post->getOwner(false), $post, $this->user->identity))->emit();
|
||||
}
|
||||
|
||||
$this->redirect(
|
||||
|
|
Loading…
Reference in a new issue