mirror of
https://github.com/SkillDisplay/TYPO3ContentElements.git
synced 2024-11-22 19:26:09 +01:00
71 lines
1.9 KiB
PHP
71 lines
1.9 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace SkillDisplay\Typo3Extension;
|
||
|
|
||
|
/*
|
||
|
* 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 SkillDisplay\PHPToolKit\Configuration\Settings;
|
||
|
use TYPO3\CMS\Core\Context\Context;
|
||
|
use TYPO3\CMS\Core\Http\ServerRequest;
|
||
|
use TYPO3\CMS\Core\Site\SiteFinder;
|
||
|
|
||
|
class SettingsFactory
|
||
|
{
|
||
|
/**
|
||
|
* @var SiteFinder
|
||
|
*/
|
||
|
private $siteFinder;
|
||
|
|
||
|
/**
|
||
|
* @var Context
|
||
|
*/
|
||
|
private $context;
|
||
|
|
||
|
|
||
|
public function __construct(
|
||
|
SiteFinder $siteFinder,
|
||
|
Context $context
|
||
|
) {
|
||
|
$this->siteFinder = $siteFinder;
|
||
|
$this->context = $context;
|
||
|
}
|
||
|
|
||
|
public function createFromCurrentSiteConfiguration(): Settings
|
||
|
{
|
||
|
$site = $this->getRequest()->getAttribute('site');
|
||
|
if ($site === null) {
|
||
|
throw new \Exception('Could not determine current site.', 1599721652);
|
||
|
}
|
||
|
|
||
|
$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'];
|
||
|
}
|
||
|
}
|