mirror of
https://github.com/SkillDisplay/TYPO3ContentElements.git
synced 2024-11-21 19:16:08 +01:00
74 lines
2.1 KiB
PHP
74 lines
2.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace SkillDisplay\SkilldisplayContent;
|
|
|
|
/*
|
|
* 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.
|
|
*/
|
|
|
|
use RuntimeException;
|
|
use SkillDisplay\PHPToolKit\Configuration\Settings;
|
|
use TYPO3\CMS\Core\Http\ServerRequest;
|
|
use TYPO3\CMS\Core\Site\Entity\Site;
|
|
use TYPO3\CMS\Core\Site\SiteFinder;
|
|
|
|
class SettingsFactory
|
|
{
|
|
private SiteFinder $siteFinder;
|
|
|
|
public function __construct(
|
|
SiteFinder $siteFinder
|
|
) {
|
|
$this->siteFinder = $siteFinder;
|
|
}
|
|
|
|
public function createFromCurrentSiteConfiguration(): Settings
|
|
{
|
|
$site = $this->getRequest()->getAttribute('site');
|
|
if ($site === null) {
|
|
throw new RuntimeException('Could not determine current site.', 1599721652);
|
|
}
|
|
|
|
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
|
|
{
|
|
$config = $site->getConfiguration();
|
|
|
|
return new Settings(
|
|
$config['skilldisplay_api_key'] ?? '',
|
|
(int)($config['skilldisplay_verifier_id'] ?? 0),
|
|
$config['skilldisplay_user_secret'] ?? ''
|
|
);
|
|
}
|
|
|
|
private function getRequest(): ServerRequest
|
|
{
|
|
return $GLOBALS['TYPO3_REQUEST'];
|
|
}
|
|
}
|