aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNicolas Lœuillet <nicolas@loeuillet.org>2016-04-28 13:41:36 +0200
committerNicolas Lœuillet <nicolas@loeuillet.org>2016-05-27 09:43:49 +0200
commit235026e2c708eea306a12f1cc1de3da38593db37 (patch)
tree99863eb1f5c21af87c73df6c642a2d28f698c432
parent3fad6c74fe72b50bceb5f1c67c3f81370660634e (diff)
downloadwallabag-235026e2c708eea306a12f1cc1de3da38593db37.tar.gz
wallabag-235026e2c708eea306a12f1cc1de3da38593db37.tar.zst
wallabag-235026e2c708eea306a12f1cc1de3da38593db37.zip
Enhance option in command
-rw-r--r--docs/en/user/migration.rst2
-rw-r--r--docs/fr/user/migration.rst6
-rw-r--r--src/Wallabag/ImportBundle/Command/ImportCommand.php6
3 files changed, 6 insertions, 8 deletions
diff --git a/docs/en/user/migration.rst b/docs/en/user/migration.rst
index cfbca922..42062796 100644
--- a/docs/en/user/migration.rst
+++ b/docs/en/user/migration.rst
@@ -52,7 +52,7 @@ Please replace values:
52* ``1`` is the user identifier in database (The ID of the first user created on wallabag is 1) 52* ``1`` is the user identifier in database (The ID of the first user created on wallabag is 1)
53* ``~/Downloads/wallabag-export-1-2016-04-05.json`` is the path of your wallabag v1 export 53* ``~/Downloads/wallabag-export-1-2016-04-05.json`` is the path of your wallabag v1 export
54 54
55If you want to mark all these entries as read, you can add the ``--markAsRead=yes`` option. 55If you want to mark all these entries as read, you can add the ``--markAsRead`` option.
56 56
57To import a wallabag v2 file, you need to add the option ``--importer=v2``. 57To import a wallabag v2 file, you need to add the option ``--importer=v2``.
58 58
diff --git a/docs/fr/user/migration.rst b/docs/fr/user/migration.rst
index a69df295..91f8bab2 100644
--- a/docs/fr/user/migration.rst
+++ b/docs/fr/user/migration.rst
@@ -38,8 +38,8 @@ Depuis votre nouvelle instance de wallabag, créez votre compte utilisateur puis
38.. note:: 38.. note::
39 S'il vous arrive des problèmes durant l'export ou l'import, n'hésitez pas à `demander de l'aide <https://www.wallabag.org/pages/support.html>`__. 39 S'il vous arrive des problèmes durant l'export ou l'import, n'hésitez pas à `demander de l'aide <https://www.wallabag.org/pages/support.html>`__.
40 40
41Import via via la ligne de commande (CLI) 41Import via la ligne de commande (CLI)
42----------------------------------------- 42-------------------------------------
43 43
44Si vous avez accès à la ligne de commandes de votre serveur web, vous pouvez exécuter cette commande pour import votre fichier wallabag v1 : 44Si vous avez accès à la ligne de commandes de votre serveur web, vous pouvez exécuter cette commande pour import votre fichier wallabag v1 :
45 45
@@ -52,7 +52,7 @@ Remplacez les valeurs :
52* ``1`` est l'identifiant de votre utilisateur en base (l'ID de votre premier utilisateur créé sur wallabag est 1) 52* ``1`` est l'identifiant de votre utilisateur en base (l'ID de votre premier utilisateur créé sur wallabag est 1)
53* ``~/Downloads/wallabag-export-1-2016-04-05.json`` est le chemin de votre export wallabag v1 53* ``~/Downloads/wallabag-export-1-2016-04-05.json`` est le chemin de votre export wallabag v1
54 54
55Si vous voulez marquer tous ces articles comme lus, vous pouvez ajouter l'option ``--markAsRead=yes``. 55Si vous voulez marquer tous ces articles comme lus, vous pouvez ajouter l'option ``--markAsRead``.
56 56
57Pour importer un fichier wallabag v2, vous devez ajouter l'option ``--importer=v2``. 57Pour importer un fichier wallabag v2, vous devez ajouter l'option ``--importer=v2``.
58 58
diff --git a/src/Wallabag/ImportBundle/Command/ImportCommand.php b/src/Wallabag/ImportBundle/Command/ImportCommand.php
index f62176fc..a4aa8531 100644
--- a/src/Wallabag/ImportBundle/Command/ImportCommand.php
+++ b/src/Wallabag/ImportBundle/Command/ImportCommand.php
@@ -18,7 +18,7 @@ class ImportCommand extends ContainerAwareCommand
18 ->addArgument('userId', InputArgument::REQUIRED, 'User ID to populate') 18 ->addArgument('userId', InputArgument::REQUIRED, 'User ID to populate')
19 ->addArgument('filepath', InputArgument::REQUIRED, 'Path to the JSON file') 19 ->addArgument('filepath', InputArgument::REQUIRED, 'Path to the JSON file')
20 ->addOption('importer', null, InputArgument::OPTIONAL, 'The importer to use: v1 or v2', 'v1') 20 ->addOption('importer', null, InputArgument::OPTIONAL, 'The importer to use: v1 or v2', 'v1')
21 ->addOption('markAsRead', null, InputArgument::OPTIONAL, 'Mark all entries as read: true/false', false) 21 ->addOption('markAsRead', null, InputArgument::OPTIONAL, 'Mark all entries as read', false)
22 ; 22 ;
23 } 23 }
24 24
@@ -42,9 +42,7 @@ class ImportCommand extends ContainerAwareCommand
42 $wallabag = $this->getContainer()->get('wallabag_import.wallabag_v2.import'); 42 $wallabag = $this->getContainer()->get('wallabag_import.wallabag_v2.import');
43 } 43 }
44 44
45 if ('yes' === $input->getOption('markAsRead')) { 45 $wallabag->setMarkAsRead($input->getOption('markAsRead'));
46 $wallabag->setMarkAsRead(true);
47 }
48 46
49 $res = $wallabag 47 $res = $wallabag
50 ->setUser($user) 48 ->setUser($user)