1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-22 03:32:47 +08:00
2020-09-26 18:14:35 +08:00

221 lines
5.0 KiB
PHP

<?php
namespace App\Validators;
use App\Caches\Chapter as ChapterCache;
use App\Caches\MaxChapterId as MaxChapterIdCache;
use App\Exceptions\BadRequest as BadRequestException;
use App\Models\Chapter as ChapterModel;
use App\Models\Course as CourseModel;
use App\Repos\Chapter as ChapterRepo;
class Chapter extends Validator
{
/**
* @param int $id
* @return ChapterModel
* @throws BadRequestException
*/
public function checkChapterCache($id)
{
$this->checkId($id);
$chapterCache = new ChapterCache();
$chapter = $chapterCache->get($id);
if (!$chapter) {
throw new BadRequestException('chapter.not_found');
}
return $chapter;
}
public function checkChapterVod($id)
{
$this->checkId($id);
$chapterRepo = new ChapterRepo();
$chapterVod = $chapterRepo->findChapterVod($id);
if (!$chapterVod) {
throw new BadRequestException('chapter.vod_not_found');
}
return $chapterVod;
}
public function checkChapterLive($id)
{
$this->checkId($id);
$chapterRepo = new ChapterRepo();
$chapterLive = $chapterRepo->findChapterLive($id);
if (!$chapterLive) {
throw new BadRequestException('chapter.live_not_found');
}
return $chapterLive;
}
public function checkChapterRead($id)
{
$this->checkId($id);
$chapterRepo = new ChapterRepo();
$chapterRead = $chapterRepo->findChapterRead($id);
if (!$chapterRead) {
throw new BadRequestException('chapter.read_not_found');
}
return $chapterRead;
}
public function checkChapter($id)
{
$this->checkId($id);
$chapterRepo = new ChapterRepo();
$chapter = $chapterRepo->findById($id);
if (!$chapter) {
throw new BadRequestException('chapter.not_found');
}
return $chapter;
}
public function checkId($id)
{
$id = intval($id);
$maxIdCache = new MaxChapterIdCache();
$maxId = $maxIdCache->get();
if ($id < 1 || $id > $maxId) {
throw new BadRequestException('chapter.not_found');
}
}
public function checkCourse($id)
{
$validator = new Course();
return $validator->checkCourse($id);
}
public function checkParent($id)
{
$chapterRepo = new ChapterRepo();
$chapter = $chapterRepo->findById($id);
if (!$chapter) {
throw new BadRequestException('chapter.parent_not_found');
}
return $chapter;
}
public function checkTitle($title)
{
$value = $this->filter->sanitize($title, ['trim', 'string']);
$length = kg_strlen($value);
if ($length < 2) {
throw new BadRequestException('chapter.title_too_short');
}
if ($length > 50) {
throw new BadRequestException('chapter.title_too_long');
}
return $value;
}
public function checkSummary($summary)
{
$value = $this->filter->sanitize($summary, ['trim', 'string']);
$length = kg_strlen($value);
if ($length > 255) {
throw new BadRequestException('chapter.summary_too_long');
}
return $value;
}
public function checkPriority($priority)
{
$value = $this->filter->sanitize($priority, ['trim', 'int']);
if ($value < 1 || $value > 255) {
throw new BadRequestException('chapter.invalid_priority');
}
return $value;
}
public function checkFreeStatus($status)
{
if (!in_array($status, [0, 1])) {
throw new BadRequestException('chapter.invalid_free_status');
}
return $status;
}
public function checkPublishStatus($status)
{
if (!in_array($status, [0, 1])) {
throw new BadRequestException('course.invalid_publish_status');
}
return $status;
}
public function checkPublishAbility(ChapterModel $chapter)
{
$attrs = $chapter->attrs;
if ($chapter->model == CourseModel::MODEL_VOD) {
if ($attrs['duration'] == 0) {
throw new BadRequestException('chapter.vod_not_ready');
}
} elseif ($chapter->model == CourseModel::MODEL_LIVE) {
if ($attrs['start_time'] == 0) {
throw new BadRequestException('chapter.live_time_empty');
}
} elseif ($chapter->model == CourseModel::MODEL_READ) {
if ($attrs['word_count'] == 0) {
throw new BadRequestException('chapter.read_not_ready');
}
}
}
public function checkDeleteAbility(ChapterModel $chapter)
{
$chapterRepo = new ChapterRepo();
$chapters = $chapterRepo->findAll([
'parent_id' => $chapter->id,
'deleted' => 0,
]);
if ($chapters->count() > 0) {
throw new BadRequestException('chapter.child_existed');
}
}
}