]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/ImportBundle/Command/ImportCommand.php
Update docs about worker
[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')
b1d05721
JB
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')
3fad6c74 20 ->addOption('importer', null, InputArgument::OPTIONAL, 'The importer to use: v1 or v2', '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
NL
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
b1d05721 33 $user = $em->getRepository('WallabagUserBundle:User')->findOneById($input->getArgument('userId'));
8c3c77c1
NL
34
35 if (!is_object($user)) {
b1d05721 36 throw new Exception(sprintf('User with id "%s" not found', $input->getArgument('userId')));
8c3c77c1
NL
37 }
38
b1d05721 39 $wallabag = $this->getContainer()->get('wallabag_import.wallabag_v1.import');
3fad6c74
NL
40
41 if ('v2' === $input->getOption('importer')) {
42 $wallabag = $this->getContainer()->get('wallabag_import.wallabag_v2.import');
43 }
44
235026e2 45 $wallabag->setMarkAsRead($input->getOption('markAsRead'));
3fad6c74 46
b1d05721
JB
47 $res = $wallabag
48 ->setUser($user)
49 ->setFilepath($input->getArgument('filepath'))
50 ->import();
56ea1de9 51
b1d05721
JB
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>');
56ea1de9
NL
56 }
57
56ea1de9 58 $em->clear();
56ea1de9 59
b1d05721 60 $output->writeln('End : '.(new \DateTime())->format('d-m-Y G:i:s').' ---');
56ea1de9
NL
61 }
62}