feat: 修改

This commit is contained in:
陈狼 2025-02-23 18:26:45 +08:00
parent 758460e3ab
commit e896f62f5f
2 changed files with 45 additions and 21 deletions

View File

@ -178,8 +178,9 @@ class UserController
* @Apidoc\Method("POST") * @Apidoc\Method("POST")
*/ */
public function active_user(Request $request){ public function active_user(Request $request){
$today = date('Y-m-d');
$user_id=$request->data['id']; $user_id=$request->data['id'];
$activeUsers = ActiveUsers::where('user_id',$user_id)->get(); $activeUsers = ActiveUsers::where('user_id',$user_id)->where('created_at', '>=', $today . " 00:00:00")->where('created_at', '<=', $today . " 23:59:59")->get();
return ApiResponseApp::success($activeUsers); return ApiResponseApp::success($activeUsers);
} }
} }

View File

@ -8,6 +8,7 @@ use app\model\ActiveUsers;
use app\dao\UserRewardDao; use app\dao\UserRewardDao;
use Workerman\Crontab\Crontab; use Workerman\Crontab\Crontab;
use app\model\User; use app\model\User;
use Carbon\Carbon;
/** /**
* 获取今天在线时间超过6小时的用户 * 获取今天在线时间超过6小时的用户
@ -46,11 +47,11 @@ class Task3
// new Crontab('50 7 * * *', function(){ // new Crontab('50 7 * * *', function(){
// echo date('Y-m-d H:i:s')."\n"; // echo date('Y-m-d H:i:s')."\n";
// }); // });
// // 每5秒执行一次 // // 每1小时执行一次
new Crontab('0 0 * * * *', function () { new Crontab('*/1 * * * * *', function () {
//获取在线时间超过6小时的用户 //获取在线时间超过6小时的用户
$today = date('Y-m-d'); $today = date('Y-m-d');
$UserPhone = UserPhone::where('day_score', '>=', 120)->where('day_score', '<',140)->get(); $UserPhone = UserPhone::where('day_score', '>=', 120)->get();
//判断用户绑定Whatsapp首次登录 //判断用户绑定Whatsapp首次登录
foreach ($UserPhone as $key => $value) { foreach ($UserPhone as $key => $value) {
$user_id = $value->user_id; $user_id = $value->user_id;
@ -58,40 +59,62 @@ class Task3
$user = User::find($user_id); $user = User::find($user_id);
if ($user->f_id==0) { if ($user->f_id==0) {
continue; continue;
} }
//获取该用户的父级 //获取该用户的父级
$parent = User::find($user->f_id); $parent = User::find($user->f_id);
//满足则加80积分 //满足则加80积分
UserRewardDao::base($parent->id, 5, 80, '有效用户奖励'); // UserRewardDao::base($parent->id, 5, 80, '有效用户奖励');
//vip_id等级加1,并更新数据库 //vip_id等级加1,并更新数据库
$parent->vip_id += 1; $parent->vip_id += 1;
//今天邀请人数加1 //今天邀请人数加1
$parent->today_num += 1; $parent->today_num += 1;
$parent->today_team_income+=80; // $parent->today_team_income+=80;
$parent->save(); $parent->save();
// ActiveUsers.c //判断今天有没有数据
$todayStart = Carbon::now()->startOfDay(); // 今天00:00:00
ActiveUsers::create([ $todayEnd = Carbon::now()->endOfDay(); // 今天23:59:59
'user_id' => $parent->id, $existingRecord = ActiveUsers::where('user_id', $parent->id)
'phone' => $value->phone, ->where('phone', $value->phone)
'income' => $value->day_score*0.2, ->whereBetween('created_at', [$todayStart, $todayEnd])
]); ->first();
if ($existingRecord) {
$existingRecord->update([
'income' => $value->day_score * 0.2,
]);
} else {
// 如果记录不存在,则创建新记录
ActiveUsers::create([
'user_id' => $parent->id,
'phone' => $value->phone,
'income' => $value->day_score * 0.2,
]);
}
//判定有没有父级的父级 这里父级没有默认是0 //判定有没有父级的父级 这里父级没有默认是0
if($parent->f_id==0){ if($parent->f_id==0){
continue; continue;
} }
//获取父级的父级 //获取父级的父级
$ancestor = User::find($parent->f_id); $ancestor = User::find($parent->f_id);
ActiveUsers::create([ $existingRecord1 = ActiveUsers::where('user_id', $ancestor->id)
'user_id' => $ancestor->id, ->where('phone', $value->phone)
'phone' => $value->phone, ->whereBetween('created_at', [$todayStart, $todayEnd])
'income' => $value->day_score*0.1, ->first();
]); if ($existingRecord1) {
$existingRecord1->update([
'income' => $value->day_score * 0.1,
]);
} else {
// 如果记录不存在,则创建新记录
ActiveUsers::create([
'user_id' => $ancestor->id,
'phone' => $value->phone,
'income' => $value->day_score*0.1,
]);
}
//今天活跃人数加1 //今天活跃人数加1
$ancestor->active_figures += 1; $ancestor->active_figures += 1;
$ancestor->save(); $ancestor->save();
} }
}); });
} }