- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明 Made-with: Cursor
90 lines
2.4 KiB
PHP
90 lines
2.4 KiB
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | Author: ScottPan Team
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\jobs\user;
|
|
|
|
|
|
use app\services\user\UserIntegralServices;
|
|
use crmeb\basic\BaseJobs;
|
|
use crmeb\traits\QueueTrait;
|
|
|
|
/**
|
|
* 清除到期积分
|
|
* 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) {
|
|
|
|
response_log_write([
|
|
'message' => '清除用户到期积分失败,失败原因:' . $e->getMessage(),
|
|
'file' => $e->getFile(),
|
|
'line' => $e->getLine()
|
|
]);
|
|
}
|
|
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) {
|
|
response_log_write([
|
|
'message' => '赠送新人礼积分失败,失败原因:' . $e->getMessage(),
|
|
'file' => $e->getFile(),
|
|
'line' => $e->getLine()
|
|
]);
|
|
}
|
|
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) {
|
|
|
|
response_log_write([
|
|
'message' => '会员卡激活赠送积分失败,失败原因:' . $e->getMessage(),
|
|
'file' => $e->getFile(),
|
|
'line' => $e->getLine()
|
|
]);
|
|
}
|
|
return true;
|
|
}
|
|
}
|