mirror of
https://github.com/lkddi/Xboard.git
synced 2026-04-03 10:30:51 +08:00
- Implement Workerman-based `xboard:ws-server` for real-time node synchronization. - Support custom routes, outbounds, and certificate configurations via JSON. - Optimize scheduled tasks with `lazyById` to minimize memory footprint. - Enhance reactivity using Observers for `Plan`, `Server`, and `ServerRoute`. - Expand protocol support for `httpupgrade`, `h2`, and `mieru`.
36 lines
949 B
PHP
36 lines
949 B
PHP
<?php
|
|
|
|
namespace App\Observers;
|
|
|
|
use App\Models\Plan;
|
|
use App\Models\User;
|
|
use App\Services\TrafficResetService;
|
|
|
|
class PlanObserver
|
|
{
|
|
/**
|
|
* reset user next_reset_at
|
|
*/
|
|
public function updated(Plan $plan): void
|
|
{
|
|
if (!$plan->isDirty('reset_traffic_method')) {
|
|
return;
|
|
}
|
|
$trafficResetService = app(TrafficResetService::class);
|
|
User::where('plan_id', $plan->id)
|
|
->where('banned', 0)
|
|
->where(function ($query) {
|
|
$query->where('expired_at', '>', time())
|
|
->orWhereNull('expired_at');
|
|
})
|
|
->lazyById(500)
|
|
->each(function (User $user) use ($trafficResetService) {
|
|
$nextResetTime = $trafficResetService->calculateNextResetTime($user);
|
|
$user->update([
|
|
'next_reset_at' => $nextResetTime?->timestamp,
|
|
]);
|
|
});
|
|
}
|
|
}
|
|
|