1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-28 13:21:37 +08:00
koogua 4cae5ece11 !16 v1.2.0阶段性合并
* 更换README.md中的简书图床为gitee本地
* 修复编辑器图片上传,增加上传文件身份认证,markdown内容解析
* 移除Mobile模块,修复API请求章节信息权限问题
2020-11-27 09:38:54 +08:00

54 lines
1.3 KiB
PHP

<?php
namespace App\Services\Logic\Review;
use App\Models\Course as CourseModel;
use App\Services\CourseStat as CourseStatService;
use App\Services\Logic\CourseTrait;
use App\Services\Logic\ReviewTrait;
use App\Services\Logic\Service;
use App\Validators\Review as ReviewValidator;
class ReviewUpdate extends Service
{
use CourseTrait;
use ReviewTrait;
public function handle($id)
{
$post = $this->request->getPost();
$review = $this->checkReview($id);
$course = $this->checkCourse($review->course_id);
$user = $this->getLoginUser();
$validator = new ReviewValidator();
$validator->checkOwner($user->id, $review->owner_id);
$validator->checkIfAllowEdit($review);
$data = [];
$data['content'] = $validator->checkContent($post['content']);
$data['rating1'] = $validator->checkRating($post['rating1']);
$data['rating2'] = $validator->checkRating($post['rating2']);
$data['rating3'] = $validator->checkRating($post['rating3']);
$review->update($data);
$this->updateCourseRating($course);
}
protected function updateCourseRating(CourseModel $course)
{
$service = new CourseStatService();
$service->updateRating($course->id);
}
}