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

102 lines
2.1 KiB
PHP

<?php
namespace App\Validators;
use App\Caches\MaxTopicId as MaxTopicIdCache;
use App\Caches\Topic as TopicCache;
use App\Exceptions\BadRequest as BadRequestException;
use App\Models\Topic as TopicModel;
use App\Repos\Topic as TopicRepo;
class Topic extends Validator
{
/**
* @param int $id
* @return TopicModel
* @throws BadRequestException
*/
public function checkTopicCache($id)
{
$this->checkId($id);
$topicCache = new TopicCache();
$topic = $topicCache->get($id);
if (!$topic) {
throw new BadRequestException('topic.not_found');
}
return $topic;
}
public function checkTopic($id)
{
$this->checkId($id);
$topicRepo = new TopicRepo();
$topic = $topicRepo->findById($id);
if (!$topic) {
throw new BadRequestException('topic.not_found');
}
return $topic;
}
public function checkId($id)
{
$id = intval($id);
$maxIdCache = new MaxTopicIdCache();
$maxId = $maxIdCache->get();
if ($id < 1 || $id > $maxId) {
throw new BadRequestException('topic.not_found');
}
}
public function checkTitle($title)
{
$value = $this->filter->sanitize($title, ['trim', 'string']);
$length = kg_strlen($value);
if ($length < 2) {
throw new BadRequestException('topic.title_too_short');
}
if ($length > 50) {
throw new BadRequestException('topic.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('topic.summary_too_long');
}
return $value;
}
public function checkPublishStatus($status)
{
if (!in_array($status, [0, 1])) {
throw new BadRequestException('topic.invalid_publish_status');
}
return $status;
}
}