From: Thomas Citharel Date: Sun, 22 Jan 2017 11:51:14 +0000 (+0100) Subject: add cli export X-Git-Tag: 2.2.0~3^2~4^2~2 X-Git-Url: https://git.immae.eu/?p=github%2Fwallabag%2Fwallabag.git;a=commitdiff_plain;h=8303b037fb4e64b542f6f755828b999fdf6eebb0 add cli export Signed-off-by: Thomas Citharel --- diff --git a/src/Wallabag/CoreBundle/Command/ExportCommand.php b/src/Wallabag/CoreBundle/Command/ExportCommand.php new file mode 100644 index 00000000..9c3c3fef --- /dev/null +++ b/src/Wallabag/CoreBundle/Command/ExportCommand.php @@ -0,0 +1,82 @@ +setName('wallabag:export') + ->setDescription('Export all entries for an user') + ->setHelp('This command helps you to export all entries for an user') + ->addArgument( + 'username', + InputArgument::REQUIRED, + 'User from which to export entries' + ) + ->addArgument( + 'filename', + InputArgument::OPTIONAL, + 'Path of the exported file' + ) + ; + } + + protected function execute(InputInterface $input, OutputInterface $output) + { + try { + $user = $this->getUser($input->getArgument('username')); + } catch (NoResultException $e) { + $output->writeln(sprintf('User "%s" not found.', $input->getArgument('username'))); + return 1; + } + $entries = $this->getDoctrine() + ->getRepository('WallabagCoreBundle:Entry') + ->getBuilderForAllByUser($user->getId()) + ->getQuery() + ->getResult(); + + $output->write(sprintf('Exporting %d entrie(s) for user « %s »... ', count($entries), $user->getUserName())); + + $filePath = $input->getArgument('filename'); + if (!$filePath) { + $filePath = $this->getContainer()->getParameter('kernel.root_dir') . '/../' . sprintf('%s-export', $user->getUsername()); + } + try { + $data = $this->getContainer()->get('wallabag_core.helper.entries_export') + ->setEntries($entries) + ->updateTitle('All') + ->exportJsonData(); + file_put_contents($filePath, $data); + } catch (\InvalidArgumentException $e) { + $output->writeln(sprintf('Error: "%s"', $e->getMessage())); + } + + $output->writeln('Done.'); + } + + /** + * Fetches a user from its username. + * + * @param string $username + * + * @return \Wallabag\UserBundle\Entity\User + */ + private function getUser($username) + { + return $this->getDoctrine()->getRepository('WallabagUserBundle:User')->findOneByUserName($username); + } + + private function getDoctrine() + { + return $this->getContainer()->get('doctrine'); + } +} diff --git a/src/Wallabag/CoreBundle/Helper/EntriesExport.php b/src/Wallabag/CoreBundle/Helper/EntriesExport.php index 4bf292a4..93c01fcb 100644 --- a/src/Wallabag/CoreBundle/Helper/EntriesExport.php +++ b/src/Wallabag/CoreBundle/Helper/EntriesExport.php @@ -89,6 +89,11 @@ class EntriesExport throw new \InvalidArgumentException(sprintf('The format "%s" is not yet supported.', $format)); } + public function exportJsonData() + { + return $this->prepareSerializingContent('json'); + } + /** * Use PHPePub to dump a .epub file. * diff --git a/tests/Wallabag/CoreBundle/Command/ExportCommandTest.php b/tests/Wallabag/CoreBundle/Command/ExportCommandTest.php new file mode 100644 index 00000000..41491838 --- /dev/null +++ b/tests/Wallabag/CoreBundle/Command/ExportCommandTest.php @@ -0,0 +1,60 @@ +getClient()->getKernel()); + $application->add(new ExportCommand()); + + $command = $application->find('wallabag:export'); + + $tester = new CommandTester($command); + $tester->execute([ + 'command' => $command->getName(), + ]); + } + + public function testExportCommandWithBadUsername() + { + $application = new Application($this->getClient()->getKernel()); + $application->add(new ExportCommand()); + + $command = $application->find('wallabag:export'); + + $tester = new CommandTester($command); + $tester->execute([ + 'command' => $command->getName(), + 'username' => 'unknown', + ]); + + $this->assertContains('User "unknown" not found', $tester->getDisplay()); + } + + public function testExportCommand() + { + $application = new Application($this->getClient()->getKernel()); + $application->add(new ExportCommand()); + + $command = $application->find('wallabag:export'); + + $tester = new CommandTester($command); + $tester->execute([ + 'command' => $command->getName(), + 'username' => 'admin', + ]); + + $this->assertContains('Exporting 6 entrie(s) for user « admin »... Done', $tester->getDisplay()); + } +}