]> git.mxchange.org Git - friendica.git/commitdiff
Add support for Mastodon /reports API call
authorHypolite Petovan <hypolite@mrpetovan.com>
Sun, 13 Nov 2022 01:00:02 +0000 (20:00 -0500)
committerHypolite Petovan <hypolite@mrpetovan.com>
Mon, 14 Nov 2022 17:22:54 +0000 (12:22 -0500)
src/Module/Api/Mastodon/Reports.php [new file with mode: 0644]
static/routes.config.php

diff --git a/src/Module/Api/Mastodon/Reports.php b/src/Module/Api/Mastodon/Reports.php
new file mode 100644 (file)
index 0000000..6ae54eb
--- /dev/null
@@ -0,0 +1,74 @@
+<?php
+/**
+ * @copyright Copyright (C) 2010-2022, the Friendica project
+ *
+ * @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 <https://www.gnu.org/licenses/>.
+ *
+ */
+
+namespace Friendica\Module\Api\Mastodon;
+
+use Friendica\App;
+use Friendica\Core\L10n;
+use Friendica\Core\System;
+use Friendica\Model\Contact;
+use Friendica\Module\Api\ApiResponse;
+use Friendica\Module\BaseApi;
+use Friendica\Network\HTTPException;
+use Friendica\Util\Profiler;
+use Psr\Log\LoggerInterface;
+
+/**
+ * @see https://docs.joinmastodon.org/methods/accounts/reports/
+ */
+class Reports extends BaseApi
+{
+       /** @var \Friendica\Moderation\Factory\Report */
+       private $reportFactory;
+       /** @var \Friendica\Moderation\Repository\Report */
+       private $reportRepo;
+
+       public function __construct(\Friendica\Moderation\Repository\Report $reportRepo, \Friendica\Moderation\Factory\Report $reportFactory, App $app, L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, ApiResponse $response, array $server, array $parameters = [])
+       {
+               parent::__construct($app, $l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
+
+               $this->reportFactory = $reportFactory;
+               $this->reportRepo    = $reportRepo;
+       }
+
+       public function post(array $request = [])
+       {
+               self::checkAllowedScope(self::SCOPE_WRITE);
+
+               $request = $this->getRequest([
+                       'account_id' => '',    // ID of the account to report
+                       'status_ids' => [],    // Array of Statuses to attach to the report, for context
+                       'comment'    => '',    // Reason for the report (default max 1000 characters)
+                       'forward'    => false, // If the account is remote, should the report be forwarded to the remote admin?
+               ], $request);
+
+               $contact = Contact::getById($request['account_id'], ['id']);
+               if (empty($contact)) {
+                       throw new HTTPException\NotFoundException('Account ' . $request['account_id'] . ' not found');
+               }
+
+               $report = $this->reportFactory->createFromReportsRequest(self::getCurrentUserID(), $request['account_id'], $request['comment'], $request['forward'], $request['status_ids']);
+
+               $this->reportRepo->save($report);
+
+               System::jsonExit([]);
+       }
+}
index 0958ee877b05e24b5686cc19e35932b4af462555..43fafb16722e36602424311908301fcfc1ddaafe 100644 (file)
@@ -256,7 +256,7 @@ return [
                        '/polls/{id:\d+}/votes'              => [Module\Api\Mastodon\Unimplemented::class,            [        R::POST]], // not supported
                        '/preferences'                       => [Module\Api\Mastodon\Preferences::class,              [R::GET         ]],
                        '/push/subscription'                 => [Module\Api\Mastodon\PushSubscription::class,         [R::GET, R::POST, R::PUT, R::DELETE]],
-                       '/reports'                           => [Module\Api\Mastodon\Unimplemented::class,            [        R::POST]], // not supported
+                       '/reports'                           => [Module\Api\Mastodon\Reports::class,                  [        R::POST]],
                        '/scheduled_statuses'                => [Module\Api\Mastodon\ScheduledStatuses::class,        [R::GET         ]],
                        '/scheduled_statuses/{id:\d+}'       => [Module\Api\Mastodon\ScheduledStatuses::class,        [R::GET, R::PUT, R::DELETE]],
                        '/statuses'                          => [Module\Api\Mastodon\Statuses::class,                 [        R::POST]],