You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
2.4 KiB
82 lines
2.4 KiB
<?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\UserIntegralServices;
|
|
use crmeb\basic\BaseJobs;
|
|
use crmeb\traits\QueueTrait;
|
|
use think\facade\Log;
|
|
|
|
/**
|
|
* 清除到期积分
|
|
* Class UserIntegralJob
|
|
* @package app\jobs
|
|
*/
|
|
class UserIntegralJob extends BaseJobs
|
|
{
|
|
use QueueTrait;
|
|
|
|
/**
|
|
* 执行清除到期积分
|
|
* @param $openids
|
|
* @return bool
|
|
*/
|
|
public function doJob($uids)
|
|
{
|
|
if (!$uids || !is_array($uids)) {
|
|
return true;
|
|
}
|
|
try {
|
|
/** @var UserIntegralServices $userIntegralServices */
|
|
$userIntegralServices = app()->make(UserIntegralServices::class);
|
|
$userIntegralServices->doClearExpireIntegral($uids);
|
|
} catch (\Throwable $e) {
|
|
Log::error('清除用户到期积分失败,失败原因:' . $e->getMessage());
|
|
}
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* 赠送新人礼积分
|
|
* @param $uid
|
|
* @return bool
|
|
*/
|
|
public function newcomerGiveIntegral($uid)
|
|
{
|
|
try {
|
|
/** @var UserIntegralServices $userIntegralServices */
|
|
$userIntegralServices = app()->make(UserIntegralServices::class);
|
|
$userIntegralServices->newcomerGiveIntegral((int)$uid);
|
|
} catch (\Throwable $e) {
|
|
Log::error('赠送新人礼积分失败,失败原因:' . $e->getMessage());
|
|
}
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* 会员卡激活赠送积分
|
|
* @param $uid
|
|
* @return bool
|
|
*/
|
|
public function levelGiveIntegral($uid)
|
|
{
|
|
try {
|
|
/** @var UserIntegralServices $userIntegralServices */
|
|
$userIntegralServices = app()->make(UserIntegralServices::class);
|
|
$userIntegralServices->levelGiveIntegral((int)$uid);
|
|
} catch (\Throwable $e) {
|
|
Log::error('会员卡激活赠送积分失败,失败原因:' . $e->getMessage());
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
|