modifs.mineures sans commentaires

This commit is contained in:
Jephté Clain 2024-06-12 20:22:23 +04:00
parent ab89d08933
commit 4285804be4
4 changed files with 38 additions and 8 deletions

View File

@ -4,6 +4,8 @@ namespace nur\sery\file\csv;
use nur\sery\file\FileReader; use nur\sery\file\FileReader;
class CsvReader extends AbstractReader { class CsvReader extends AbstractReader {
use TAbstractReader;
function getIterator() { function getIterator() {
$reader = new FileReader($this->input); $reader = new FileReader($this->input);
while (($row = $reader->fgetcsv()) !== null) { while (($row = $reader->fgetcsv()) !== null) {

View File

@ -11,13 +11,7 @@ use PhpOffice\PhpSpreadsheet\IOFactory;
use PhpOffice\PhpSpreadsheet\RichText\RichText; use PhpOffice\PhpSpreadsheet\RichText\RichText;
class SsReader extends AbstractReader { class SsReader extends AbstractReader {
static function with(Upload $upload): IReader { use TAbstractReader;
if ($upload->isExt(".csv")) {
return new CsvReader($upload->tmpName);
} else {
return new static($upload->tmpName);
}
}
const DATETIME_FORMAT = 'dd/mm/yyyy hh:mm:ss'; const DATETIME_FORMAT = 'dd/mm/yyyy hh:mm:ss';
const DATE_FORMAT = 'dd/mm/yyyy'; const DATE_FORMAT = 'dd/mm/yyyy';
@ -66,6 +60,11 @@ class SsReader extends AbstractReader {
protected ?string $wsname; protected ?string $wsname;
function setWsname(?string $wsname): self {
$this->wsname = $wsname;
return $this;
}
function getIterator() { function getIterator() {
$ss = IOFactory::load($this->input); $ss = IOFactory::load($this->input);
$ws = wsutils::get_ws($this->wsname, $ss); $ws = wsutils::get_ws($this->wsname, $ss);

View File

@ -0,0 +1,29 @@
<?php
namespace nur\sery\file\csv;
use nur\sery\file\web\Upload;
use nur\sery\os\path;
use nur\sery\ValueException;
trait TAbstractReader {
/** @param Upload|string|array */
static function with($reader): self {
if ($reader instanceof self) return $reader;
$class = null;
if ($reader instanceof Upload) {
if ($reader->isExt(".csv")) $class = CsvReader::class;
else $class = static::class;
return $class($reader->tmpName);
}
if (is_string($reader)) $reader = ["input" => $reader];
if (!is_array($reader)) {
throw ValueException::invalid_type($reader, self::class);
}
$input = $reader["input"] ?? null;
if (is_string($input) && path::ext($input) === ".csv") {
$class = CsvReader::class;
}
if ($class === null) $class = static::class;
return $class($reader);
}
}