1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-23 20:00:27 +08:00
2021-07-23 15:10:55 +08:00

121 lines
2.9 KiB
PHP

<?php
/**
* @copyright Copyright (c) 2021 深圳市酷瓜软件有限公司
* @license https://opensource.org/licenses/GPL-2.0
* @link https://www.koogua.com
*/
namespace App\Services\Logic\Comment;
use App\Models\Comment as CommentModel;
use App\Models\CommentLike as CommentLikeModel;
use App\Models\User as UserModel;
use App\Repos\CommentLike as CommentLikeRepo;
use App\Services\Logic\CommentTrait;
use App\Services\Logic\Notice\System\CommentLiked as CommentLikedNotice;
use App\Services\Logic\Service as LogicService;
use App\Validators\UserLimit as UserLimitValidator;
class CommentLike extends LogicService
{
use CommentTrait;
public function handle($id)
{
$comment = $this->checkComment($id);
$user = $this->getLoginUser();
$validator = new UserLimitValidator();
$validator->checkDailyCommentLikeLimit($user);
$likeRepo = new CommentLikeRepo();
$commentLike = $likeRepo->findCommentLike($comment->id, $user->id);
$isFirstTime = true;
if (!$commentLike) {
$commentLike = new CommentLikeModel();
$commentLike->comment_id = $comment->id;
$commentLike->user_id = $user->id;
$commentLike->create();
} else {
$isFirstTime = false;
$commentLike->comment_id = $commentLike->deleted == 1 ? 0 : 1;
$commentLike->update();
}
$this->incrUserDailyCommentLikeCount($user);
if ($commentLike->deleted == 0) {
$action = 'do';
$this->incrCommentLikeCount($comment);
$this->eventsManager->fire('Comment:afterLike', $this, $comment);
} else {
$action = 'undo';
$this->decrCommentLikeCount($comment);
$this->eventsManager->fire('Comment:afterUndoLike', $this, $comment);
}
$isOwner = $user->id == $comment->owner_id;
/**
* 仅首次点赞发送通知
*/
if ($isFirstTime && !$isOwner) {
$this->handleCommentLikedNotice($comment, $user);
}
return [
'action' => $action,
'count' => $comment->like_count,
];
}
protected function incrCommentLikeCount(CommentModel $comment)
{
$comment->like_count += 1;
$comment->update();
}
protected function decrCommentLikeCount(CommentModel $comment)
{
if ($comment->like_count > 0) {
$comment->like_count -= 1;
$comment->update();
}
}
protected function incrUserDailyCommentLikeCount(UserModel $user)
{
$this->eventsManager->fire('UserDailyCounter:incrCommentLikeCount', $this, $user);
}
protected function handleCommentLikedNotice(CommentModel $comment, UserModel $sender)
{
$notice = new CommentLikedNotice();
$notice->handle($comment, $sender);
}
}