Part-DB-server/src/Services/LabelSystem/PlaceholderProviders/GlobalProviders.php

132 lines
4.2 KiB
PHP
Raw Normal View History

<?php
2022-11-29 21:21:26 +01:00
/*
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
*
* Copyright (C) 2019 - 2022 Jan Böhmer (https://github.com/jbtronics)
*
* 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/>.
*/
2020-05-10 21:39:31 +02:00
declare(strict_types=1);
/**
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
*
2022-11-29 22:28:53 +01:00
* Copyright (C) 2019 - 2022 Jan Böhmer (https://github.com/jbtronics)
*
* 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 App\Services\LabelSystem\PlaceholderProviders;
use App\Entity\UserSystem\User;
2022-08-14 19:32:53 +02:00
use DateTime;
use IntlDateFormatter;
use Locale;
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
use Symfony\Component\Security\Core\Security;
/**
* Provides Placeholders for infos about global infos like Installation name or datetimes.
*/
2020-05-09 18:17:23 +02:00
final class GlobalProviders implements PlaceholderProviderInterface
{
2022-09-18 22:59:31 +02:00
private string $partdb_title;
private Security $security;
private UrlGeneratorInterface $url_generator;
public function __construct(string $partdb_title, Security $security, UrlGeneratorInterface $url_generator)
{
$this->partdb_title = $partdb_title;
$this->security = $security;
$this->url_generator = $url_generator;
}
public function replace(string $placeholder, object $label_target, array $options = []): ?string
{
2020-05-10 21:39:31 +02:00
if ('[[INSTALL_NAME]]' === $placeholder) {
return $this->partdb_title;
}
$user = $this->security->getUser();
2020-05-10 21:39:31 +02:00
if ('[[USERNAME]]' === $placeholder) {
if ($user instanceof User) {
return $user->getName();
}
2020-05-10 21:39:31 +02:00
return 'anonymous';
}
2020-05-10 21:39:31 +02:00
if ('[[USERNAME_FULL]]' === $placeholder) {
if ($user instanceof User) {
return $user->getFullName(true);
}
2020-05-10 21:39:31 +02:00
return 'anonymous';
}
2022-08-14 19:32:53 +02:00
$now = new DateTime();
2020-05-10 21:39:31 +02:00
if ('[[DATETIME]]' === $placeholder) {
$formatter = IntlDateFormatter::create(
Locale::getDefault(),
IntlDateFormatter::SHORT,
IntlDateFormatter::SHORT,
$now->getTimezone()
);
return $formatter->format($now);
}
2020-05-10 21:39:31 +02:00
if ('[[DATE]]' === $placeholder) {
$formatter = IntlDateFormatter::create(
Locale::getDefault(),
IntlDateFormatter::SHORT,
IntlDateFormatter::NONE,
$now->getTimezone()
);
return $formatter->format($now);
}
2020-05-10 21:39:31 +02:00
if ('[[TIME]]' === $placeholder) {
$formatter = IntlDateFormatter::create(
Locale::getDefault(),
IntlDateFormatter::NONE,
IntlDateFormatter::SHORT,
$now->getTimezone()
);
return $formatter->format($now);
}
if ('[[INSTANCE_URL]]' === $placeholder) {
2023-02-05 03:01:25 +01:00
return $this->url_generator->generate('homepage', [], UrlGeneratorInterface::ABSOLUTE_URL);
}
return null;
}
2020-05-10 21:39:31 +02:00
}