mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-10 18:30:51 +08:00
41 lines
950 B
PHP
41 lines
950 B
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use App\Repositories\SearchRepository;
|
|
use Illuminate\Console\Command;
|
|
|
|
class EsImport extends Command
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'es:import {--torrent_id=}';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Import torrent to Elasticsearch, options: --torrent_id';
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*
|
|
* @return int
|
|
*/
|
|
public function handle()
|
|
{
|
|
$rep = new SearchRepository();
|
|
$torrentId = $this->option('torrent_id');
|
|
$this->info("torrent_id: $torrentId");
|
|
$result = $rep->import($torrentId);
|
|
$log = sprintf("[%s], %s, result: \n%s", nexus()->getRequestId(), __METHOD__, var_export($result, true));
|
|
$this->info($log);
|
|
do_log($log);
|
|
return 0;
|
|
}
|
|
}
|