mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-24 12:05:39 +08:00
58 lines
1.2 KiB
PHP
58 lines
1.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\Exceptions\BadRequest as BadRequestException;
|
|
use App\Repos\Reward as RewardRepo;
|
|
|
|
class Reward extends Validator
|
|
{
|
|
|
|
public function checkReward($id)
|
|
{
|
|
$rewardRepo = new RewardRepo();
|
|
|
|
$reward = $rewardRepo->findById($id);
|
|
|
|
if (!$reward) {
|
|
throw new BadRequestException('reward.not_found');
|
|
}
|
|
|
|
return $reward;
|
|
}
|
|
|
|
public function checkTitle($title)
|
|
{
|
|
$value = $this->filter->sanitize($title, ['trim', 'string']);
|
|
|
|
$length = kg_strlen($value);
|
|
|
|
if ($length < 2) {
|
|
throw new BadRequestException('reward.title_too_short');
|
|
}
|
|
|
|
if ($length > 30) {
|
|
throw new BadRequestException('reward.title_too_long');
|
|
}
|
|
|
|
return $value;
|
|
}
|
|
|
|
public function checkPrice($price)
|
|
{
|
|
$value = $this->filter->sanitize($price, ['trim', 'float']);
|
|
|
|
if ($value < 0.01 || $value > 10000) {
|
|
throw new BadRequestException('reward.invalid_price');
|
|
}
|
|
|
|
return $value;
|
|
}
|
|
|
|
}
|