]> git.mxchange.org Git - friendica.git/blob - src/Moderation/Factory/Report.php
Merge pull request #12562 from MrPetovan/bug/notices
[friendica.git] / src / Moderation / Factory / Report.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\Moderation\Factory;
23
24 use Friendica\Capabilities\ICanCreateFromTableRow;
25 use Friendica\Moderation\Entity;
26
27 class Report extends \Friendica\BaseFactory implements ICanCreateFromTableRow
28 {
29         /**
30          * @param array $row        `report` table row
31          * @param array $postUriIds List of post URI ids from the `report-post` table
32          * @return Entity\Report
33          * @throws \Exception
34          */
35         public function createFromTableRow(array $row, array $postUriIds = []): Entity\Report
36         {
37                 return new Entity\Report(
38                         $row['reporter-id'],
39                         $row['cid'],
40                         new \DateTime($row['created'] ?? 'now', new \DateTimeZone('UTC')),
41                         $row['comment'],
42                         $row['category'],
43                         $row['rules'],
44                         $row['forward'],
45                         $postUriIds,
46                         $row['uid'],
47                         $row['id'],
48                 );
49         }
50
51         /**
52          * Creates a Report entity from a Mastodon API /reports request
53          *
54          * @see \Friendica\Module\Api\Mastodon\Reports::post()
55          *
56          * @param int    $uid
57          * @param int    $reporterId
58          * @param int    $cid
59          * @param string $comment
60          * @param bool   $forward
61          * @param array  $postUriIds
62          * @return Entity\Report
63          * @throws \Exception
64          */
65         public function createFromReportsRequest(int $reporterId, int $cid, string $comment = '', string $category = null, string $rules = '', bool $forward = false, array $postUriIds = [], int $uid = null): Entity\Report
66         {
67                 return new Entity\Report(
68                         $reporterId,
69                         $cid,
70                         new \DateTime('now', new \DateTimeZone('UTC')),
71                         $comment,
72                         $category,
73                         $rules,
74                         $forward,
75                         $postUriIds,
76                         $uid,
77                 );
78         }
79 }