101 lines
2.7 KiB
PHP
101 lines
2.7 KiB
PHP
<?php
|
|
|
|
namespace App\Jobs;
|
|
|
|
use Carbon\Carbon;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldBeUnique;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Support\Facades\Log;
|
|
use Illuminate\Support\Facades\Storage;
|
|
use League\Flysystem\UnableToMoveFile;
|
|
|
|
use App\Classes\FTN\Tic;
|
|
use App\Models\Domain;
|
|
|
|
class TicProcess implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
private const LOGKEY = 'JTP';
|
|
|
|
private ?Domain $do;
|
|
|
|
public const QUEUE = 'tic';
|
|
|
|
/**
|
|
* Create a new job instance.
|
|
*
|
|
* @param string $file Received name, stored in Storage::disk('local'), ie: storage/app
|
|
* @param string|null $domain
|
|
*/
|
|
public function __construct(private string $file,private ?string $domain=NULL)
|
|
{
|
|
$this->do = $domain ? Domain::where('name',$domain)->singleOrFail() : NULL;
|
|
|
|
$this->onQueue(self::QUEUE);
|
|
}
|
|
|
|
public function __get($key): mixed
|
|
{
|
|
switch ($key) {
|
|
case 'subject':
|
|
return sprintf('%s %s',$this->do?->name,$this->file);
|
|
|
|
default:
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle()
|
|
{
|
|
$fs = Storage::disk(config('fido.local_disk'));
|
|
$rel_name = sprintf('%s/%s',config('fido.dir'),$this->file);
|
|
|
|
$to = new Tic;
|
|
try {
|
|
$to->load($fs->path($rel_name));
|
|
|
|
} catch (\Exception $e) {
|
|
Log::error(sprintf('%s:! Error loading TIC file [%s]',self::LOGKEY,$rel_name));
|
|
return;
|
|
}
|
|
|
|
Log::info(sprintf('%s:= Processed [%s] storing [%s] as id [%d]',self::LOGKEY,$this->file,$to->fo->name,$to->fo->id));
|
|
|
|
if (config('fido.packet_keep')) {
|
|
$dir = sprintf('%s/%s',config('fido.dir'),Carbon::now()->format('Ymd'));
|
|
Log::debug(sprintf('%s:- Moving processed TIC [%s] to [%s]',self::LOGKEY,$rel_name,$dir));
|
|
|
|
try {
|
|
if ($fs->makeDirectory($dir)) {
|
|
$fs->move($rel_name,$x=sprintf('%s/%s/%s',config('fido.dir'),$dir,$this->file));
|
|
Log::info(sprintf('%s:- Moved processed TIC [%s] to [%s]',self::LOGKEY,$rel_name,$x));
|
|
|
|
} else
|
|
Log::error(sprintf('%s:! Unable to create dir [%s]',self::LOGKEY,$dir));
|
|
|
|
} catch (UnableToMoveFile $e) {
|
|
Log::error(sprintf('%s:! Unable to move TIC [%s] to [%s] (%s)',self::LOGKEY,$rel_name,$dir,$e->getMessage()));
|
|
|
|
} catch (\Exception $e) {
|
|
Log::error(sprintf('%s:! Failed moving TIC [%s] to [%s] (%s)',self::LOGKEY,$rel_name,$dir,$e->getMessage()));
|
|
}
|
|
|
|
} else {
|
|
if (! $fs->delete($rel_name))
|
|
Log::alert(sprintf('%s:! Failed to delete [%s]',self::LOGKEY,$rel_name));
|
|
}
|
|
|
|
if ($to->isNodelist())
|
|
NodelistImport::dispatch($to->fo,$this->domain);
|
|
}
|
|
} |