mirror of
https://github.com/v2board/v2board.git
synced 2024-11-10 17:49:11 +08:00
54 lines
1006 B
PHP
54 lines
1006 B
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use Illuminate\Console\Command;
|
|
use App\Models\Order;
|
|
use App\Models\User;
|
|
|
|
class CheckExpire extends Command
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'check:expire';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = '过期检查';
|
|
|
|
/**
|
|
* Create a new command instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function handle()
|
|
{
|
|
$users = User::all();
|
|
foreach ($users as $user) {
|
|
if ($user->expired_at < time() || $user->u + $user->d >= $user->transfer_enable) {
|
|
$user->enable = 0;
|
|
} else {
|
|
$user->enable = 1;
|
|
}
|
|
$user->save();
|
|
}
|
|
}
|
|
|
|
}
|