mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-22 19:44:02 +08:00
105 lines
2.4 KiB
PHP
105 lines
2.4 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2021 深圳市酷瓜软件有限公司
|
|
* @license https://opensource.org/licenses/GPL-2.0
|
|
* @link https://www.koogua.com
|
|
*/
|
|
|
|
namespace App\Services\Logic\Course;
|
|
|
|
use App\Models\Course as CourseModel;
|
|
use App\Models\CourseFavorite as CourseFavoriteModel;
|
|
use App\Models\User as UserModel;
|
|
use App\Repos\CourseFavorite as CourseFavoriteRepo;
|
|
use App\Services\Logic\CourseTrait;
|
|
use App\Services\Logic\Service as LogicService;
|
|
use App\Validators\UserLimit as UserLimitValidator;
|
|
|
|
class CourseFavorite extends LogicService
|
|
{
|
|
|
|
use CourseTrait;
|
|
|
|
public function handle($id)
|
|
{
|
|
$course = $this->checkCourse($id);
|
|
|
|
$user = $this->getLoginUser();
|
|
|
|
$validator = new UserLimitValidator();
|
|
|
|
$validator->checkFavoriteLimit($user);
|
|
|
|
$favoriteRepo = new CourseFavoriteRepo();
|
|
|
|
$favorite = $favoriteRepo->findCourseFavorite($course->id, $user->id);
|
|
|
|
if (!$favorite) {
|
|
|
|
$favorite = new CourseFavoriteModel();
|
|
|
|
$favorite->course_id = $course->id;
|
|
$favorite->user_id = $user->id;
|
|
|
|
$favorite->create();
|
|
|
|
} else {
|
|
|
|
$favorite->deleted = $favorite->deleted == 1 ? 0 : 1;
|
|
|
|
$favorite->update();
|
|
}
|
|
|
|
if ($favorite->deleted == 0) {
|
|
|
|
$action = 'do';
|
|
|
|
$this->incrCourseFavoriteCount($course);
|
|
$this->incrUserFavoriteCount($user);
|
|
|
|
} else {
|
|
|
|
$action = 'undo';
|
|
|
|
$this->decrCourseFavoriteCount($course);
|
|
$this->decrUserFavoriteCount($user);
|
|
}
|
|
|
|
return [
|
|
'action' => $action,
|
|
'count' => $course->favorite_count,
|
|
];
|
|
}
|
|
|
|
protected function incrCourseFavoriteCount(CourseModel $course)
|
|
{
|
|
$course->favorite_count += 1;
|
|
|
|
$course->update();
|
|
}
|
|
|
|
protected function decrCourseFavoriteCount(CourseModel $course)
|
|
{
|
|
if ($course->favorite_count > 0) {
|
|
$course->favorite_count -= 1;
|
|
$course->update();
|
|
}
|
|
}
|
|
|
|
protected function incrUserFavoriteCount(UserModel $user)
|
|
{
|
|
$user->favorite_count += 1;
|
|
|
|
$user->update();
|
|
}
|
|
|
|
protected function decrUserFavoriteCount(UserModel $user)
|
|
{
|
|
if ($user->favorite_count > 0) {
|
|
$user->favorite_count -= 1;
|
|
$user->update();
|
|
}
|
|
}
|
|
|
|
}
|