GroupAlias.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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 Alias
  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 GroupAlias extends Entity
  37. {
  38. // {{{ Autocode
  39. // @codeCoverageIgnoreStart
  40. private string $alias;
  41. private int $group_id;
  42. private DateTimeInterface $modified;
  43. public function setAlias(string $alias): self
  44. {
  45. $this->alias = mb_substr($alias, 0, 64);
  46. return $this;
  47. }
  48. public function getAlias(): string
  49. {
  50. return $this->alias;
  51. }
  52. public function setGroupId(int $group_id): self
  53. {
  54. $this->group_id = $group_id;
  55. return $this;
  56. }
  57. public function getGroupId(): int
  58. {
  59. return $this->group_id;
  60. }
  61. public function setModified(DateTimeInterface $modified): self
  62. {
  63. $this->modified = $modified;
  64. return $this;
  65. }
  66. public function getModified(): DateTimeInterface
  67. {
  68. return $this->modified;
  69. }
  70. // @codeCoverageIgnoreEnd
  71. // }}} Autocode
  72. public static function schemaDef(): array
  73. {
  74. return [
  75. 'name' => 'group_alias',
  76. 'fields' => [
  77. 'alias' => ['type' => 'varchar', 'length' => 64, 'not null' => true, 'description' => 'additional nickname for the group'],
  78. 'group_id' => ['type' => 'int', 'foreign key' => true, 'target' => 'Group.id', 'multiplicity' => 'many to one', 'not null' => true, 'description' => 'group id which this is an alias of'],
  79. 'modified' => ['type' => 'timestamp', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was modified'],
  80. ],
  81. 'primary key' => ['alias'],
  82. 'indexes' => [
  83. 'group_alias_group_id_idx' => ['group_id'],
  84. ],
  85. ];
  86. }
  87. }