2017-03-19 08:48:44 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Console\Commands;
|
|
|
|
|
2021-11-11 09:10:11 -05:00
|
|
|
use BookStack\Entities\Models\Entity;
|
2022-08-16 06:27:22 -04:00
|
|
|
use BookStack\Search\SearchIndex;
|
2017-03-19 08:48:44 -04:00
|
|
|
use Illuminate\Console\Command;
|
2021-09-26 10:48:22 -04:00
|
|
|
use Illuminate\Support\Facades\DB;
|
2017-03-19 08:48:44 -04:00
|
|
|
|
2023-05-24 08:21:46 -04:00
|
|
|
class RegenerateSearchCommand extends Command
|
2017-03-19 08:48:44 -04:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The name and signature of the console command.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2023-05-24 07:59:50 -04:00
|
|
|
protected $signature = 'bookstack:regenerate-search
|
|
|
|
{--database= : The database connection to use}';
|
2017-03-19 08:48:44 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The console command description.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2017-10-01 12:51:59 -04:00
|
|
|
protected $description = 'Re-index all content for searching';
|
2017-03-19 08:48:44 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the console command.
|
|
|
|
*/
|
2023-05-24 07:59:50 -04:00
|
|
|
public function handle(SearchIndex $searchIndex): int
|
2017-03-19 08:48:44 -04:00
|
|
|
{
|
2020-04-09 11:58:40 -04:00
|
|
|
$connection = DB::getDefaultConnection();
|
2017-03-26 14:24:57 -04:00
|
|
|
if ($this->option('database') !== null) {
|
2020-04-09 11:58:40 -04:00
|
|
|
DB::setDefaultConnection($this->option('database'));
|
2017-03-26 14:24:57 -04:00
|
|
|
}
|
|
|
|
|
2023-05-24 07:59:50 -04:00
|
|
|
$searchIndex->indexAllEntities(function (Entity $model, int $processed, int $total): void {
|
2021-11-11 09:10:11 -05:00
|
|
|
$this->info('Indexed ' . class_basename($model) . ' entries (' . $processed . '/' . $total . ')');
|
|
|
|
});
|
|
|
|
|
2020-04-09 11:58:40 -04:00
|
|
|
DB::setDefaultConnection($connection);
|
2021-11-11 09:10:11 -05:00
|
|
|
$this->line('Search index regenerated!');
|
|
|
|
|
|
|
|
return static::SUCCESS;
|
2017-03-19 08:48:44 -04:00
|
|
|
}
|
|
|
|
}
|