clrghouz/app/Console/Commands/FileareaImport.php

40 lines
839 B
PHP

<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use App\Models\Domain;
use App\Jobs\FileareaImport as Job;
class FileareaImport extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'filearea: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 Filearea';
/**
* 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'));
}
}