2020-09-21 16:36:01 +02:00
|
|
|
<?php
|
|
|
|
|
2021-01-23 15:52:16 +01:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2021-01-25 16:02:17 +01:00
|
|
|
namespace SkillDisplay\SkilldisplayContent;
|
2020-09-21 16:36:01 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2020 Daniel Siepmann <coding@daniel-siepmann.de>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
|
|
* 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
2023-07-06 16:39:52 +02:00
|
|
|
use RuntimeException;
|
2020-09-21 16:36:01 +02:00
|
|
|
use SkillDisplay\PHPToolKit\Configuration\Settings;
|
|
|
|
use TYPO3\CMS\Core\Http\ServerRequest;
|
2021-01-22 11:29:38 +01:00
|
|
|
use TYPO3\CMS\Core\Site\Entity\Site;
|
|
|
|
use TYPO3\CMS\Core\Site\SiteFinder;
|
2020-09-21 16:36:01 +02:00
|
|
|
|
|
|
|
class SettingsFactory
|
|
|
|
{
|
2023-07-06 16:39:52 +02:00
|
|
|
private SiteFinder $siteFinder;
|
2021-01-22 11:29:38 +01:00
|
|
|
|
|
|
|
public function __construct(
|
|
|
|
SiteFinder $siteFinder
|
|
|
|
) {
|
|
|
|
$this->siteFinder = $siteFinder;
|
|
|
|
}
|
|
|
|
|
2020-09-21 16:36:01 +02:00
|
|
|
public function createFromCurrentSiteConfiguration(): Settings
|
|
|
|
{
|
|
|
|
$site = $this->getRequest()->getAttribute('site');
|
|
|
|
if ($site === null) {
|
2023-07-06 16:39:52 +02:00
|
|
|
throw new RuntimeException('Could not determine current site.', 1599721652);
|
2020-09-21 16:36:01 +02:00
|
|
|
}
|
|
|
|
|
2021-01-22 11:29:38 +01:00
|
|
|
return $this->createFromSite($site);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function createFromPageUid(int $pageUid): Settings
|
|
|
|
{
|
|
|
|
$site = $this->siteFinder->getSiteByPageId($pageUid);
|
|
|
|
|
|
|
|
return $this->createFromSite($site);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function createFromSite(Site $site): Settings
|
|
|
|
{
|
2020-09-21 16:36:01 +02:00
|
|
|
$config = $site->getConfiguration();
|
|
|
|
|
|
|
|
return new Settings(
|
|
|
|
$config['skilldisplay_api_key'] ?? '',
|
2020-09-23 08:42:34 +02:00
|
|
|
(int)($config['skilldisplay_verifier_id'] ?? 0),
|
2020-09-21 16:36:01 +02:00
|
|
|
$config['skilldisplay_user_secret'] ?? ''
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getRequest(): ServerRequest
|
|
|
|
{
|
|
|
|
return $GLOBALS['TYPO3_REQUEST'];
|
|
|
|
}
|
|
|
|
}
|