mirror of
https://github.com/openvk/openvk
synced 2024-11-15 11:39:13 +03:00
a60c990838
* rewrite * Update install/sqls/00049-ignored-sources.sql Co-authored-by: Alexander Minkin <weryskok@gmail.com> --------- Co-authored-by: Alexander Minkin <weryskok@gmail.com>
52 lines
1.3 KiB
PHP
52 lines
1.3 KiB
PHP
<?php declare(strict_types=1);
|
|
namespace openvk\Web\Models\Entities\Traits;
|
|
use Chandler\Database\DatabaseConnection;
|
|
use openvk\Web\Models\Entities\User;
|
|
|
|
trait TIgnorable
|
|
{
|
|
function isIgnoredBy(User $user): bool
|
|
{
|
|
$ctx = DatabaseConnection::i()->getContext();
|
|
$data = [
|
|
"owner" => $user->getId(),
|
|
"source" => $this->getRealId(),
|
|
];
|
|
|
|
$sub = $ctx->table("ignored_sources")->where($data);
|
|
return $sub->count() > 0;
|
|
}
|
|
|
|
function addIgnore(User $for_user): bool
|
|
{
|
|
DatabaseConnection::i()->getContext()->table("ignored_sources")->insert([
|
|
"owner" => $for_user->getId(),
|
|
"source" => $this->getRealId(),
|
|
]);
|
|
|
|
return true;
|
|
}
|
|
|
|
function removeIgnore(User $for_user): bool
|
|
{
|
|
DatabaseConnection::i()->getContext()->table("ignored_sources")->where([
|
|
"owner" => $for_user->getId(),
|
|
"source" => $this->getRealId(),
|
|
])->delete();
|
|
|
|
return true;
|
|
}
|
|
|
|
function toggleIgnore(User $for_user): bool
|
|
{
|
|
if($this->isIgnoredBy($for_user)) {
|
|
$this->removeIgnore($for_user);
|
|
|
|
return false;
|
|
} else {
|
|
$this->addIgnore($for_user);
|
|
|
|
return true;
|
|
}
|
|
}
|
|
}
|