123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- <?php
- declare(strict_types=1);
- /**
- * @copyright Copyright (c) 2020, Georg Ehrke
- *
- * @author Georg Ehrke <oc.list@georgehrke.com>
- *
- * @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 <http://www.gnu.org/licenses/>.
- *
- */
- namespace OCA\UserStatus\Service;
- use OCP\IL10N;
- use OCP\UserStatus\IUserStatus;
- /**
- * Class DefaultStatusService
- *
- * We are offering a set of default statuses, so we can
- * translate them into different languages.
- *
- * @package OCA\UserStatus\Service
- */
- class PredefinedStatusService {
- private const MEETING = 'meeting';
- private const COMMUTING = 'commuting';
- private const SICK_LEAVE = 'sick-leave';
- private const VACATIONING = 'vacationing';
- private const REMOTE_WORK = 'remote-work';
- /**
- * @deprecated See \OCP\UserStatus\IUserStatus::MESSAGE_CALL
- */
- public const CALL = 'call';
- /** @var IL10N */
- private $l10n;
- /**
- * DefaultStatusService constructor.
- *
- * @param IL10N $l10n
- */
- public function __construct(IL10N $l10n) {
- $this->l10n = $l10n;
- }
- /**
- * @return array
- */
- public function getDefaultStatuses(): array {
- return [
- [
- 'id' => self::MEETING,
- 'icon' => '📅',
- 'message' => $this->getTranslatedStatusForId(self::MEETING),
- 'clearAt' => [
- 'type' => 'period',
- 'time' => 3600,
- ],
- ],
- [
- 'id' => self::COMMUTING,
- 'icon' => '🚌',
- 'message' => $this->getTranslatedStatusForId(self::COMMUTING),
- 'clearAt' => [
- 'type' => 'period',
- 'time' => 1800,
- ],
- ],
- [
- 'id' => self::REMOTE_WORK,
- 'icon' => '🏡',
- 'message' => $this->getTranslatedStatusForId(self::REMOTE_WORK),
- 'clearAt' => [
- 'type' => 'end-of',
- 'time' => 'day',
- ],
- ],
- [
- 'id' => self::SICK_LEAVE,
- 'icon' => '🤒',
- 'message' => $this->getTranslatedStatusForId(self::SICK_LEAVE),
- 'clearAt' => [
- 'type' => 'end-of',
- 'time' => 'day',
- ],
- ],
- [
- 'id' => self::VACATIONING,
- 'icon' => '🌴',
- 'message' => $this->getTranslatedStatusForId(self::VACATIONING),
- 'clearAt' => null,
- ],
- [
- 'id' => self::CALL,
- 'icon' => '💬',
- 'message' => $this->getTranslatedStatusForId(self::CALL),
- 'clearAt' => null,
- 'visible' => false,
- ],
- ];
- }
- /**
- * @param string $id
- * @return array|null
- */
- public function getDefaultStatusById(string $id): ?array {
- foreach ($this->getDefaultStatuses() as $status) {
- if ($status['id'] === $id) {
- return $status;
- }
- }
- return null;
- }
- /**
- * @param string $id
- * @return string|null
- */
- public function getIconForId(string $id): ?string {
- switch ($id) {
- case self::MEETING:
- return '📅';
- case self::COMMUTING:
- return '🚌';
- case self::SICK_LEAVE:
- return '🤒';
- case self::VACATIONING:
- return '🌴';
- case self::REMOTE_WORK:
- return '🏡';
- case self::CALL:
- return '💬';
- default:
- return null;
- }
- }
- /**
- * @param string $lang
- * @param string $id
- * @return string|null
- */
- public function getTranslatedStatusForId(string $id): ?string {
- switch ($id) {
- case self::MEETING:
- return $this->l10n->t('In a meeting');
- case self::COMMUTING:
- return $this->l10n->t('Commuting');
- case self::SICK_LEAVE:
- return $this->l10n->t('Out sick');
- case self::VACATIONING:
- return $this->l10n->t('Vacationing');
- case self::REMOTE_WORK:
- return $this->l10n->t('Working remotely');
- case self::CALL:
- return $this->l10n->t('In a call');
- default:
- return null;
- }
- }
- /**
- * @param string $id
- * @return bool
- */
- public function isValidId(string $id): bool {
- return \in_array($id, [
- self::MEETING,
- self::COMMUTING,
- self::SICK_LEAVE,
- self::VACATIONING,
- self::REMOTE_WORK,
- IUserStatus::MESSAGE_CALL,
- IUserStatus::MESSAGE_AVAILABILITY,
- ], true);
- }
- }
|