1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-24 12:05:39 +08:00
2023-12-09 19:02:14 +08:00

90 lines
2.0 KiB
PHP

<?php
/**
* @copyright Copyright (c) 2021 深圳市酷瓜软件有限公司
* @license https://opensource.org/licenses/GPL-2.0
* @link https://www.koogua.com
*/
namespace App\Validators;
use App\Exceptions\BadRequest as BadRequestException;
use App\Library\Validators\Common as CommonValidator;
use App\Repos\Vip as VipRepo;
class Vip extends Validator
{
public function checkVip($id)
{
$vipRepo = new VipRepo();
$vip = $vipRepo->findById($id);
if (!$vip) {
throw new BadRequestException('vip.not_found');
}
return $vip;
}
public function checkTitle($title)
{
$value = $this->filter->sanitize($title, ['trim', 'string']);
$length = kg_strlen($value);
if ($length < 2) {
throw new BadRequestException('vip.title_too_short');
}
if ($length > 30) {
throw new BadRequestException('vip.title_too_long');
}
return $value;
}
public function checkCover($cover)
{
$value = $this->filter->sanitize($cover, ['trim', 'string']);
if (!CommonValidator::image($value)) {
throw new BadRequestException('vip.invalid_cover');
}
return kg_cos_img_style_trim($value);
}
public function checkExpiry($expiry)
{
$value = $this->filter->sanitize($expiry, ['trim', 'int']);
if ($value < 1 || $value > 60) {
throw new BadRequestException('vip.invalid_expiry');
}
return $value;
}
public function checkPrice($price)
{
$value = $this->filter->sanitize($price, ['trim', 'float']);
if ($value < 1 || $value > 999999) {
throw new BadRequestException('vip.invalid_price');
}
return $value;
}
public function checkPublishStatus($status)
{
if (!in_array($status, [0, 1])) {
throw new BadRequestException('vip.invalid_publish_status');
}
return $status;
}
}