2021-08-27 14:10:42 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
|
|
|
|
use Illuminate\Console\Command;
|
|
|
|
|
2022-06-26 14:14:36 +00:00
|
|
|
use App\Models\Domain;
|
2021-08-27 14:10:42 +00:00
|
|
|
use App\Jobs\EchoareaImport as Job;
|
|
|
|
|
|
|
|
class EchoareaImport extends Command
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The name and signature of the console command.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $signature = 'echoarea:import'
|
|
|
|
.' {file : NA File}'
|
|
|
|
.' {domain : Domain}'
|
|
|
|
.' {--P|prefix= : Add prefix to description}'
|
|
|
|
.' {--U|unlink : Delete file after import}';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The console command description.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $description = 'Import Echoarea';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the console command.
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function handle()
|
|
|
|
{
|
|
|
|
$do = Domain::where('name',strtolower($this->argument('domain')))->singleOrFail();
|
|
|
|
return Job::dispatchSync($this->argument('file'),$do,$this->option('prefix'),$this->option('unlink'));
|
|
|
|
}
|
|
|
|
}
|