1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-24 12:05:39 +08:00
koogua 0336a54911 1.源文件增加版权信息
2.群组状态和课程协同
2021-06-13 15:49:47 +08:00

141 lines
3.2 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\Caches\MaxPackageId as MaxPackageIdCache;
use App\Caches\Package as PackageCache;
use App\Exceptions\BadRequest as BadRequestException;
use App\Library\Validators\Common as CommonValidator;
use App\Models\Package as PackageModel;
use App\Repos\Package as PackageRepo;
class Package extends Validator
{
/**
* @param int $id
* @return PackageModel
* @throws BadRequestException
*/
public function checkPackageCache($id)
{
$this->checkId($id);
$packageCache = new PackageCache();
$package = $packageCache->get($id);
if (!$package) {
throw new BadRequestException('package.not_found');
}
return $package;
}
public function checkPackage($id)
{
$this->checkId($id);
$packageRepo = new PackageRepo();
$package = $packageRepo->findById($id);
if (!$package) {
throw new BadRequestException('package.not_found');
}
return $package;
}
public function checkId($id)
{
$id = intval($id);
$maxIdCache = new MaxPackageIdCache();
$maxId = $maxIdCache->get();
if ($id < 1 || $id > $maxId) {
throw new BadRequestException('package.not_found');
}
}
public function checkCover($cover)
{
$value = $this->filter->sanitize($cover, ['trim', 'string']);
if (!CommonValidator::url($value)) {
throw new BadRequestException('package.invalid_cover');
}
return kg_cos_img_style_trim($value);
}
public function checkTitle($title)
{
$value = $this->filter->sanitize($title, ['trim', 'string']);
$length = kg_strlen($value);
if ($length < 2) {
throw new BadRequestException('package.title_too_short');
}
if ($length > 50) {
throw new BadRequestException('package.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('package.summary_too_long');
}
return $value;
}
public function checkMarketPrice($price)
{
$value = $this->filter->sanitize($price, ['trim', 'float']);
if ($value < 0.01 || $value > 10000) {
throw new BadRequestException('package.invalid_market_price');
}
return $value;
}
public function checkVipPrice($price)
{
$value = $this->filter->sanitize($price, ['trim', 'float']);
if ($value < 0.01 || $value > 10000) {
throw new BadRequestException('package.invalid_vip_price');
}
return $value;
}
public function checkPublishStatus($status)
{
if (!in_array($status, [0, 1])) {
throw new BadRequestException('package.invalid_publish_status');
}
return $status;
}
}