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

138 lines
3.0 KiB
PHP

<?php
namespace App\Validators;
use App\Caches\Category as CategoryCache;
use App\Caches\MaxCategoryId as MaxCategoryIdCache;
use App\Exceptions\BadRequest as BadRequestException;
use App\Models\Category as CategoryModel;
use App\Repos\Category as CategoryRepo;
class Category extends Validator
{
/**
* @param int $id
* @return CategoryModel
* @throws BadRequestException
*/
public function checkCategoryCache($id)
{
$this->checkId($id);
$categoryCache = new CategoryCache();
$category = $categoryCache->get($id);
if (!$category) {
throw new BadRequestException('category.not_found');
}
return $category;
}
public function checkCategory($id)
{
$this->checkId($id);
$categoryRepo = new CategoryRepo();
$category = $categoryRepo->findById($id);
if (!$category) {
throw new BadRequestException('category.not_found');
}
return $category;
}
public function checkId($id)
{
$id = intval($id);
$maxIdCache = new MaxCategoryIdCache();
$maxId = $maxIdCache->get();
if ($id < 1 || $id > $maxId) {
throw new BadRequestException('category.not_found');
}
}
public function checkParent($id)
{
$categoryRepo = new CategoryRepo();
$category = $categoryRepo->findById($id);
if (!$category) {
throw new BadRequestException('category.parent_not_found');
}
return $category;
}
public function checkType($type)
{
$list = CategoryModel::types();
if (!array_key_exists($type, $list)) {
throw new BadRequestException('category.invalid_type');
}
return $type;
}
public function checkName($name)
{
$value = $this->filter->sanitize($name, ['trim', 'string']);
$length = kg_strlen($value);
if ($length < 2) {
throw new BadRequestException('category.name_too_short');
}
if ($length > 30) {
throw new BadRequestException('category.name_too_long');
}
return $value;
}
public function checkPriority($priority)
{
$value = $this->filter->sanitize($priority, ['trim', 'int']);
if ($value < 1 || $value > 255) {
throw new BadRequestException('category.invalid_priority');
}
return $value;
}
public function checkPublishStatus($status)
{
if (!in_array($status, [0, 1])) {
throw new BadRequestException('category.invalid_publish_status');
}
return $status;
}
public function checkDeleteAbility($category)
{
$categoryRepo = new CategoryRepo();
$categories = $categoryRepo->findAll([
'parent_id' => $category->id,
'deleted' => 0,
]);
if ($categories->count() > 0) {
throw new BadRequestException('category.has_child_node');
}
}
}