mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-15 05:00:49 +08:00
39 lines
818 B
PHP
39 lines
818 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Console\Commands;
|
||
|
|
|
||
|
|
use App\Repositories\SearchRepository;
|
||
|
|
use Illuminate\Console\Command;
|
||
|
|
|
||
|
|
class EsDeleteIndex extends Command
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* The name and signature of the console command.
|
||
|
|
*
|
||
|
|
* @var string
|
||
|
|
*/
|
||
|
|
protected $signature = 'es:delete_index';
|
||
|
|
|
||
|
|
/**
|
||
|
|
* The console command description.
|
||
|
|
*
|
||
|
|
* @var string
|
||
|
|
*/
|
||
|
|
protected $description = 'Delete index in Elasticsearch';
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Execute the console command.
|
||
|
|
*
|
||
|
|
* @return int
|
||
|
|
*/
|
||
|
|
public function handle()
|
||
|
|
{
|
||
|
|
$rep = new SearchRepository();
|
||
|
|
$result = $rep->deleteIndex();
|
||
|
|
$log = sprintf("[%s], %s, result: \n%s", nexus()->getRequestId(), __METHOD__, var_export($result, true));
|
||
|
|
$this->info($log);
|
||
|
|
do_log($log);
|
||
|
|
return 0;
|
||
|
|
}
|
||
|
|
}
|