]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/ImportBundle/Command/ImportCommand.php
Merge branch 'master' into 2.1
[github/wallabag/wallabag.git] / src / Wallabag / ImportBundle / Command / ImportCommand.php
1 <?php
2
3 namespace Wallabag\ImportBundle\Command;
4
5 use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
6 use Symfony\Component\Config\Definition\Exception\Exception;
7 use Symfony\Component\Console\Input\InputArgument;
8 use Symfony\Component\Console\Input\InputInterface;
9 use Symfony\Component\Console\Output\OutputInterface;
10
11 class ImportCommand extends ContainerAwareCommand
12 {
13 protected function configure()
14 {
15 $this
16 ->setName('wallabag:import')
17 ->setDescription('Import entries from a JSON export from a wallabag v1 instance')
18 ->addArgument('userId', InputArgument::REQUIRED, 'User ID to populate')
19 ->addArgument('filepath', InputArgument::REQUIRED, 'Path to the JSON file')
20 ->addOption('importer', null, InputArgument::OPTIONAL, 'The importer to use: v1 or v2', 'v1')
21 ->addOption('markAsRead', null, InputArgument::OPTIONAL, 'Mark all entries as read', false)
22 ;
23 }
24
25 protected function execute(InputInterface $input, OutputInterface $output)
26 {
27 $output->writeln('Start : '.(new \DateTime())->format('d-m-Y G:i:s').' ---');
28
29 $em = $this->getContainer()->get('doctrine')->getManager();
30 // Turning off doctrine default logs queries for saving memory
31 $em->getConnection()->getConfiguration()->setSQLLogger(null);
32
33 $user = $em->getRepository('WallabagUserBundle:User')->findOneById($input->getArgument('userId'));
34
35 if (!is_object($user)) {
36 throw new Exception(sprintf('User with id "%s" not found', $input->getArgument('userId')));
37 }
38
39 $wallabag = $this->getContainer()->get('wallabag_import.wallabag_v1.import');
40
41 if ('v2' === $input->getOption('importer')) {
42 $wallabag = $this->getContainer()->get('wallabag_import.wallabag_v2.import');
43 }
44
45 $wallabag->setMarkAsRead($input->getOption('markAsRead'));
46
47 $res = $wallabag
48 ->setUser($user)
49 ->setFilepath($input->getArgument('filepath'))
50 ->import();
51
52 if (true === $res) {
53 $summary = $wallabag->getSummary();
54 $output->writeln('<info>'.$summary['imported'].' imported</info>');
55 $output->writeln('<comment>'.$summary['skipped'].' already saved</comment>');
56 }
57
58 $em->clear();
59
60 $output->writeln('End : '.(new \DateTime())->format('d-m-Y G:i:s').' ---');
61 }
62 }