wallabag/src/Wallabag/ImportBundle/Command/ImportCommand.php

119 lines
5 KiB
PHP
Raw Normal View History

<?php
namespace Wallabag\ImportBundle\Command;
2022-08-28 00:01:46 +00:00
use Doctrine\Persistence\ManagerRegistry;
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
use Symfony\Component\Config\Definition\Exception\Exception;
2015-09-30 12:22:38 +00:00
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
2017-07-01 07:52:38 +00:00
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
2022-08-28 00:01:46 +00:00
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken;
use Wallabag\ImportBundle\Import\ChromeImport;
use Wallabag\ImportBundle\Import\DeliciousImport;
use Wallabag\ImportBundle\Import\FirefoxImport;
use Wallabag\ImportBundle\Import\InstapaperImport;
use Wallabag\ImportBundle\Import\PinboardImport;
use Wallabag\ImportBundle\Import\ReadabilityImport;
use Wallabag\ImportBundle\Import\WallabagV1Import;
use Wallabag\ImportBundle\Import\WallabagV2Import;
2022-08-25 19:37:10 +00:00
use Wallabag\UserBundle\Entity\User;
class ImportCommand extends ContainerAwareCommand
{
protected function configure()
{
$this
2016-04-27 18:30:24 +00:00
->setName('wallabag:import')
->setDescription('Import entries from a JSON export')
->addArgument('username', InputArgument::REQUIRED, 'User to populate')
2015-12-30 12:26:30 +00:00
->addArgument('filepath', InputArgument::REQUIRED, 'Path to the JSON file')
->addOption('importer', null, InputOption::VALUE_OPTIONAL, 'The importer to use: v1, v2, instapaper, pinboard, delicious, readability, firefox or chrome', 'v1')
2017-06-01 13:44:36 +00:00
->addOption('markAsRead', null, InputOption::VALUE_OPTIONAL, 'Mark all entries as read', false)
->addOption('useUserId', null, InputOption::VALUE_NONE, 'Use user id instead of username to find account')
->addOption('disableContentUpdate', null, InputOption::VALUE_NONE, 'Disable fetching updated content from URL')
2015-12-30 12:26:30 +00:00
;
}
protected function execute(InputInterface $input, OutputInterface $output)
{
2017-07-01 07:52:38 +00:00
$output->writeln('Start : ' . (new \DateTime())->format('d-m-Y G:i:s') . ' ---');
2016-09-11 19:40:08 +00:00
if (!file_exists($input->getArgument('filepath'))) {
throw new Exception(sprintf('File "%s" not found', $input->getArgument('filepath')));
}
2022-08-28 00:01:46 +00:00
$em = $this->getContainer()->get(ManagerRegistry::class)->getManager();
// Turning off doctrine default logs queries for saving memory
$em->getConnection()->getConfiguration()->setSQLLogger(null);
if ($input->getOption('useUserId')) {
2022-08-25 19:37:10 +00:00
$entityUser = $em->getRepository(User::class)->findOneById($input->getArgument('username'));
} else {
2022-08-25 19:37:10 +00:00
$entityUser = $em->getRepository(User::class)->findOneByUsername($input->getArgument('username'));
}
if (!\is_object($entityUser)) {
throw new Exception(sprintf('User "%s" not found', $input->getArgument('username')));
}
// Authenticate user for paywalled websites
$token = new UsernamePasswordToken(
$entityUser,
null,
'main',
$entityUser->getRoles());
2022-08-28 00:01:46 +00:00
$this->getContainer()->get(TokenStorageInterface::class)->setToken($token);
$user = $this->getContainer()->get(TokenStorageInterface::class)->getToken()->getUser();
switch ($input->getOption('importer')) {
case 'v2':
$import = $this->getContainer()->get(WallabagV2Import::class);
break;
case 'firefox':
$import = $this->getContainer()->get(FirefoxImport::class);
break;
case 'chrome':
$import = $this->getContainer()->get(ChromeImport::class);
break;
case 'readability':
$import = $this->getContainer()->get(ReadabilityImport::class);
break;
case 'instapaper':
$import = $this->getContainer()->get(InstapaperImport::class);
break;
2016-11-04 21:44:31 +00:00
case 'pinboard':
$import = $this->getContainer()->get(PinboardImport::class);
2016-11-04 21:44:31 +00:00
break;
case 'delicious':
$import = $this->getContainer()->get(DeliciousImport::class);
break;
default:
$import = $this->getContainer()->get(WallabagV1Import::class);
2016-04-27 18:30:24 +00:00
}
$import->setMarkAsRead($input->getOption('markAsRead'));
$import->setDisableContentUpdate($input->getOption('disableContentUpdate'));
$import->setUser($user);
2016-04-27 18:30:24 +00:00
$res = $import
2015-12-30 12:26:30 +00:00
->setFilepath($input->getArgument('filepath'))
->import();
2015-12-30 12:26:30 +00:00
if (true === $res) {
$summary = $import->getSummary();
2017-07-01 07:52:38 +00:00
$output->writeln('<info>' . $summary['imported'] . ' imported</info>');
$output->writeln('<comment>' . $summary['skipped'] . ' already saved</comment>');
}
$em->clear();
2017-07-01 07:52:38 +00:00
$output->writeln('End : ' . (new \DateTime())->format('d-m-Y G:i:s') . ' ---');
2022-11-23 14:51:33 +00:00
return 0;
}
}