mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-22 03:32:47 +08:00
103 lines
2.4 KiB
PHP
103 lines
2.4 KiB
PHP
<?php
|
|
|
|
namespace App\Builders;
|
|
|
|
use App\Models\Chapter as ChapterModel;
|
|
use App\Models\Course as CourseModel;
|
|
use Phalcon\Mvc\Model\Resultset;
|
|
use Phalcon\Mvc\Model\ResultsetInterface;
|
|
|
|
class CourseChapterList extends Builder
|
|
{
|
|
|
|
/**
|
|
* @param int $courseId
|
|
* @return array
|
|
*/
|
|
public function handle($courseId)
|
|
{
|
|
$list = [];
|
|
|
|
$chapters = $this->findChapters($courseId);
|
|
|
|
if ($chapters->count() == 0) {
|
|
return [];
|
|
}
|
|
|
|
foreach ($chapters as $chapter) {
|
|
$list[] = [
|
|
'id' => $chapter->id,
|
|
'title' => $chapter->title,
|
|
'model' => $chapter->model,
|
|
'children' => $this->handleChildren($chapter),
|
|
];
|
|
}
|
|
|
|
return $list;
|
|
}
|
|
|
|
/**
|
|
* @param ChapterModel $chapter
|
|
* @return array
|
|
*/
|
|
protected function handleChildren(ChapterModel $chapter)
|
|
{
|
|
$lessons = $this->findLessons($chapter->id);
|
|
|
|
if ($lessons->count() == 0) {
|
|
return [];
|
|
}
|
|
|
|
$list = [];
|
|
|
|
foreach ($lessons as $lesson) {
|
|
|
|
/**
|
|
* @var $attrs array
|
|
*/
|
|
$attrs = $lesson->attrs;
|
|
|
|
if ($chapter->model == CourseModel::MODEL_VOD) {
|
|
unset($attrs['file_id'], $attrs['file_status']);
|
|
}
|
|
|
|
$list[] = [
|
|
'id' => $lesson->id,
|
|
'title' => $lesson->title,
|
|
'model' => $lesson->model,
|
|
'free' => $lesson->free,
|
|
'attrs' => $attrs,
|
|
];
|
|
}
|
|
|
|
return $list;
|
|
}
|
|
|
|
/**
|
|
* @param int $courseId
|
|
* @return ResultsetInterface|Resultset|ChapterModel[]
|
|
*/
|
|
protected function findChapters($courseId)
|
|
{
|
|
return ChapterModel::query()
|
|
->where('course_id = :course_id:', ['course_id' => $courseId])
|
|
->andWhere('parent_id = 0 AND deleted = 0')
|
|
->orderBy('priority ASC, id ASC')
|
|
->execute();
|
|
}
|
|
|
|
/**
|
|
* @param int $chapterId
|
|
* @return ResultsetInterface|Resultset|ChapterModel[]
|
|
*/
|
|
protected function findLessons($chapterId)
|
|
{
|
|
return ChapterModel::query()
|
|
->where('parent_id = :parent_id:', ['parent_id' => $chapterId])
|
|
->andWhere('deleted = 0')
|
|
->orderBy('priority ASC, id ASC')
|
|
->execute();
|
|
}
|
|
|
|
}
|