1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
declare(strict_types=1); |
4
|
|
|
|
5
|
|
|
namespace PhpCfdi\SatCatalogosPopulate\Importers; |
6
|
|
|
|
7
|
|
|
use PhpCfdi\SatCatalogosPopulate\Database\Repository; |
8
|
|
|
use PhpCfdi\SatCatalogosPopulate\ImporterInterface; |
9
|
|
|
use Psr\Log\LoggerInterface; |
10
|
|
|
use RuntimeException; |
11
|
|
|
|
12
|
|
|
class CceCatalogs implements ImporterInterface |
13
|
|
|
{ |
14
|
|
|
/** |
15
|
|
|
* @param string $source Folder where all files exist |
16
|
|
|
*/ |
17
|
1 |
|
public function import(string $source, Repository $repository, LoggerInterface $logger): void |
18
|
|
|
{ |
19
|
1 |
|
$importers = $this->createImporters(); |
20
|
1 |
|
foreach ($importers as $file => $importer) { |
21
|
1 |
|
$sourceFile = $source . '/' . $file; |
22
|
1 |
|
if (! file_exists($sourceFile) || is_dir($sourceFile) || ! is_readable($sourceFile)) { |
23
|
|
|
throw new RuntimeException("No se encontró el archivo $sourceFile"); |
24
|
|
|
} |
25
|
1 |
|
$importer->import($sourceFile, $repository, $logger); |
26
|
|
|
} |
27
|
|
|
} |
28
|
|
|
|
29
|
|
|
/** @return array<string, ImporterInterface> */ |
30
|
2 |
|
public function createImporters(): array |
31
|
|
|
{ |
32
|
|
|
return [ |
33
|
2 |
|
'c_ClavePedimento.xls' => new Cce\CceClavePedimento(), |
34
|
2 |
|
'c_Colonia.xls' => new Cce\CceColonia(), |
35
|
2 |
|
'C_Estado.xls' => new Cce\CceEstado(), |
36
|
2 |
|
'c_FraccionArancelaria_20170101.xls' => new Cce\CceFraccionArancelaria(true), |
37
|
2 |
|
'c_FraccionArancelaria_20201228.xls' => new Cce\CceFraccionArancelaria(false), |
38
|
2 |
|
'c_FraccionArancelaria_20221212.xls' => new Cce\CceFraccionArancelaria(false), |
39
|
2 |
|
'c_INCOTERM.xls' => new Cce\CceIncoterm(), |
40
|
2 |
|
'c_Localidad.xls' => new Cce\CceLocalidad(), |
41
|
2 |
|
'c_MotivoTraslado.xls' => new Cce\CceMotivoTraslado(), |
42
|
2 |
|
'c_Municipio.xls' => new Cce\CceMunicipio(), |
43
|
2 |
|
'c_TipoOperacion.xls' => new Cce\CceTipoOperacion(), |
44
|
2 |
|
'c_UnidadAduana.xls' => new Cce\CceUnidadAduana(), |
45
|
|
|
]; |
46
|
|
|
} |
47
|
|
|
} |
48
|
|
|
|