54 lines
2.1 KiB
PHP
54 lines
2.1 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||
// +----------------------------------------------------------------------
|
||
// | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
|
||
// +----------------------------------------------------------------------
|
||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||
// +----------------------------------------------------------------------
|
||
// | Author: CRMEB Team <admin@crmeb.com>
|
||
// +----------------------------------------------------------------------
|
||
|
||
|
||
namespace crmeb\listens;
|
||
|
||
|
||
use app\common\repositories\user\UserBillRepository;
|
||
use crmeb\interfaces\ListenerInterface;
|
||
use crmeb\services\TimerService;
|
||
use Swoole\Timer;
|
||
use think\facade\Db;
|
||
|
||
class AutoUnLockIntegralListen extends TimerService implements ListenerInterface
|
||
{
|
||
|
||
public function handle($event): void
|
||
{
|
||
//TODO 自动解冻积分
|
||
$this->tick(1000 * 60 * 20, function () {
|
||
$userBill = app()->make(UserBillRepository::class);
|
||
request()->clearCache();
|
||
$timer = ((int)systemConfig('integral_freeze'));
|
||
$time = date('Y-m-d H:i:s', $timer ? strtotime("- $timer day") : time());
|
||
$bills = $userBill->getTimeoutIntegralBill($time);
|
||
Db::transaction(function () use ($userBill, $bills) {
|
||
foreach ($bills as $bill) {
|
||
if($bill->user){
|
||
if ($bill->number > 0) {
|
||
$integral = bcsub($bill->number, $userBill->refundIntegral($bill->link_id, $bill->uid), 2);
|
||
if ($integral > 0) {
|
||
$bill->user->integral = bcadd($bill->user->integral, $integral, 2);
|
||
$bill->user->save();
|
||
}
|
||
}
|
||
}
|
||
$bill->status = 1;
|
||
$bill->balance = $bill->user->integral ?? 0;
|
||
$bill->save();
|
||
}
|
||
});
|
||
});
|
||
}
|
||
}
|