123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242 |
- <?php
- declare(strict_types = 1);
- // {{{ License
- // This file is part of GNU social - https://www.gnu.org/software/social
- //
- // GNU social 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.
- //
- // GNU social 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 GNU social. If not, see <http://www.gnu.org/licenses/>.
- // }}}
- namespace Plugin\Oomox\Entity;
- use App\Core\Entity;
- use DateTimeInterface;
- /**
- * For storing theme colour settings
- *
- * @package GNUsocial
- * @category Oomox
- *
- * @author Eliseu Amaro <mail@eliseuama.ro>
- * @copyright 2020 Free Software Foundation, Inc http://www.fsf.org
- * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
- */
- class Oomox extends Entity
- {
- // {{{ Autocode
- // @codeCoverageIgnoreStart
- private int $actor_id;
- private ?string $colour_foreground_light;
- private ?string $colour_background_hard_light;
- private ?string $colour_background_card_light;
- private ?string $colour_border_light;
- private ?string $colour_accent_light;
- private ?string $colour_foreground_dark;
- private ?string $colour_background_hard_dark;
- private ?string $colour_background_card_dark;
- private ?string $colour_border_dark;
- private ?string $colour_accent_dark;
- private DateTimeInterface $created;
- private DateTimeInterface $modified;
- public function setActorId(int $actor_id): self
- {
- $this->actor_id = $actor_id;
- return $this;
- }
- public function getActorId(): int
- {
- return $this->actor_id;
- }
- public function setColourForegroundLight(?string $colour_foreground_light): self
- {
- $this->colour_foreground_light = $colour_foreground_light;
- return $this;
- }
- public function getColourForegroundLight(): ?string
- {
- return $this->colour_foreground_light;
- }
- public function setColourBackgroundHardLight(?string $colour_background_hard_light): self
- {
- $this->colour_background_hard_light = $colour_background_hard_light;
- return $this;
- }
- public function getColourBackgroundHardLight(): ?string
- {
- return $this->colour_background_hard_light;
- }
- public function setColourBackgroundCardLight(?string $colour_background_card_light): self
- {
- $this->colour_background_card_light = $colour_background_card_light;
- return $this;
- }
- public function getColourBackgroundCardLight(): ?string
- {
- return $this->colour_background_card_light;
- }
- public function setColourBorderLight(?string $colour_border_light): self
- {
- $this->colour_border_light = $colour_border_light;
- return $this;
- }
- public function getColourBorderLight(): ?string
- {
- return $this->colour_border_light;
- }
- public function setColourAccentLight(?string $colour_accent_light): self
- {
- $this->colour_accent_light = $colour_accent_light;
- return $this;
- }
- public function getColourAccentLight(): ?string
- {
- return $this->colour_accent_light;
- }
- public function setColourForegroundDark(?string $colour_foreground_dark): self
- {
- $this->colour_foreground_dark = $colour_foreground_dark;
- return $this;
- }
- public function getColourForegroundDark(): ?string
- {
- return $this->colour_foreground_dark;
- }
- public function setColourBackgroundHardDark(?string $colour_background_hard_dark): self
- {
- $this->colour_background_hard_dark = $colour_background_hard_dark;
- return $this;
- }
- public function getColourBackgroundHardDark(): ?string
- {
- return $this->colour_background_hard_dark;
- }
- public function setColourBackgroundCardDark(?string $colour_background_card_dark): self
- {
- $this->colour_background_card_dark = $colour_background_card_dark;
- return $this;
- }
- public function getColourBackgroundCardDark(): ?string
- {
- return $this->colour_background_card_dark;
- }
- public function setColourBorderDark(?string $colour_border_dark): self
- {
- $this->colour_border_dark = $colour_border_dark;
- return $this;
- }
- public function getColourBorderDark(): ?string
- {
- return $this->colour_border_dark;
- }
- public function setColourAccentDark(?string $colour_accent_dark): self
- {
- $this->colour_accent_dark = $colour_accent_dark;
- return $this;
- }
- public function getColourAccentDark(): ?string
- {
- return $this->colour_accent_dark;
- }
- public function setCreated(DateTimeInterface $created): self
- {
- $this->created = $created;
- return $this;
- }
- public function getCreated(): DateTimeInterface
- {
- return $this->created;
- }
- public function setModified(DateTimeInterface $modified): self
- {
- $this->modified = $modified;
- return $this;
- }
- public function getModified(): DateTimeInterface
- {
- return $this->modified;
- }
- public function resetTheme(bool $is_light) {
- if ($is_light) {
- $this->colour_background_hard_light = '#09090d';
- $this->colour_background_card_light = '#ebebeb';
- $this->colour_foreground_light = '#f0f0f0';
- $this->colour_border_light = '#d5d5d5';
- $this->colour_accent_light = '#a22430';
- } else {
- $this->colour_background_hard_dark = '#141216';
- $this->colour_background_card_dark = '#131217';
- $this->colour_foreground_dark = '#f0f6f6';
- $this->colour_border_dark = '#201f25';
- $this->colour_accent_dark = '#5ddbcf';
- }
- }
- // @codeCoverageIgnoreEnd
- // }}} Autocode
- public static function schemaDef(): array
- {
- return [
- 'name' => 'oomox',
- 'fields' => [
- 'actor_id' => ['type' => 'int', 'foreign key' => true, 'target' => 'Actor.id', 'multiplicity' => 'one to one', 'not null' => true, 'description' => 'foreign key to actor table'],
- 'colour_foreground_light' => ['type' => 'text', 'description' => 'colour hex code'],
- 'colour_background_hard_light' => ['type' => 'text', 'description' => 'colour hex code'],
- 'colour_background_card_light' => ['type' => 'text', 'description' => 'colour hex code'],
- 'colour_border_light' => ['type' => 'text', 'description' => 'colour hex code'],
- 'colour_accent_light' => ['type' => 'text', 'description' => 'colour hex code'],
- 'colour_foreground_dark' => ['type' => 'text', 'description' => 'colour hex code'],
- 'colour_background_hard_dark' => ['type' => 'text', 'description' => 'colour hex code'],
- 'colour_background_card_dark' => ['type' => 'text', 'description' => 'colour hex code'],
- 'colour_border_dark' => ['type' => 'text', 'description' => 'colour hex code'],
- 'colour_accent_dark' => ['type' => 'text', 'description' => 'colour hex code'],
- 'created' => ['type' => 'datetime', 'not null' => true, 'description' => 'date this record was created', 'default' => 'CURRENT_TIMESTAMP'],
- 'modified' => ['type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified', 'default' => 'CURRENT_TIMESTAMP'],
- ],
- 'primary key' => ['actor_id'],
- ];
- }
- }
|