clrghouz/app/Jobs/EchoareaImport.php

94 lines
2.0 KiB
PHP

<?php
namespace App\Jobs;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
use Illuminate\Support\Facades\Log;
use App\Models\{Domain,Echoarea};
use App\Traits\Import as ImportTrait;
class EchoareaImport implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
use ImportTrait;
protected const LOGKEY = 'JEI';
private const importkey = 'echoarea';
private string $file;
private Domain $do;
private string $prefix;
private bool $delete_file;
private bool $delete_recs;
/**
* Import Echoarea constructor.
*
* @param string $file
* @param Domain $do
* @param string $prefix
* @param bool $delete_recs
* @param bool $delete_file
*/
public function __construct(string $file,Domain $do,string $prefix,bool $delete_recs=FALSE,bool $delete_file=FALSE)
{
$this->file = $file;
$this->do = $do;
$this->prefix = $prefix ?: '';
$this->delete_file = $delete_file;
$this->delete_recs = $delete_recs;
}
/**
* Execute the job.
*
* @return void
* @throws \Exception
*/
public function handle()
{
$fh = fopen($this->file,'r');
$p = $c = 0;
while (! feof($fh)) {
$line = stream_get_line($fh, 0, "\n");
// Remove any embedded CR and BOM
$line = str_replace("\r",'',$line);
$line = preg_replace('/^\x{feff}/u','',$line);
if (! $line)
continue;
$c++;
if (str_contains($line,' '))
list($area,$description) = preg_split('/[\s|\t]+/',$line,2);
else {
$area = $line;
$description = '[No Description]';
}
$o = Echoarea::whereRaw(sprintf("LOWER(name)='%s'",strtolower($area)))->firstOrNew();
$o->name = strtoupper($area);
$o->description = ($this->prefix.' ' ?: '').ucfirst($description);
$o->active = TRUE;
$o->show = TRUE;
$this->do->echoareas()->save($o);
}
fclose($fh);
if ($this->delete_file and $c)
unlink($file);
Log::info(sprintf('%s:Updated %d records',self::LOGKEY,$p));
}
}