2015-11-22 01:22:14 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Console\Commands;
|
|
|
|
|
2023-05-18 00:56:55 +08:00
|
|
|
use BookStack\Activity\Models\View;
|
2015-11-22 01:22:14 +08:00
|
|
|
use Illuminate\Console\Command;
|
|
|
|
|
2023-05-24 20:21:46 +08:00
|
|
|
class ClearViewsCommand extends Command
|
2015-11-22 01:22:14 +08:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The name and signature of the console command.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2017-02-26 17:14:18 +08:00
|
|
|
protected $signature = 'bookstack:clear-views';
|
2015-11-22 01:22:14 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The console command description.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2020-04-09 23:58:40 +08:00
|
|
|
protected $description = 'Clear all view-counts for all entities';
|
2015-11-22 01:22:14 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the console command.
|
|
|
|
*/
|
2023-05-24 19:59:50 +08:00
|
|
|
public function handle(): int
|
2015-11-22 01:22:14 +08:00
|
|
|
{
|
2023-05-24 19:59:50 +08:00
|
|
|
View::query()->truncate();
|
2017-02-26 17:14:18 +08:00
|
|
|
$this->comment('Views cleared');
|
2023-05-24 19:59:50 +08:00
|
|
|
return 0;
|
2015-11-22 01:22:14 +08:00
|
|
|
}
|
|
|
|
}
|