Files
UNIT3D-Community-Edition/app/Console/Commands/AutoDeleteStoppedPeers.php
2024-05-23 13:58:29 +00:00

57 lines
1.4 KiB
PHP

<?php
declare(strict_types=1);
/**
* NOTICE OF LICENSE.
*
* UNIT3D Community Edition is open-sourced software licensed under the GNU Affero General Public License v3.0
* The details is bundled with this project in the file LICENSE.txt.
*
* @project UNIT3D Community Edition
*
* @author Roardom <roardom@protonmail.com>
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
*/
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Exception;
use Illuminate\Support\Facades\DB;
use Throwable;
class AutoDeleteStoppedPeers extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'auto:delete_stopped_peers';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Deletes all stopped peers';
/**
* Execute the console command.
*
* @throws Exception|Throwable If there is an error during the execution of the command.
*/
final public function handle(): void
{
DB::transaction(static function (): void {
DB::table('peers')
->where('active', '=', 0)
->where('updated_at', '>', now()->subHours(2))
->delete();
}, 5);
$this->comment('Automated delete stopped peers command complete');
}
}