GroupBlock.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <?php
  2. declare(strict_types = 1);
  3. // {{{ License
  4. // This file is part of GNU social - https://www.gnu.org/software/social
  5. //
  6. // GNU social is free software: you can redistribute it and/or modify
  7. // it under the terms of the GNU Affero General Public License as published by
  8. // the Free Software Foundation, either version 3 of the License, or
  9. // (at your option) any later version.
  10. //
  11. // GNU social is distributed in the hope that it will be useful,
  12. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. // GNU Affero General Public License for more details.
  15. //
  16. // You should have received a copy of the GNU Affero General Public License
  17. // along with GNU social. If not, see <http://www.gnu.org/licenses/>.
  18. // }}}
  19. namespace Component\Group\Entity;
  20. use App\Core\Entity;
  21. use DateTimeInterface;
  22. /**
  23. * Entity for Group Block
  24. *
  25. * @category DB
  26. * @package GNUsocial
  27. *
  28. * @author Zach Copley <zach@status.net>
  29. * @copyright 2010 StatusNet Inc.
  30. * @author Mikael Nordfeldth <mmn@hethane.se>
  31. * @copyright 2009-2014 Free Software Foundation, Inc http://www.fsf.org
  32. * @author Hugo Sales <hugo@hsal.es>
  33. * @copyright 2020-2021 Free Software Foundation, Inc http://www.fsf.org
  34. * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
  35. */
  36. class GroupBlock extends Entity
  37. {
  38. // {{{ Autocode
  39. // @codeCoverageIgnoreStart
  40. private int $group_id;
  41. private int $blocked_actor;
  42. private int $blocker_user;
  43. private DateTimeInterface $modified;
  44. public function setGroupId(int $group_id): self
  45. {
  46. $this->group_id = $group_id;
  47. return $this;
  48. }
  49. public function getGroupId(): int
  50. {
  51. return $this->group_id;
  52. }
  53. public function setBlockedActor(int $blocked_actor): self
  54. {
  55. $this->blocked_actor = $blocked_actor;
  56. return $this;
  57. }
  58. public function getBlockedActor(): int
  59. {
  60. return $this->blocked_actor;
  61. }
  62. public function setBlockerUser(int $blocker_user): self
  63. {
  64. $this->blocker_user = $blocker_user;
  65. return $this;
  66. }
  67. public function getBlockerUser(): int
  68. {
  69. return $this->blocker_user;
  70. }
  71. public function setModified(DateTimeInterface $modified): self
  72. {
  73. $this->modified = $modified;
  74. return $this;
  75. }
  76. public function getModified(): DateTimeInterface
  77. {
  78. return $this->modified;
  79. }
  80. // @codeCoverageIgnoreEnd
  81. // }}} Autocode
  82. public static function schemaDef(): array
  83. {
  84. return [
  85. 'name' => 'group_block',
  86. 'fields' => [
  87. 'group_id' => ['type' => 'int', 'foreign key' => true, 'target' => 'Group.id', 'multiplicity' => 'many to one', 'not null' => true, 'description' => 'group actor is blocked from'],
  88. 'blocked_actor' => ['type' => 'int', 'foreign key' => true, 'target' => 'Actor.id', 'multiplicity' => 'one to one', 'not null' => true, 'description' => 'actor that is blocked'],
  89. 'blocker_user' => ['type' => 'int', 'foreign key' => true, 'target' => 'LocalUser.id', 'multiplicity' => 'one to one', 'not null' => true, 'description' => 'user making the block'],
  90. 'modified' => ['type' => 'timestamp', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was modified'],
  91. ],
  92. 'primary key' => ['group_id', 'blocked_actor'],
  93. ];
  94. }
  95. }