2
0
mirror of https://github.com/opencultureconsulting/oai-pmh2.git synced 2025-03-30 00:00:30 +01:00
oai-pmh2/src/Console/CsvImportCommand.php

240 lines
7.8 KiB
PHP
Raw Normal View History

2024-01-04 14:07:00 +01:00
<?php
/**
* OAI-PMH 2.0 Data Provider
2024-01-22 15:06:07 +01:00
* Copyright (C) 2024 Sebastian Meyer <sebastian.meyer@opencultureconsulting.com>
2024-01-04 14:07:00 +01:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2024-01-22 15:06:07 +01:00
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2024-01-04 14:07:00 +01:00
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2024-01-22 15:06:07 +01:00
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2024-01-04 14:07:00 +01:00
*/
declare(strict_types=1);
namespace OCC\OaiPmh2\Console;
use DateTime;
2024-02-01 14:18:04 +01:00
use OCC\OaiPmh2\Configuration;
2024-01-08 22:37:09 +01:00
use OCC\OaiPmh2\Console;
2024-01-04 14:07:00 +01:00
use OCC\OaiPmh2\Database;
2024-01-08 22:37:09 +01:00
use OCC\OaiPmh2\Entity\Format;
use OCC\OaiPmh2\Entity\Record;
use OCC\OaiPmh2\Entity\Set;
2024-01-04 14:07:00 +01:00
use Symfony\Component\Console\Attribute\AsCommand;
use Symfony\Component\Console\Command\Command;
2024-01-06 12:53:20 +01:00
use Symfony\Component\Console\Helper\ProgressIndicator;
2024-01-04 14:07:00 +01:00
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
/**
* Import records into database from a CSV file.
*
* @author Sebastian Meyer <sebastian.meyer@opencultureconsulting.com>
* @package opencultureconsulting/oai-pmh2
*/
#[AsCommand(
name: 'oai:records:import:csv',
description: 'Import records from a CSV file'
)]
2024-01-08 22:37:09 +01:00
class CsvImportCommand extends Console
2024-01-04 14:07:00 +01:00
{
2024-01-06 12:53:20 +01:00
/**
* Configures the current command.
*
* @return void
*/
2024-01-04 14:07:00 +01:00
protected function configure(): void
{
$this->addArgument(
'format',
InputArgument::REQUIRED,
'The format (metadata prefix) of the records.',
null,
function (): array {
return array_keys(Database::getInstance()->getMetadataFormats()->getQueryResult());
}
);
$this->addArgument(
'file',
InputArgument::REQUIRED,
'The CSV file containing the records.'
);
$this->addOption(
'idColumn',
2024-01-06 12:53:20 +01:00
'i',
2024-01-04 14:07:00 +01:00
InputOption::VALUE_OPTIONAL,
'Name of the CSV column which holds the records\' identifier.',
'identifier'
);
$this->addOption(
'contentColumn',
2024-01-06 12:53:20 +01:00
'c',
2024-01-04 14:07:00 +01:00
InputOption::VALUE_OPTIONAL,
'Name of the CSV column which holds the records\' content.',
'content'
);
$this->addOption(
'dateColumn',
2024-01-06 12:53:20 +01:00
'd',
2024-01-04 14:07:00 +01:00
InputOption::VALUE_OPTIONAL,
'Name of the CSV column which holds the records\' datetime of last change.',
'lastChanged'
);
$this->addOption(
'setColumn',
2024-01-06 12:53:20 +01:00
's',
2024-01-04 14:07:00 +01:00
InputOption::VALUE_OPTIONAL,
2024-01-08 22:37:09 +01:00
'Name of the CSV column which holds the comma-separated list of the records\' sets.',
2024-01-04 14:07:00 +01:00
'sets'
);
2024-01-06 17:12:01 +01:00
$this->addOption(
'noValidation',
null,
InputOption::VALUE_NONE,
2024-01-10 11:45:10 +01:00
'Skip content validation (improves performance for large record sets).'
2024-01-06 17:12:01 +01:00
);
2024-01-04 14:07:00 +01:00
parent::configure();
}
2024-01-06 12:53:20 +01:00
/**
* Executes the current command.
*
* @param InputInterface $input The input
* @param OutputInterface $output The output
*
* @return int 0 if everything went fine, or an error code
*/
2024-01-04 14:07:00 +01:00
protected function execute(InputInterface $input, OutputInterface $output): int
{
2024-01-06 12:53:20 +01:00
if (!$this->validateInput($input, $output)) {
2024-01-04 14:07:00 +01:00
return Command::INVALID;
}
2024-02-01 14:18:04 +01:00
$phpMemoryLimit = $this->getPhpMemoryLimit();
$memoryLimit = Configuration::getInstance()->memoryLimit;
2024-01-04 14:07:00 +01:00
2024-01-06 12:53:20 +01:00
/** @var array<string, string> */
$arguments = $input->getArguments();
/** @var Format */
$format = Database::getInstance()->getEntityManager()->getReference(Format::class, $arguments['format']);
2024-01-06 17:12:01 +01:00
/** @var bool */
$noValidation = $input->getOption('noValidation');
2024-01-06 12:53:20 +01:00
/** @var resource */
2024-01-04 14:07:00 +01:00
$file = fopen($arguments['file'], 'r');
2024-01-06 12:53:20 +01:00
$columns = $this->getColumnNames($input, $output, $file);
if (count($columns) === 0) {
2024-01-04 14:07:00 +01:00
return Command::INVALID;
}
$count = 0;
2024-01-07 21:36:37 +01:00
$progressIndicator = new ProgressIndicator($output, null, 100, ['⠏', '⠛', '⠹', '⢸', '⣰', '⣤', '⣆', '⡇']);
2024-01-06 12:53:20 +01:00
$progressIndicator->start('Importing...');
2024-01-06 17:12:01 +01:00
while ($row = fgetcsv($file)) {
2024-01-10 11:45:10 +01:00
$record = new Record($row[$columns['idColumn']], $format);
2024-01-06 17:12:01 +01:00
if (strlen(trim($row[$columns['contentColumn']])) > 0) {
$record->setContent($row[$columns['contentColumn']], !$noValidation);
}
2024-01-10 11:45:10 +01:00
if (isset($columns['dateColumn'])) {
$record->setLastChanged(new DateTime($row[$columns['dateColumn']]));
}
if (isset($columns['setColumn'])) {
$sets = $row[$columns['setColumn']];
2024-01-11 14:49:43 +01:00
foreach (explode(',', $sets) as $set) {
2024-01-10 11:45:10 +01:00
/** @var Set */
2024-01-11 14:49:43 +01:00
$setSpec = Database::getInstance()->getEntityManager()->getReference(Set::class, trim($set));
2024-01-10 11:45:10 +01:00
$record->addSet($setSpec);
}
2024-01-08 22:37:09 +01:00
}
2024-01-06 17:12:01 +01:00
Database::getInstance()->addOrUpdateRecord($record, true);
2024-01-06 12:53:20 +01:00
2024-01-04 14:07:00 +01:00
++$count;
2024-01-06 12:53:20 +01:00
$progressIndicator->advance();
2024-01-07 21:36:37 +01:00
$progressIndicator->setMessage('Importing... ' . (string) $count . ' records done.');
2024-01-06 12:53:20 +01:00
2024-02-01 14:18:04 +01:00
// Flush to database if memory usage reaches limit.
if ((memory_get_usage() / $phpMemoryLimit) > $memoryLimit) {
2024-01-06 14:59:54 +01:00
Database::getInstance()->flush([Record::class]);
2024-01-04 14:07:00 +01:00
}
}
2024-01-06 14:59:54 +01:00
Database::getInstance()->flush();
2024-01-04 15:33:28 +01:00
Database::getInstance()->pruneOrphanSets();
2024-01-04 14:07:00 +01:00
2024-01-06 12:53:20 +01:00
$progressIndicator->finish('All done!');
fclose($file);
2024-01-07 21:36:37 +01:00
$this->clearResultCache();
2024-01-04 14:07:00 +01:00
$output->writeln([
'',
sprintf(
' [OK] %d records with metadata prefix "%s" were imported successfully! ',
$count,
$arguments['format']
),
''
]);
return Command::SUCCESS;
}
2024-01-06 12:53:20 +01:00
/**
* Get the column names of CSV.
*
* @param InputInterface $input The inputs
* @param OutputInterface $output The output interface
* @param resource $file The handle for the CSV file
*
2024-01-10 11:45:10 +01:00
* @return array<string, int|string|null> The mapped column names
2024-01-06 12:53:20 +01:00
*/
protected function getColumnNames(InputInterface $input, OutputInterface $output, $file): array
{
/** @var array<string, string> */
$options = $input->getOptions();
$columns = [];
$headers = fgetcsv($file);
if (!is_array($headers)) {
$output->writeln([
'',
sprintf(
' [ERROR] File "%s" does not contain valid CSV. ',
stream_get_meta_data($file)['uri']
),
''
]);
return [];
} else {
$headers = array_flip($headers);
}
foreach ($options as $option => $value) {
2024-01-10 11:45:10 +01:00
$columns[$option] = $headers[$value] ?? null;
2024-01-06 12:53:20 +01:00
}
if (!isset($columns['idColumn']) || !isset($columns['contentColumn'])) {
$output->writeln([
'',
sprintf(
' [ERROR] File "%s" does not contain valid CSV. ',
stream_get_meta_data($file)['uri']
),
''
]);
return [];
}
return $columns;
}
2024-01-04 14:07:00 +01:00
}