summaryrefslogtreecommitdiffstats
path: root/lib/Command
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2019-02-22 23:04:00 -0100
committerMaxence Lange <maxence@artificial-owl.com>2019-02-22 23:04:00 -0100
commit9ac8eb965b930110d0ec42d56988a10adf1e3f96 (patch)
tree85234dfae2e24b53a42e17e2abb087b53aa085e1 /lib/Command
parent8a92d5680abfa80302dafb421699ceb0d0aa74fc (diff)
boost creation
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'lib/Command')
-rw-r--r--lib/Command/NoteBoost.php136
-rw-r--r--lib/Command/NoteCreate.php1
2 files changed, 137 insertions, 0 deletions
diff --git a/lib/Command/NoteBoost.php b/lib/Command/NoteBoost.php
new file mode 100644
index 00000000..477d806b
--- /dev/null
+++ b/lib/Command/NoteBoost.php
@@ -0,0 +1,136 @@
+<?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\Model\ActivityPub\ACore;
+use OCA\Social\Model\ActivityPub\Object\Announce;
+use OCA\Social\Model\ActivityPub\Stream;
+use OCA\Social\Model\Post;
+use OCA\Social\Service\AccountService;
+use OCA\Social\Service\ActivityService;
+use OCA\Social\Service\ConfigService;
+use OCA\Social\Service\CurlService;
+use OCA\Social\Service\MiscService;
+use OCA\Social\Service\NoteService;
+use OCA\Social\Service\PostService;
+use Symfony\Component\Console\Input\InputArgument;
+use Symfony\Component\Console\Input\InputInterface;
+use Symfony\Component\Console\Input\InputOption;
+use Symfony\Component\Console\Output\OutputInterface;
+
+
+class NoteBoost extends Base {
+
+
+ /** @var ConfigService */
+ private $configService;
+
+ /** @var ActivityService */
+ private $activityService;
+
+ /** @var NoteService */
+ private $noteService;
+
+ /** @var AccountService */
+ private $accountService;
+
+ /** @var PostService */
+ private $postService;
+
+ /** @var CurlService */
+ private $curlService;
+
+ /** @var MiscService */
+ private $miscService;
+
+
+ /**
+ * NoteCreate constructor.
+ *
+ * @param ActivityService $activityService
+ * @param AccountService $accountService
+ * @param NoteService $noteService
+ * @param PostService $postService
+ * @param CurlService $curlService
+ * @param ConfigService $configService
+ * @param MiscService $miscService
+ */
+ public function __construct(
+ ActivityService $activityService, AccountService $accountService,
+ NoteService $noteService, PostService $postService, CurlService $curlService,
+ ConfigService $configService, MiscService $miscService
+ ) {
+ parent::__construct();
+
+ $this->activityService = $activityService;
+ $this->noteService = $noteService;
+ $this->accountService = $accountService;
+ $this->postService = $postService;
+ $this->curlService = $curlService;
+ $this->configService = $configService;
+ $this->miscService = $miscService;
+ }
+
+
+ /**
+ *
+ */
+ protected function configure() {
+ parent::configure();
+ $this->setName('social:note:boost')
+ ->addArgument('userid', InputArgument::REQUIRED, 'userId of the author')
+ ->addArgument('note', InputArgument::REQUIRED, 'Note to boost')
+ ->setDescription('Boost a note');
+ }
+
+
+ /**
+ * @param InputInterface $input
+ * @param OutputInterface $output
+ *
+ * @throws Exception
+ */
+ protected function execute(InputInterface $input, OutputInterface $output) {
+ $userId = $input->getArgument('userid');
+ $noteId = $input->getArgument('note');
+
+ $actor = $this->accountService->getActorFromUserId($userId);
+ $this->noteService->setViewer($actor);
+ $token = $this->noteService->createBoost($actor, $noteId, $activity);
+
+ echo 'object: ' . json_encode($activity, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) . "\n";
+ echo 'token: ' . $token . "\n";
+ }
+
+}
+
diff --git a/lib/Command/NoteCreate.php b/lib/Command/NoteCreate.php
index 96867c54..99c3d18c 100644
--- a/lib/Command/NoteCreate.php
+++ b/lib/Command/NoteCreate.php
@@ -47,6 +47,7 @@ use Symfony\Component\Console\Output\OutputInterface;
class NoteCreate extends Base {
+
/** @var ConfigService */
private $configService;