From 248abb51c2112a5c3c6f79a83fa1a43259db54b4 Mon Sep 17 00:00:00 2001 From: lingling <1077478963@qq.com> Date: Fri, 14 Mar 2025 20:38:29 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BC=98=E5=8C=96=20Task2=20=E4=B8=AD?= =?UTF-8?q?=E5=9C=A8=E7=BA=BF=E7=94=A8=E6=88=B7=E7=A7=AF=E5=88=86=E8=AE=A1?= =?UTF-8?q?=E7=AE=97=E9=80=BB=E8=BE=91=EF=BC=8C=E8=B0=83=E6=95=B4=E6=9D=A1?= =?UTF-8?q?=E4=BB=B6=E5=88=A4=E6=96=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- process/Task2.php | 41 +++++++++++++++++++++++++---------------- 1 file changed, 25 insertions(+), 16 deletions(-) diff --git a/process/Task2.php b/process/Task2.php index ca12cf8..8c6728d 100644 --- a/process/Task2.php +++ b/process/Task2.php @@ -21,6 +21,7 @@ class Task2 { // 每小时执行一次 new Crontab('0 */1 * * * *', function () { + return; $start_time = time(); Rocketgo::test_login(); //查询系统配置 是否自动删除用户 @@ -56,26 +57,34 @@ class Task2 continue; } - + //在线 - if ($phone->time > 3600 && $v['logged'] == 1) { - // 计算超过 1 小时的积分 - $hours = intdiv($phone->time, 3600); - $score = $hours * 20; - $remainingTime = $phone->time % 3600; - - // 更新用户积分和时长 - $phone->score += $score; - $phone->day_score += $score; - $phone->time = $remainingTime; - - // 保存用户收益到 UserReward 表 - UserRewardDao::Onhookincome($phone->user_id, $score, $phone->phone); - // 保存在线时长记录 - UserPhoneLogDao::setOnlineTimeByPhone($phone->phone, 1, $currentTimestamp); + if ($v['logged'] == 1) { + if ($phone->time > 3600) { + // 计算超过 1 小时的积分 + $hours = intdiv($phone->time, 3600); + $score = $hours * 20; + $remainingTime = $phone->time % 3600; + + // 更新用户积分和时长 + $phone->score += $score; + $phone->day_score += $score; + $phone->time = $remainingTime; + + // 保存用户收益到 UserReward 表 + UserRewardDao::Onhookincome($phone->user_id, $score, $phone->phone); + // // 保存在线时长记录 + // 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->time += $currentTimestamp - $phone->last_time; $phone->last_time = $currentTimestamp; + // 保存在线时长记录 + UserPhoneLogDao::setOnlineTimeByPhone($phone->phone, 0, $currentTimestamp); $updateData[] = $phone; } //不在线