mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-22 11:41:27 +08:00
159 lines
3.5 KiB
PHP
159 lines
3.5 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Admin\Services;
|
|
|
|
use App\Builders\ReviewList as ReviewListBuilder;
|
|
use App\Library\Paginator\Query as PagerQuery;
|
|
use App\Repos\Course as CourseRepo;
|
|
use App\Repos\Review as ReviewRepo;
|
|
use App\Services\CourseStat as CourseStatService;
|
|
use App\Validators\Review as ReviewValidator;
|
|
|
|
class Review extends Service
|
|
{
|
|
|
|
public function getReviews()
|
|
{
|
|
$pagerQuery = new PagerQuery();
|
|
|
|
$params = $pagerQuery->getParams();
|
|
|
|
$params['deleted'] = $params['deleted'] ?? 0;
|
|
|
|
$sort = $pagerQuery->getSort();
|
|
$page = $pagerQuery->getPage();
|
|
$limit = $pagerQuery->getLimit();
|
|
|
|
$reviewRepo = new ReviewRepo();
|
|
|
|
$pager = $reviewRepo->paginate($params, $sort, $page, $limit);
|
|
|
|
return $this->handleReviews($pager);
|
|
}
|
|
|
|
public function getCourse($courseId)
|
|
{
|
|
$courseRepo = new CourseRepo();
|
|
|
|
return $courseRepo->findById($courseId);
|
|
}
|
|
|
|
public function getReview($id)
|
|
{
|
|
return $this->findOrFail($id);
|
|
}
|
|
|
|
public function updateReview($id)
|
|
{
|
|
$review = $this->findOrFail($id);
|
|
|
|
$post = $this->request->getPost();
|
|
|
|
$validator = new ReviewValidator();
|
|
|
|
$data = [];
|
|
|
|
if (isset($post['content'])) {
|
|
$data['content'] = $validator->checkContent($post['content']);
|
|
}
|
|
|
|
if (isset($post['rating1'])) {
|
|
$data['rating1'] = $validator->checkRating($post['rating1']);
|
|
}
|
|
|
|
if (isset($post['rating2'])) {
|
|
$data['rating2'] = $validator->checkRating($post['rating2']);
|
|
}
|
|
|
|
if (isset($post['rating3'])) {
|
|
$data['rating3'] = $validator->checkRating($post['rating3']);
|
|
}
|
|
|
|
if (isset($post['published'])) {
|
|
$data['published'] = $validator->checkPublishStatus($post['published']);
|
|
}
|
|
|
|
$review->update($data);
|
|
|
|
$this->updateCourseRating($review->course_id);
|
|
|
|
return $review;
|
|
}
|
|
|
|
public function deleteReview($id)
|
|
{
|
|
$review = $this->findOrFail($id);
|
|
|
|
$review->deleted = 1;
|
|
|
|
$review->update();
|
|
|
|
$this->decrCourseReviewCount($review->course_id);
|
|
}
|
|
|
|
public function restoreReview($id)
|
|
{
|
|
$review = $this->findOrFail($id);
|
|
|
|
$review->deleted = 0;
|
|
|
|
$review->update();
|
|
|
|
$this->incrCourseReviewCount($review->course_id);
|
|
}
|
|
|
|
protected function findOrFail($id)
|
|
{
|
|
$validator = new ReviewValidator();
|
|
|
|
return $validator->checkReview($id);
|
|
}
|
|
|
|
protected function incrCourseReviewCount($courseId)
|
|
{
|
|
$courseRepo = new CourseRepo();
|
|
|
|
$course = $courseRepo->findById($courseId);
|
|
|
|
$course->review_count -= 1;
|
|
|
|
$course->update();
|
|
}
|
|
|
|
protected function decrCourseReviewCount($courseId)
|
|
{
|
|
$courseRepo = new CourseRepo();
|
|
|
|
$course = $courseRepo->findById($courseId);
|
|
|
|
$course->review_count += 1;
|
|
|
|
$course->update();
|
|
}
|
|
|
|
protected function updateCourseRating($courseId)
|
|
{
|
|
$service = new CourseStatService();
|
|
|
|
$service->updateRating($courseId);
|
|
}
|
|
|
|
protected function handleReviews($pager)
|
|
{
|
|
if ($pager->total_items > 0) {
|
|
|
|
$builder = new ReviewListBuilder();
|
|
|
|
$pipeA = $pager->items->toArray();
|
|
$pipeB = $builder->handleCourses($pipeA);
|
|
$pipeC = $builder->handleUsers($pipeB);
|
|
$pipeD = $builder->objects($pipeC);
|
|
|
|
$pager->items = $pipeD;
|
|
}
|
|
|
|
return $pager;
|
|
}
|
|
|
|
}
|