summaryrefslogtreecommitdiffstats
path: root/lib/Command
diff options
context:
space:
mode:
authorSean Molenaar <SMillerDev@users.noreply.github.com>2018-03-27 15:35:06 +0200
committerBernhard Posselt <BernhardPosselt@users.noreply.github.com>2018-03-27 15:35:06 +0200
commit5b94705cf3918dc7986c6043b1fbe776bf22958f (patch)
tree4e8059818a0a913d24938e35238913a721fa6373 /lib/Command
parentf3c9d13551cef5968baea99c2f25085baee0ed5f (diff)
Core: Fix compatibility with nextcloud codestyle (#280)
Diffstat (limited to 'lib/Command')
-rw-r--r--lib/Command/Updater/AfterUpdate.php20
-rw-r--r--lib/Command/Updater/AllFeeds.php20
-rw-r--r--lib/Command/Updater/BeforeUpdate.php20
-rw-r--r--lib/Command/Updater/UpdateFeed.php20
4 files changed, 52 insertions, 28 deletions
diff --git a/lib/Command/Updater/AfterUpdate.php b/lib/Command/Updater/AfterUpdate.php
index 728d2a937..a9becf543 100644
--- a/lib/Command/Updater/AfterUpdate.php
+++ b/lib/Command/Updater/AfterUpdate.php
@@ -5,7 +5,7 @@
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
*
- * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
* @copyright Bernhard Posselt 2016
*/
@@ -19,21 +19,27 @@ use Symfony\Component\Console\Output\OutputInterface;
use \OCA\News\Utility\Updater;
-class AfterUpdate extends Command {
+class AfterUpdate extends Command
+{
private $updater;
- public function __construct(Updater $updater) {
+ public function __construct(Updater $updater)
+ {
parent::__construct();
$this->updater = $updater;
}
- protected function configure() {
+ protected function configure()
+ {
$this->setName('news:updater:after-update')
- ->setDescription('This is used to clean up the database. It ' .
- 'removes old read articles which are not starred');
+ ->setDescription(
+ 'This is used to clean up the database. It ' .
+ 'removes old read articles which are not starred'
+ );
}
- protected function execute(InputInterface $input, OutputInterface $output) {
+ protected function execute(InputInterface $input, OutputInterface $output)
+ {
$this->updater->afterUpdate();
}
diff --git a/lib/Command/Updater/AllFeeds.php b/lib/Command/Updater/AllFeeds.php
index 838ce1404..8947c714e 100644
--- a/lib/Command/Updater/AllFeeds.php
+++ b/lib/Command/Updater/AllFeeds.php
@@ -5,7 +5,7 @@
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
*
- * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
* @copyright Bernhard Posselt 2016
*/
@@ -20,23 +20,29 @@ use Symfony\Component\Console\Output\OutputInterface;
use OCA\News\Service\FeedService;
-class AllFeeds extends Command {
+class AllFeeds extends Command
+{
private $feedService;
- public function __construct(FeedService $feedService) {
+ public function __construct(FeedService $feedService)
+ {
parent::__construct();
$this->feedService = $feedService;
}
- protected function configure() {
+ protected function configure()
+ {
$json = '{"feeds": [{"id": 39, "userId": "john"}, // etc ]}';
$this->setName('news:updater:all-feeds')
- ->setDescription('Prints a JSON string which contains all feed ' .
- 'ids and user ids, e.g.: ' . $json);
+ ->setDescription(
+ 'Prints a JSON string which contains all feed ' .
+ 'ids and user ids, e.g.: ' . $json
+ );
}
- protected function execute(InputInterface $input, OutputInterface $output) {
+ protected function execute(InputInterface $input, OutputInterface $output)
+ {
$feeds = $this->feedService->findAllFromAllUsers();
$result = ['feeds' => []];
diff --git a/lib/Command/Updater/BeforeUpdate.php b/lib/Command/Updater/BeforeUpdate.php
index 9a384d95a..9d562d010 100644
--- a/lib/Command/Updater/BeforeUpdate.php
+++ b/lib/Command/Updater/BeforeUpdate.php
@@ -5,7 +5,7 @@
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
*
- * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
* @copyright Bernhard Posselt 2016
*/
@@ -19,22 +19,28 @@ use Symfony\Component\Console\Output\OutputInterface;
use \OCA\News\Utility\Updater;
-class BeforeUpdate extends Command {
+class BeforeUpdate extends Command
+{
private $updater;
- public function __construct(Updater $updater) {
+ public function __construct(Updater $updater)
+ {
parent::__construct();
$this->updater = $updater;
}
- protected function configure() {
+ protected function configure()
+ {
$this->setName('news:updater:before-update')
- ->setDescription('This is used to clean up the database. It ' .
+ ->setDescription(
+ 'This is used to clean up the database. It ' .
'deletes folders and feeds that are marked for ' .
- 'deletion');
+ 'deletion'
+ );
}
- protected function execute(InputInterface $input, OutputInterface $output) {
+ protected function execute(InputInterface $input, OutputInterface $output)
+ {
$this->updater->beforeUpdate();
}
diff --git a/lib/Command/Updater/UpdateFeed.php b/lib/Command/Updater/UpdateFeed.php
index 44ac914be..b07cc3e4a 100644
--- a/lib/Command/Updater/UpdateFeed.php
+++ b/lib/Command/Updater/UpdateFeed.php
@@ -5,7 +5,7 @@
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
*
- * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
* @copyright Bernhard Posselt 2016
*/
@@ -21,15 +21,18 @@ use Symfony\Component\Console\Output\OutputInterface;
use OCA\News\Service\FeedService;
-class UpdateFeed extends Command {
+class UpdateFeed extends Command
+{
private $feedService;
- public function __construct(FeedService $feedService) {
+ public function __construct(FeedService $feedService)
+ {
parent::__construct();
$this->feedService = $feedService;
}
- protected function configure() {
+ protected function configure()
+ {
$this->setName('news:updater:update-feed')
->addArgument(
'feed-id',
@@ -44,15 +47,18 @@ class UpdateFeed extends Command {
->setDescription('Console API for updating a single user\'s feed');
}
- protected function execute(InputInterface $input, OutputInterface $output) {
+ protected function execute(InputInterface $input, OutputInterface $output)
+ {
$feedId = $input->getArgument('feed-id');
$userId = $input->getArgument('user-id');
try {
$this->feedService->update($feedId, $userId);
} catch (Exception $e) {
- $output->writeln('<error>Could not update feed with id ' . $feedId .
+ $output->writeln(
+ '<error>Could not update feed with id ' . $feedId .
' and user ' . $userId . ': ' . $e->getMessage() .
- '</error> ');
+ '</error> '
+ );
}
}