mirror of
https://github.com/openvk/openvk
synced 2024-11-11 09:29:29 +03:00
12c41dcdd6
* Fix returning 200 response for non-existing user * requireUser in getCounters and createComment * return 1, where it should in Polls API
71 lines
2.6 KiB
PHP
71 lines
2.6 KiB
PHP
<?php declare(strict_types=1);
|
|
namespace openvk\VKAPI\Handlers;
|
|
use openvk\Web\Models\Repositories\Users as UsersRepo;
|
|
use openvk\Web\Models\Repositories\Posts as PostsRepo;
|
|
|
|
final class Likes extends VKAPIRequestHandler
|
|
{
|
|
function add(string $type, int $owner_id, int $item_id): object
|
|
{
|
|
$this->requireUser();
|
|
$this->willExecuteWriteAction();
|
|
|
|
switch($type) {
|
|
case "post":
|
|
$post = (new PostsRepo)->getPostById($owner_id, $item_id);
|
|
if(is_null($post))
|
|
$this->fail(100, "One of the parameters specified was missing or invalid: object not found");
|
|
|
|
$post->setLike(true, $this->getUser());
|
|
|
|
return (object) [
|
|
"likes" => $post->getLikesCount()
|
|
];
|
|
default:
|
|
$this->fail(100, "One of the parameters specified was missing or invalid: incorrect type");
|
|
}
|
|
}
|
|
|
|
function delete(string $type, int $owner_id, int $item_id): object
|
|
{
|
|
$this->requireUser();
|
|
$this->willExecuteWriteAction();
|
|
|
|
switch($type) {
|
|
case "post":
|
|
$post = (new PostsRepo)->getPostById($owner_id, $item_id);
|
|
if (is_null($post))
|
|
$this->fail(100, "One of the parameters specified was missing or invalid: object not found");
|
|
|
|
$post->setLike(false, $this->getUser());
|
|
return (object) [
|
|
"likes" => $post->getLikesCount()
|
|
];
|
|
default:
|
|
$this->fail(100, "One of the parameters specified was missing or invalid: incorrect type");
|
|
}
|
|
}
|
|
|
|
function isLiked(int $user_id, string $type, int $owner_id, int $item_id): object
|
|
{
|
|
$this->requireUser();
|
|
|
|
switch($type) {
|
|
case "post":
|
|
$user = (new UsersRepo)->get($user_id);
|
|
if (is_null($user))
|
|
$this->fail(100, "One of the parameters specified was missing or invalid: user not found");
|
|
|
|
$post = (new PostsRepo)->getPostById($owner_id, $item_id);
|
|
if (is_null($post))
|
|
$this->fail(100, "One of the parameters specified was missing or invalid: object not found");
|
|
|
|
return (object) [
|
|
"liked" => (int) $post->hasLikeFrom($user),
|
|
"copied" => 0 # TODO: handle this
|
|
];
|
|
default:
|
|
$this->fail(100, "One of the parameters specified was missing or invalid: incorrect type");
|
|
}
|
|
}
|
|
}
|