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

74 lines
2.8 KiB
PHP
Raw Normal View History

<?php
namespace Wallabag\ImportBundle\Command;
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;
use Symfony\Component\Console\Output\OutputInterface;
class ImportCommand extends ContainerAwareCommand
{
protected function configure()
{
$this
2016-04-27 18:30:24 +00:00
->setName('wallabag:import')
2015-12-30 12:26:30 +00:00
->setDescription('Import entries from a JSON export from a wallabag v1 instance')
->addArgument('userId', InputArgument::REQUIRED, 'User ID to populate')
->addArgument('filepath', InputArgument::REQUIRED, 'Path to the JSON file')
->addOption('importer', null, InputArgument::OPTIONAL, 'The importer to use: wallabag v1, v2 or browser', 'v1')
2016-04-28 11:41:36 +00:00
->addOption('markAsRead', null, InputArgument::OPTIONAL, 'Mark all entries as read', false)
2015-12-30 12:26:30 +00:00
;
}
protected function execute(InputInterface $input, OutputInterface $output)
{
2015-12-30 12:26:30 +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')));
}
$em = $this->getContainer()->get('doctrine')->getManager();
// Turning off doctrine default logs queries for saving memory
$em->getConnection()->getConfiguration()->setSQLLogger(null);
2015-12-30 12:26:30 +00:00
$user = $em->getRepository('WallabagUserBundle:User')->findOneById($input->getArgument('userId'));
if (!is_object($user)) {
2015-12-30 12:26:30 +00:00
throw new Exception(sprintf('User with id "%s" not found', $input->getArgument('userId')));
}
switch ($input->getOption('importer')) {
case 'v2':
$wallabag = $this->getContainer()->get('wallabag_import.wallabag_v2.import');
break;
case 'browser':
$wallabag = $this->getContainer()->get('wallabag_import.browser.import');
break;
2016-09-02 11:53:45 +00:00
case 'v1':
default:
$wallabag = $this->getContainer()->get('wallabag_import.wallabag_v1.import');
break;
2016-04-27 18:30:24 +00:00
}
2016-04-28 11:41:36 +00:00
$wallabag->setMarkAsRead($input->getOption('markAsRead'));
2016-09-11 19:40:08 +00:00
$wallabag->setUser($user);
2016-04-27 18:30:24 +00:00
2015-12-30 12:26:30 +00:00
$res = $wallabag
->setFilepath($input->getArgument('filepath'))
->import();
2015-12-30 12:26:30 +00:00
if (true === $res) {
$summary = $wallabag->getSummary();
$output->writeln('<info>'.$summary['imported'].' imported</info>');
$output->writeln('<comment>'.$summary['skipped'].' already saved</comment>');
}
$em->clear();
2015-12-30 12:26:30 +00:00
$output->writeln('End : '.(new \DateTime())->format('d-m-Y G:i:s').' ---');
}
}