CRMEB_PRO_M/app/jobs/user/UserSvipJob.php

51 lines
1.5 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace app\jobs\user;
use app\services\user\UserServices;
use crmeb\basic\BaseJobs;
use crmeb\traits\QueueTrait;
use think\facade\Log;
/**
* 清除到期svip
* Class UserSvipJob
* @package app\jobs\user
*/
class UserSvipJob extends BaseJobs
{
use QueueTrait;
/**
* 执行清除到期积分
* @param $openids
* @return bool
*/
public function doJob($uids)
{
if (!$uids || !is_array($uids)) {
return true;
}
try {
/** @var UserServices $userServices */
$userServices = app()->make(UserServices::class);
foreach ($uids as $uid) {
$userServices->offMemberLevel($uid);
}
} catch (\Throwable $e) {
Log::error('清除到期用户svip失败,失败原因:' . $e->getMessage());
}
return true;
}
}