summaryrefslogtreecommitdiffstats
path: root/lib/Command
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2018-11-28 17:18:37 -0100
committerMaxence Lange <maxence@artificial-owl.com>2018-11-28 17:18:37 -0100
commit9a042eea457a807976f89f10787bd505df7a423d (patch)
tree81a2c7635540afc45b84238ab38cceaa401c6a3c /lib/Command
parentf08865eeedffd8054dbfc93c69f396a346077eee (diff)
retry-on-fail by cron and cli
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'lib/Command')
-rw-r--r--lib/Command/QueueProcess.php126
1 files changed, 126 insertions, 0 deletions
diff --git a/lib/Command/QueueProcess.php b/lib/Command/QueueProcess.php
new file mode 100644
index 00000000..d7aeb1a9
--- /dev/null
+++ b/lib/Command/QueueProcess.php
@@ -0,0 +1,126 @@
+<?php
+declare(strict_types=1);
+
+
+/**
+ * Nextcloud - Social Support
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Maxence Lange <maxence@artificial-owl.com>
+ * @copyright 2018, Maxence Lange <maxence@artificial-owl.com>
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+
+namespace OCA\Social\Command;
+
+
+use Exception;
+use OC\Core\Command\Base;
+use OCA\Social\Exceptions\ActorDoesNotExistException;
+use OCA\Social\Exceptions\RequestException;
+use OCA\Social\Exceptions\SocialAppConfigException;
+use OCA\Social\Service\ActivityService;
+use OCA\Social\Service\ConfigService;
+use OCA\Social\Service\MiscService;
+use OCA\Social\Service\QueueService;
+use Symfony\Component\Console\Input\InputInterface;
+use Symfony\Component\Console\Output\OutputInterface;
+
+
+class QueueProcess extends Base {
+
+
+ /** @var ActivityService */
+ private $activityService;
+
+ /** @var QueueService */
+ private $queueService;
+
+ /** @var ConfigService */
+ private $configService;
+
+ /** @var MiscService */
+ private $miscService;
+
+
+ /**
+ * NoteCreate constructor.
+ *
+ * @param ActivityService $activityService
+ * @param QueueService $queueService
+ * @param ConfigService $configService
+ * @param MiscService $miscService
+ */
+ public function __construct(
+ ActivityService $activityService, QueueService $queueService, ConfigService $configService,
+ MiscService $miscService
+ ) {
+ parent::__construct();
+
+ $this->activityService = $activityService;
+ $this->queueService = $queueService;
+ $this->configService = $configService;
+ $this->miscService = $miscService;
+ }
+
+
+ /**
+ *
+ */
+ protected function configure() {
+ parent::configure();
+ $this->setName('social:queue:process')
+ ->setDescription('Process the request queue');
+ }
+
+
+ /**
+ * @param InputInterface $input
+ * @param OutputInterface $output
+ */
+ protected function execute(InputInterface $input, OutputInterface $output) {
+
+ $requests = $this->queueService->getRequestStandby($total = 0);
+
+ $output->writeLn('found a total of ' . $total . ' requests in the queue');
+ if ($total === 0) {
+ return;
+ }
+
+ $output->writeLn(sizeof($requests) . ' are processable at this time');
+ if (sizeof($requests) === 0) {
+ return;
+ }
+
+ foreach ($requests as $request) {
+ $output->write('.');
+ try {
+ $this->activityService->manageRequest($request);
+ } catch (ActorDoesNotExistException $e) {
+ } catch (RequestException $e) {
+ } catch (SocialAppConfigException $e) {
+ }
+ }
+
+ $output->writeLn('done');
+ }
+
+}
+