]> git.mxchange.org Git - friendica.git/blob - src/Module/Api/Mastodon/Reports.php
Merge pull request #13176 from MrPetovan/bug/warnings
[friendica.git] / src / Module / Api / Mastodon / Reports.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Module\Api\Mastodon;
23
24 use Friendica\App;
25 use Friendica\Core\L10n;
26 use Friendica\Core\System;
27 use Friendica\Model\Contact;
28 use Friendica\Module\Api\ApiResponse;
29 use Friendica\Module\BaseApi;
30 use Friendica\Network\HTTPException;
31 use Friendica\Util\Profiler;
32 use Psr\Log\LoggerInterface;
33
34 /**
35  * @see https://docs.joinmastodon.org/methods/accounts/reports/
36  */
37 class Reports extends BaseApi
38 {
39         /** @var \Friendica\Moderation\Factory\Report */
40         private $reportFactory;
41         /** @var \Friendica\Moderation\Repository\Report */
42         private $reportRepo;
43
44         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 = [])
45         {
46                 parent::__construct($app, $l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
47
48                 $this->reportFactory = $reportFactory;
49                 $this->reportRepo    = $reportRepo;
50         }
51
52         public function post(array $request = [])
53         {
54                 self::checkAllowedScope(self::SCOPE_WRITE);
55
56                 $request = $this->getRequest([
57                         'account_id' => '',      // ID of the account to report
58                         'status_ids' => [],      // Array of Statuses to attach to the report, for context
59                         'comment'    => '',      // Reason for the report (default max 1000 characters)
60                         'category'   => 'other', // Specify if the report is due to spam, violation of enumerated instance rules, or some other reason.
61                         'rule_ids'   => [],      // For violation category reports, specify the ID of the exact rules broken.
62                         'forward'    => false,   // If the account is remote, should the report be forwarded to the remote admin?
63                 ], $request);
64
65                 $contact = Contact::getById($request['account_id'], ['id']);
66                 if (empty($contact)) {
67                         throw new HTTPException\NotFoundException('Account ' . $request['account_id'] . ' not found');
68                 }
69
70                 $violation = '';
71                 $rules     = System::getRules(true);
72
73                 foreach ($request['rule_ids'] as $key) {
74                         if (!empty($rules[$key])) {
75                                 $violation .= $rules[$key] . "\n";
76                         }
77                 }
78
79                 $report = $this->reportFactory->createFromReportsRequest(Contact::getPublicIdByUserId(self::getCurrentUserID()), $request['account_id'], $request['comment'], $request['category'], trim($violation), $request['forward'], $request['status_ids'], self::getCurrentUserID());
80
81                 $this->reportRepo->save($report);
82
83                 System::jsonExit([]);
84         }
85 }