2020-04-14 17:21:30 +02:00
|
|
|
<?php
|
2020-05-10 21:39:31 +02:00
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
2020-04-14 17:21:30 +02:00
|
|
|
/**
|
|
|
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2019 - 2020 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;
|
2020-04-14 17:21:30 +02:00
|
|
|
use IntlDateFormatter;
|
|
|
|
|
use Locale;
|
|
|
|
|
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
|
2020-04-14 17:21:30 +02:00
|
|
|
{
|
2020-05-09 18:17:23 +02:00
|
|
|
private $partdb_title;
|
|
|
|
|
private $security;
|
2020-04-14 17:21:30 +02:00
|
|
|
|
|
|
|
|
public function __construct(string $partdb_title, Security $security)
|
|
|
|
|
{
|
|
|
|
|
$this->partdb_title = $partdb_title;
|
|
|
|
|
$this->security = $security;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function replace(string $placeholder, object $label_target, array $options = []): ?string
|
|
|
|
|
{
|
2020-05-10 21:39:31 +02:00
|
|
|
if ('[[INSTALL_NAME]]' === $placeholder) {
|
2020-04-14 17:21:30 +02:00
|
|
|
return $this->partdb_title;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$user = $this->security->getUser();
|
2020-05-10 21:39:31 +02:00
|
|
|
if ('[[USERNAME]]' === $placeholder) {
|
2020-04-14 17:21:30 +02:00
|
|
|
if ($user instanceof User) {
|
|
|
|
|
return $user->getName();
|
|
|
|
|
}
|
2020-05-10 21:39:31 +02:00
|
|
|
|
2020-04-14 17:21:30 +02:00
|
|
|
return 'anonymous';
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-10 21:39:31 +02:00
|
|
|
if ('[[USERNAME_FULL]]' === $placeholder) {
|
2020-04-14 17:21:30 +02:00
|
|
|
if ($user instanceof User) {
|
|
|
|
|
return $user->getFullName(true);
|
|
|
|
|
}
|
2020-05-10 21:39:31 +02:00
|
|
|
|
2020-04-14 17:21:30 +02:00
|
|
|
return 'anonymous';
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-14 19:32:53 +02:00
|
|
|
$now = new DateTime();
|
2020-04-14 17:21:30 +02:00
|
|
|
|
2020-05-10 21:39:31 +02:00
|
|
|
if ('[[DATETIME]]' === $placeholder) {
|
2020-04-14 17:21:30 +02:00
|
|
|
$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) {
|
2020-04-14 17:21:30 +02:00
|
|
|
$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) {
|
2020-04-14 17:21:30 +02:00
|
|
|
$formatter = IntlDateFormatter::create(
|
|
|
|
|
Locale::getDefault(),
|
|
|
|
|
IntlDateFormatter::NONE,
|
|
|
|
|
IntlDateFormatter::SHORT,
|
|
|
|
|
$now->getTimezone()
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
return $formatter->format($now);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2020-05-10 21:39:31 +02:00
|
|
|
}
|