Add more importer to wallabag:import command

All importer available expect Pocket which require an oAuth login.
This commit is contained in:
Jeremy Benoist 2016-11-02 07:10:57 +01:00
parent 7816eb622d
commit 1f66d79e6b
No known key found for this signature in database
GPG Key ID: BCA73962457ACC3C

View File

@ -14,10 +14,10 @@ class ImportCommand extends ContainerAwareCommand
{ {
$this $this
->setName('wallabag:import') ->setName('wallabag:import')
->setDescription('Import entries from a JSON export from a wallabag v1 instance') ->setDescription('Import entries from a JSON export')
->addArgument('userId', InputArgument::REQUIRED, 'User ID to populate') ->addArgument('userId', InputArgument::REQUIRED, 'User ID to populate')
->addArgument('filepath', InputArgument::REQUIRED, 'Path to the JSON file') ->addArgument('filepath', InputArgument::REQUIRED, 'Path to the JSON file')
->addOption('importer', null, InputArgument::OPTIONAL, 'The importer to use: wallabag v1, v2, firefox or chrome', 'v1') ->addOption('importer', null, InputArgument::OPTIONAL, 'The importer to use: v1, v2, instapaper, readability, firefox or chrome', 'v1')
->addOption('markAsRead', null, InputArgument::OPTIONAL, 'Mark all entries as read', false) ->addOption('markAsRead', null, InputArgument::OPTIONAL, 'Mark all entries as read', false)
; ;
} }
@ -42,29 +42,35 @@ class ImportCommand extends ContainerAwareCommand
switch ($input->getOption('importer')) { switch ($input->getOption('importer')) {
case 'v2': case 'v2':
$wallabag = $this->getContainer()->get('wallabag_import.wallabag_v2.import'); $import = $this->getContainer()->get('wallabag_import.wallabag_v2.import');
break; break;
case 'firefox': case 'firefox':
$wallabag = $this->getContainer()->get('wallabag_import.firefox.import'); $import = $this->getContainer()->get('wallabag_import.firefox.import');
break; break;
case 'chrome': case 'chrome':
$wallabag = $this->getContainer()->get('wallabag_import.chrome.import'); $import = $this->getContainer()->get('wallabag_import.chrome.import');
break;
case 'readability':
$import = $this->getContainer()->get('wallabag_import.readability.import');
break;
case 'instapaper':
$import = $this->getContainer()->get('wallabag_import.instapaper.import');
break; break;
case 'v1': case 'v1':
default: default:
$wallabag = $this->getContainer()->get('wallabag_import.wallabag_v1.import'); $import = $this->getContainer()->get('wallabag_import.wallabag_v1.import');
break; break;
} }
$wallabag->setMarkAsRead($input->getOption('markAsRead')); $import->setMarkAsRead($input->getOption('markAsRead'));
$wallabag->setUser($user); $import->setUser($user);
$res = $wallabag $res = $import
->setFilepath($input->getArgument('filepath')) ->setFilepath($input->getArgument('filepath'))
->import(); ->import();
if (true === $res) { if (true === $res) {
$summary = $wallabag->getSummary(); $summary = $import->getSummary();
$output->writeln('<info>'.$summary['imported'].' imported</info>'); $output->writeln('<info>'.$summary['imported'].' imported</info>');
$output->writeln('<comment>'.$summary['skipped'].' already saved</comment>'); $output->writeln('<comment>'.$summary['skipped'].' already saved</comment>');
} }