1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-22 03:32:47 +08:00
2020-11-11 20:39:49 +08:00

129 lines
2.9 KiB
PHP

<?php
namespace App\Validators;
use App\Exceptions\BadRequest as BadRequestException;
use App\Models\Refund as RefundModel;
use App\Repos\Refund as RefundRepo;
class Refund extends Validator
{
public function checkRefund($id)
{
return $this->checkRefundById($id);
}
public function checkRefundById($id)
{
$refundRepo = new RefundRepo();
$refund = $refundRepo->findById($id);
if (!$refund) {
throw new BadRequestException('refund.not_found');
}
return $refund;
}
public function checkRefundBySn($sn)
{
$refundRepo = new RefundRepo();
$refund = $refundRepo->findBySn($sn);
if (!$refund) {
throw new BadRequestException('refund.not_found');
}
return $refund;
}
public function checkAmount($orderAmount, $refundAmount)
{
if ($refundAmount > $orderAmount) {
throw new BadRequestException('refund.invalid_amount');
}
}
public function checkStatus($status)
{
$list = RefundModel::statusTypes();
if (!array_key_exists($status, $list)) {
throw new BadRequestException('refund.invalid_status');
}
return $status;
}
public function checkReviewStatus($status)
{
$list = [
RefundModel::STATUS_APPROVED,
RefundModel::STATUS_REFUSED,
];
if (!in_array($status, $list)) {
throw new BadRequestException('refund.invalid_status');
}
return $status;
}
public function checkApplyNote($note)
{
$value = $this->filter->sanitize($note, ['trim', 'string']);
$length = kg_strlen($value);
if ($length < 2) {
throw new BadRequestException('refund.apply_note_too_short');
}
if ($length > 255) {
throw new BadRequestException('refund.apply_note_too_long');
}
return $value;
}
public function checkReviewNote($note)
{
$value = $this->filter->sanitize($note, ['trim', 'string']);
$length = kg_strlen($value);
if ($length < 2) {
throw new BadRequestException('refund.review_note_too_short');
}
if ($length > 255) {
throw new BadRequestException('refund.review_note_too_long');
}
return $value;
}
public function checkIfAllowCancel(RefundModel $refund)
{
$scopes = [
RefundModel::STATUS_PENDING,
RefundModel::STATUS_APPROVED,
];
if (!in_array($refund->status, $scopes)) {
throw new BadRequestException('refund.cancel_not_allowed');
}
}
public function checkIfAllowReview(RefundModel $refund)
{
if ($refund->status != RefundModel::STATUS_PENDING) {
throw new BadRequestException('refund.review_not_allowed');
}
}
}