1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-22 19:44:02 +08:00
2020-01-30 16:51:10 +08:00

63 lines
1.2 KiB
PHP

<?php
namespace App\Validators;
use App\Exceptions\BadRequest as BadRequestException;
use App\Repos\Topic as TopicRepo;
class Topic extends Validator
{
/**
* @param int $id
* @return \App\Models\Topic
* @throws BadRequestException
*/
public function checkTopic($id)
{
$topicRepo = new TopicRepo();
$topic = $topicRepo->findById($id);
if (!$topic) {
throw new BadRequestException('topic.not_found');
}
return $topic;
}
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']);
return $value;
}
public function checkPublishStatus($status)
{
if (!in_array($status, [0, 1])) {
throw new BadRequestException('topic.invalid_publish_status');
}
return $status;
}
}