mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-23 03:50:56 +08:00
185 lines
4.0 KiB
PHP
185 lines
4.0 KiB
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use App\Repos\Course as CourseRepo;
|
|
use App\Repos\CourseRating as CourseRatingRepo;
|
|
|
|
class CourseStat extends Service
|
|
{
|
|
|
|
public function updateLessonCount($courseId)
|
|
{
|
|
$courseRepo = new CourseRepo();
|
|
|
|
$course = $courseRepo->findById($courseId);
|
|
|
|
$lessonCount = $courseRepo->countLessons($courseId);
|
|
|
|
$course->lesson_count = $lessonCount;
|
|
|
|
$course->update();
|
|
}
|
|
|
|
public function updateUserCount($courseId)
|
|
{
|
|
$courseRepo = new CourseRepo();
|
|
|
|
$course = $courseRepo->findById($courseId);
|
|
|
|
$userCount = $courseRepo->countUsers($courseId);
|
|
|
|
$course->user_count = $userCount;
|
|
|
|
$course->update();
|
|
}
|
|
|
|
public function updateRating($courseId)
|
|
{
|
|
$courseRepo = new CourseRepo();
|
|
|
|
$course = $courseRepo->findById($courseId);
|
|
|
|
$courseRatingRepo = new CourseRatingRepo();
|
|
|
|
$courseRating = $courseRatingRepo->findByCourseId($course->id);
|
|
|
|
$courseRating->rating = $courseRatingRepo->averageRating($course->id);
|
|
$courseRating->rating1 = $courseRatingRepo->averageRating1($course->id);
|
|
$courseRating->rating2 = $courseRatingRepo->averageRating2($course->id);
|
|
$courseRating->rating3 = $courseRatingRepo->averageRating3($course->id);
|
|
|
|
$courseRating->update();
|
|
|
|
$course->rating = $courseRating->rating;
|
|
|
|
$course->update();
|
|
}
|
|
|
|
public function updateScore($courseId)
|
|
{
|
|
/**
|
|
* @todo 计算综合评分
|
|
*/
|
|
}
|
|
|
|
public function updateReadAttrs($courseId)
|
|
{
|
|
$courseRepo = new CourseRepo();
|
|
|
|
$course = $courseRepo->findById($courseId);
|
|
|
|
$lessons = $courseRepo->findLessons($courseId);
|
|
|
|
if ($lessons->count() == 0) {
|
|
return;
|
|
}
|
|
|
|
$wordCount = 0;
|
|
|
|
$duration = 0;
|
|
|
|
foreach ($lessons as $lesson) {
|
|
|
|
/**
|
|
* @var array $attrs
|
|
*/
|
|
$attrs = $lesson->attrs;
|
|
|
|
if (isset($attrs['word_count'])) {
|
|
$wordCount += $attrs['word_count'];
|
|
}
|
|
|
|
if (isset($attrs['duration'])) {
|
|
$duration += $attrs['duration'];
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @var array $attrs
|
|
*/
|
|
$attrs = $course->attrs;
|
|
|
|
$attrs['word_count'] = $wordCount;
|
|
$attrs['duration'] = $duration;
|
|
|
|
$course->update(['attrs' => $attrs]);
|
|
}
|
|
|
|
public function updateLiveAttrs($courseId)
|
|
{
|
|
$courseRepo = new CourseRepo();
|
|
|
|
$course = $courseRepo->findById($courseId);
|
|
|
|
$lessons = $courseRepo->findLessons($course->id);
|
|
|
|
if ($lessons->count() == 0) {
|
|
return;
|
|
}
|
|
|
|
$scopes = [];
|
|
|
|
foreach ($lessons as $lesson) {
|
|
|
|
/**
|
|
* @var array $attrs
|
|
*/
|
|
$attrs = $lesson->attrs;
|
|
|
|
if (isset($attrs['start_time'])) {
|
|
$scopes[] = $attrs['start_time'];
|
|
}
|
|
}
|
|
|
|
if (!$scopes) return;
|
|
|
|
/**
|
|
* @var array $attrs
|
|
*/
|
|
$attrs = $course->attrs;
|
|
|
|
$attrs['start_date'] = date('Y-m-d', min($scopes));
|
|
$attrs['end_date'] = date('Y-m-d', max($scopes));
|
|
|
|
$course->update(['attrs' => $attrs]);
|
|
}
|
|
|
|
public function updateVodAttrs($courseId)
|
|
{
|
|
$courseRepo = new CourseRepo();
|
|
|
|
$course = $courseRepo->findById($courseId);
|
|
|
|
$lessons = $courseRepo->findChapters($course->id);
|
|
|
|
if ($lessons->count() == 0) {
|
|
return;
|
|
}
|
|
|
|
$duration = 0;
|
|
|
|
foreach ($lessons as $lesson) {
|
|
|
|
/**
|
|
* @var array $attrs
|
|
*/
|
|
$attrs = $lesson->attrs;
|
|
|
|
if (isset($attrs['duration'])) {
|
|
$duration += $attrs['duration'];
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @var array $attrs
|
|
*/
|
|
$attrs = $course->attrs;
|
|
|
|
$attrs['duration'] = $duration;
|
|
|
|
$course->update(['attrs' => $attrs]);
|
|
}
|
|
|
|
}
|