]> git.mxchange.org Git - friendica.git/commitdiff
Add Posts and Rules sub-entities and collections for Moderation\Report
authorHypolite Petovan <hypolite@mrpetovan.com>
Wed, 14 Dec 2022 15:01:01 +0000 (10:01 -0500)
committerHypolite Petovan <hypolite@mrpetovan.com>
Sun, 9 Jul 2023 22:32:42 +0000 (18:32 -0400)
src/Moderation/Collection/Report/Posts.php [new file with mode: 0644]
src/Moderation/Collection/Report/Rules.php [new file with mode: 0644]
src/Moderation/Entity/Report/Post.php [new file with mode: 0644]
src/Moderation/Entity/Report/Rule.php [new file with mode: 0644]
src/Moderation/Factory/Report/Post.php [new file with mode: 0644]
src/Moderation/Factory/Report/Rule.php [new file with mode: 0644]

diff --git a/src/Moderation/Collection/Report/Posts.php b/src/Moderation/Collection/Report/Posts.php
new file mode 100644 (file)
index 0000000..374654d
--- /dev/null
@@ -0,0 +1,33 @@
+<?php
+/**
+ * @copyright Copyright (C) 2010-2023, 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\Moderation\Collection\Report;
+
+class Posts extends \Friendica\BaseCollection
+{
+       /**
+        * @return \Friendica\Moderation\Entity\Report\Post
+        */
+       public function current(): \Friendica\Moderation\Entity\Report\Post
+       {
+               return parent::current();
+       }
+}
diff --git a/src/Moderation/Collection/Report/Rules.php b/src/Moderation/Collection/Report/Rules.php
new file mode 100644 (file)
index 0000000..4803c6b
--- /dev/null
@@ -0,0 +1,33 @@
+<?php
+/**
+ * @copyright Copyright (C) 2010-2023, 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\Moderation\Collection\Report;
+
+class Rules extends \Friendica\BaseCollection
+{
+       /**
+        * @return \Friendica\Moderation\Entity\Report\Rule
+        */
+       public function current(): \Friendica\Moderation\Entity\Report\Rule
+       {
+               return parent::current();
+       }
+}
diff --git a/src/Moderation/Entity/Report/Post.php b/src/Moderation/Entity/Report/Post.php
new file mode 100644 (file)
index 0000000..956052a
--- /dev/null
@@ -0,0 +1,44 @@
+<?php
+/**
+ * @copyright Copyright (C) 2010-2023, 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\Moderation\Entity\Report;
+
+/**
+ * @property-read int $uriId URI Id of the reported post
+ * @property-read int $status One of STATUS_*
+ */
+final class Post extends \Friendica\BaseEntity
+{
+       const STATUS_NO_ACTION = 0;
+       const STATUS_UNLISTED  = 1;
+       const STATUS_DELETED   = 2;
+
+       /** @var int */
+       protected $uriId;
+       /** @var int|null */
+       protected $status;
+
+       public function __construct(int $uriId, int $status = self::STATUS_NO_ACTION)
+       {
+               $this->uriId  = $uriId;
+               $this->status = $status;
+       }
+}
diff --git a/src/Moderation/Entity/Report/Rule.php b/src/Moderation/Entity/Report/Rule.php
new file mode 100644 (file)
index 0000000..3d1d1f8
--- /dev/null
@@ -0,0 +1,40 @@
+<?php
+/**
+ * @copyright Copyright (C) 2010-2023, 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\Moderation\Entity\Report;
+
+/**
+ * @property-read int    $lineId Terms of service text line number
+ * @property-read string $text   Terms of service rule text
+ */
+final class Rule extends \Friendica\BaseEntity
+{
+       /** @var int */
+       protected $lineId;
+       /** @var string */
+       protected $text;
+
+       public function __construct(int $lineId, string $text)
+       {
+               $this->lineId = $lineId;
+               $this->text   = $text;
+       }
+}
diff --git a/src/Moderation/Factory/Report/Post.php b/src/Moderation/Factory/Report/Post.php
new file mode 100644 (file)
index 0000000..f70460a
--- /dev/null
@@ -0,0 +1,35 @@
+<?php
+/**
+ * @copyright Copyright (C) 2010-2023, 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\Moderation\Factory\Report;
+
+use Friendica\Capabilities\ICanCreateFromTableRow;
+
+class Post extends \Friendica\BaseFactory implements ICanCreateFromTableRow
+{
+       public function createFromTableRow(array $row): \Friendica\Moderation\Entity\Report\Post
+       {
+               return new \Friendica\Moderation\Entity\Report\Post(
+                       $row['uri-id'],
+                       $row['status']
+               );
+       }
+}
diff --git a/src/Moderation/Factory/Report/Rule.php b/src/Moderation/Factory/Report/Rule.php
new file mode 100644 (file)
index 0000000..3345706
--- /dev/null
@@ -0,0 +1,35 @@
+<?php
+/**
+ * @copyright Copyright (C) 2010-2023, 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\Moderation\Factory\Report;
+
+use Friendica\Capabilities\ICanCreateFromTableRow;
+
+class Rule extends \Friendica\BaseFactory implements ICanCreateFromTableRow
+{
+       public function createFromTableRow(array $row): \Friendica\Moderation\Entity\Report\Rule
+       {
+               return new \Friendica\Moderation\Entity\Report\Rule(
+                       $row['line-id'],
+                       $row['text']
+               );
+       }
+}