mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
CleanupLoginKeys
This commit is contained in:
34
app/Console/Commands/Database/CleanupLoginKeys.php
Normal file
34
app/Console/Commands/Database/CleanupLoginKeys.php
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Console\Commands\Database;
|
||||||
|
|
||||||
|
use Illuminate\Console\Command;
|
||||||
|
use Illuminate\Support\Facades\DB;
|
||||||
|
|
||||||
|
class CleanupLoginKeys extends Command
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* The name and signature of the console command.
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected $signature = 'loginkeys:cleanup';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The console command description.
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected $description = 'Command description';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Execute the console command.
|
||||||
|
* @return int
|
||||||
|
*/
|
||||||
|
public function handle()
|
||||||
|
{
|
||||||
|
DB::table('login_keys')
|
||||||
|
->where('created_at', '<', now()->subDays(1))
|
||||||
|
->delete();
|
||||||
|
|
||||||
|
return Command::SUCCESS;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
namespace App\Console;
|
namespace App\Console;
|
||||||
|
|
||||||
|
use App\Console\Commands\Database\CleanupLoginKeys;
|
||||||
use App\Console\Commands\Feed\ReadAndSyncPodcastFeeds;
|
use App\Console\Commands\Feed\ReadAndSyncPodcastFeeds;
|
||||||
use App\Console\Commands\OpenBooks\SyncOpenBooks;
|
use App\Console\Commands\OpenBooks\SyncOpenBooks;
|
||||||
use Illuminate\Console\Scheduling\Schedule;
|
use Illuminate\Console\Scheduling\Schedule;
|
||||||
@@ -24,12 +25,15 @@ class Kernel extends ConsoleKernel
|
|||||||
*/
|
*/
|
||||||
protected function schedule(Schedule $schedule)
|
protected function schedule(Schedule $schedule)
|
||||||
{
|
{
|
||||||
|
|
||||||
$schedule->call(new PruneStaleAttachments)
|
$schedule->call(new PruneStaleAttachments)
|
||||||
->daily();
|
->daily();
|
||||||
$schedule->command(SyncOpenBooks::class)
|
$schedule->command(SyncOpenBooks::class)
|
||||||
->dailyAt('04:00');
|
->dailyAt('04:00');
|
||||||
$schedule->command(ReadAndSyncPodcastFeeds::class)
|
$schedule->command(ReadAndSyncPodcastFeeds::class)
|
||||||
->dailyAt('04:30');
|
->dailyAt('04:30');
|
||||||
|
$schedule->command(CleanupLoginKeys::class)
|
||||||
|
->everyFifteenMinutes();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user