Passed
Push — master ( 0e87cd...c4ac3e )
by Carlos C
12:45 queued 01:03
created

CceCatalogs::import()   A

Complexity

Conditions 5
Paths 3

Size

Total Lines 9
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 6
CRAP Score 5.0729

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 6
c 1
b 0
f 0
dl 0
loc 9
ccs 6
cts 7
cp 0.8571
rs 9.6111
cc 5
nc 3
nop 3
crap 5.0729
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