]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/ImportBundle/Command/ImportCommand.php
Merge pull request #2879 from matteocoder/matteocoder-patch-1
[github/wallabag/wallabag.git] / src / Wallabag / ImportBundle / Command / ImportCommand.php
CommitLineData
56ea1de9
NL
1<?php
2
77a7752a 3namespace Wallabag\ImportBundle\Command;
56ea1de9
NL
4
5use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
8c3c77c1 6use Symfony\Component\Config\Definition\Exception\Exception;
a1bb1b3c 7use Symfony\Component\Console\Input\InputArgument;
56ea1de9
NL
8use Symfony\Component\Console\Input\InputInterface;
9use Symfony\Component\Console\Output\OutputInterface;
56ea1de9
NL
10
11class ImportCommand extends ContainerAwareCommand
12{
13 protected function configure()
14 {
15 $this
3fad6c74 16 ->setName('wallabag:import')
1f66d79e 17 ->setDescription('Import entries from a JSON export')
b1d05721
JB
18 ->addArgument('userId', InputArgument::REQUIRED, 'User ID to populate')
19 ->addArgument('filepath', InputArgument::REQUIRED, 'Path to the JSON file')
9ab024b4 20 ->addOption('importer', null, InputArgument::OPTIONAL, 'The importer to use: v1, v2, instapaper, pinboard, readability, firefox or chrome', 'v1')
235026e2 21 ->addOption('markAsRead', null, InputArgument::OPTIONAL, 'Mark all entries as read', false)
b1d05721 22 ;
56ea1de9
NL
23 }
24
25 protected function execute(InputInterface $input, OutputInterface $output)
26 {
b1d05721 27 $output->writeln('Start : '.(new \DateTime())->format('d-m-Y G:i:s').' ---');
56ea1de9 28
ebf5e508
JB
29 if (!file_exists($input->getArgument('filepath'))) {
30 throw new Exception(sprintf('File "%s" not found', $input->getArgument('filepath')));
31 }
32
56ea1de9
NL
33 $em = $this->getContainer()->get('doctrine')->getManager();
34 // Turning off doctrine default logs queries for saving memory
35 $em->getConnection()->getConfiguration()->setSQLLogger(null);
36
b1d05721 37 $user = $em->getRepository('WallabagUserBundle:User')->findOneById($input->getArgument('userId'));
8c3c77c1
NL
38
39 if (!is_object($user)) {
b1d05721 40 throw new Exception(sprintf('User with id "%s" not found', $input->getArgument('userId')));
8c3c77c1
NL
41 }
42
ae669126
TC
43 switch ($input->getOption('importer')) {
44 case 'v2':
1f66d79e 45 $import = $this->getContainer()->get('wallabag_import.wallabag_v2.import');
ae669126 46 break;
59201088 47 case 'firefox':
1f66d79e 48 $import = $this->getContainer()->get('wallabag_import.firefox.import');
59201088
TC
49 break;
50 case 'chrome':
1f66d79e
JB
51 $import = $this->getContainer()->get('wallabag_import.chrome.import');
52 break;
53 case 'readability':
54 $import = $this->getContainer()->get('wallabag_import.readability.import');
55 break;
56 case 'instapaper':
57 $import = $this->getContainer()->get('wallabag_import.instapaper.import');
ae669126 58 break;
9ab024b4
JB
59 case 'pinboard':
60 $import = $this->getContainer()->get('wallabag_import.pinboard.import');
61 break;
ae669126 62 default:
1f66d79e 63 $import = $this->getContainer()->get('wallabag_import.wallabag_v1.import');
3fad6c74
NL
64 }
65
1f66d79e
JB
66 $import->setMarkAsRead($input->getOption('markAsRead'));
67 $import->setUser($user);
3fad6c74 68
1f66d79e 69 $res = $import
b1d05721
JB
70 ->setFilepath($input->getArgument('filepath'))
71 ->import();
56ea1de9 72
b1d05721 73 if (true === $res) {
1f66d79e 74 $summary = $import->getSummary();
b1d05721
JB
75 $output->writeln('<info>'.$summary['imported'].' imported</info>');
76 $output->writeln('<comment>'.$summary['skipped'].' already saved</comment>');
56ea1de9
NL
77 }
78
56ea1de9 79 $em->clear();
56ea1de9 80
b1d05721 81 $output->writeln('End : '.(new \DateTime())->format('d-m-Y G:i:s').' ---');
56ea1de9
NL
82 }
83}