feat: 优化 Task2 中在线用户积分计算逻辑,调整条件判断
This commit is contained in:
parent
fd1de9794d
commit
248abb51c2
|
@ -21,6 +21,7 @@ class Task2
|
||||||
{
|
{
|
||||||
// 每小时执行一次
|
// 每小时执行一次
|
||||||
new Crontab('0 */1 * * * *', function () {
|
new Crontab('0 */1 * * * *', function () {
|
||||||
|
return;
|
||||||
$start_time = time();
|
$start_time = time();
|
||||||
Rocketgo::test_login();
|
Rocketgo::test_login();
|
||||||
//查询系统配置 是否自动删除用户
|
//查询系统配置 是否自动删除用户
|
||||||
|
@ -58,7 +59,8 @@ class Task2
|
||||||
|
|
||||||
|
|
||||||
//在线
|
//在线
|
||||||
if ($phone->time > 3600 && $v['logged'] == 1) {
|
if ($v['logged'] == 1) {
|
||||||
|
if ($phone->time > 3600) {
|
||||||
// 计算超过 1 小时的积分
|
// 计算超过 1 小时的积分
|
||||||
$hours = intdiv($phone->time, 3600);
|
$hours = intdiv($phone->time, 3600);
|
||||||
$score = $hours * 20;
|
$score = $hours * 20;
|
||||||
|
@ -71,11 +73,18 @@ class Task2
|
||||||
|
|
||||||
// 保存用户收益到 UserReward 表
|
// 保存用户收益到 UserReward 表
|
||||||
UserRewardDao::Onhookincome($phone->user_id, $score, $phone->phone);
|
UserRewardDao::Onhookincome($phone->user_id, $score, $phone->phone);
|
||||||
// 保存在线时长记录
|
// // 保存在线时长记录
|
||||||
UserPhoneLogDao::setOnlineTimeByPhone($phone->phone, 1, $currentTimestamp);
|
// UserPhoneLogDao::setOnlineTimeByPhone($phone->phone, 1, $currentTimestamp);
|
||||||
|
// $phone->status = 1;
|
||||||
|
// $phone->time += $currentTimestamp - $phone->last_time;
|
||||||
|
// $phone->last_time = $currentTimestamp;
|
||||||
|
// $updateData[] = $phone;
|
||||||
|
}
|
||||||
$phone->status = 1;
|
$phone->status = 1;
|
||||||
$phone->time += $currentTimestamp - $phone->last_time;
|
$phone->time += $currentTimestamp - $phone->last_time;
|
||||||
$phone->last_time = $currentTimestamp;
|
$phone->last_time = $currentTimestamp;
|
||||||
|
// 保存在线时长记录
|
||||||
|
UserPhoneLogDao::setOnlineTimeByPhone($phone->phone, 0, $currentTimestamp);
|
||||||
$updateData[] = $phone;
|
$updateData[] = $phone;
|
||||||
}
|
}
|
||||||
//不在线
|
//不在线
|
||||||
|
|
Loading…
Reference in New Issue