2e4d654c0a
- Move HTTPInputData::process() into App::runFrontend() - Pass $_REQUEST (including processed Input) to every Module method - Delete $_POST parameters at Module post() calls because of $_REQUEST
102 lines
3.1 KiB
PHP
102 lines
3.1 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
|
*
|
|
* @license GNU AGPL version 3 or any later version
|
|
*
|
|
* 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 Friendica\Module\Admin\Themes;
|
|
|
|
use Friendica\App;
|
|
use Friendica\Core\L10n;
|
|
use Friendica\Core\Renderer;
|
|
use Friendica\Module\BaseAdmin;
|
|
use Friendica\Module\Response;
|
|
use Friendica\Util\Profiler;
|
|
use Friendica\Util\Strings;
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
class Embed extends BaseAdmin
|
|
{
|
|
/** @var App */
|
|
protected $app;
|
|
/** @var App\Mode */
|
|
protected $mode;
|
|
|
|
public function __construct(App $app, L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, App\Mode $mode, array $server, array $parameters = [])
|
|
{
|
|
parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
|
|
|
|
$this->app = $app;
|
|
$this->mode = $mode;
|
|
|
|
$theme = Strings::sanitizeFilePathItem($this->parameters['theme']);
|
|
if (is_file("view/theme/$theme/config.php")) {
|
|
$this->app->setCurrentTheme($theme);
|
|
}
|
|
}
|
|
|
|
protected function post(array $request = [])
|
|
{
|
|
self::checkAdminAccess();
|
|
|
|
$theme = Strings::sanitizeFilePathItem($this->parameters['theme']);
|
|
if (is_file("view/theme/$theme/config.php")) {
|
|
require_once "view/theme/$theme/config.php";
|
|
if (function_exists('theme_admin_post')) {
|
|
self::checkFormSecurityTokenRedirectOnError('/admin/themes/' . $theme . '/embed?mode=minimal', 'admin_theme_settings');
|
|
theme_admin_post($this->app);
|
|
}
|
|
}
|
|
|
|
if ($this->mode->isAjax()) {
|
|
return;
|
|
}
|
|
|
|
$this->baseUrl->redirect('admin/themes/' . $theme . '/embed?mode=minimal');
|
|
}
|
|
|
|
protected function content(array $request = []): string
|
|
{
|
|
parent::content();
|
|
|
|
$theme = Strings::sanitizeFilePathItem($this->parameters['theme']);
|
|
if (!is_dir("view/theme/$theme")) {
|
|
notice($this->t('Unknown theme.'));
|
|
return '';
|
|
}
|
|
|
|
$admin_form = '';
|
|
if (is_file("view/theme/$theme/config.php")) {
|
|
require_once "view/theme/$theme/config.php";
|
|
|
|
if (function_exists('theme_admin')) {
|
|
$admin_form = theme_admin($this->app);
|
|
}
|
|
}
|
|
|
|
// Overrides normal theme style include to strip user param to show embedded theme settings
|
|
Renderer::$theme['stylesheet'] = 'view/theme/' . $theme . '/style.pcss';
|
|
|
|
$t = Renderer::getMarkupTemplate('admin/addons/embed.tpl');
|
|
return Renderer::replaceMacros($t, [
|
|
'$action' => '/admin/themes/' . $theme . '/embed?mode=minimal',
|
|
'$form' => $admin_form,
|
|
'$form_security_token' => self::getFormSecurityToken("admin_theme_settings"),
|
|
]);
|
|
}
|
|
}
|