mirror of
https://github.com/wallabag/wallabag.git
synced 2025-01-22 22:58:08 +00:00
Add more importer to wallabag:import command
All importer available expect Pocket which require an oAuth login.
This commit is contained in:
parent
7816eb622d
commit
1f66d79e6b
1 changed files with 16 additions and 10 deletions
|
@ -14,10 +14,10 @@ class ImportCommand extends ContainerAwareCommand
|
|||
{
|
||||
$this
|
||||
->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('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)
|
||||
;
|
||||
}
|
||||
|
@ -42,29 +42,35 @@ class ImportCommand extends ContainerAwareCommand
|
|||
|
||||
switch ($input->getOption('importer')) {
|
||||
case 'v2':
|
||||
$wallabag = $this->getContainer()->get('wallabag_import.wallabag_v2.import');
|
||||
$import = $this->getContainer()->get('wallabag_import.wallabag_v2.import');
|
||||
break;
|
||||
case 'firefox':
|
||||
$wallabag = $this->getContainer()->get('wallabag_import.firefox.import');
|
||||
$import = $this->getContainer()->get('wallabag_import.firefox.import');
|
||||
break;
|
||||
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;
|
||||
case 'v1':
|
||||
default:
|
||||
$wallabag = $this->getContainer()->get('wallabag_import.wallabag_v1.import');
|
||||
$import = $this->getContainer()->get('wallabag_import.wallabag_v1.import');
|
||||
break;
|
||||
}
|
||||
|
||||
$wallabag->setMarkAsRead($input->getOption('markAsRead'));
|
||||
$wallabag->setUser($user);
|
||||
$import->setMarkAsRead($input->getOption('markAsRead'));
|
||||
$import->setUser($user);
|
||||
|
||||
$res = $wallabag
|
||||
$res = $import
|
||||
->setFilepath($input->getArgument('filepath'))
|
||||
->import();
|
||||
|
||||
if (true === $res) {
|
||||
$summary = $wallabag->getSummary();
|
||||
$summary = $import->getSummary();
|
||||
$output->writeln('<info>'.$summary['imported'].' imported</info>');
|
||||
$output->writeln('<comment>'.$summary['skipped'].' already saved</comment>');
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue