]> git.mxchange.org Git - friendica.git/blob - src/Module/Admin/Themes/Embed.php
Introduce `Response` for Modules to create a testable way for module responses
[friendica.git] / src / Module / Admin / Themes / Embed.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Module\Admin\Themes;
23
24 use Friendica\App;
25 use Friendica\Core\L10n;
26 use Friendica\Core\Renderer;
27 use Friendica\Module\BaseAdmin;
28 use Friendica\Module\Response;
29 use Friendica\Util\Profiler;
30 use Friendica\Util\Strings;
31 use Psr\Log\LoggerInterface;
32
33 class Embed extends BaseAdmin
34 {
35         /** @var App */
36         protected $app;
37         /** @var App\Mode */
38         protected $mode;
39
40         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 = [])
41         {
42                 parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
43
44                 $this->app  = $app;
45                 $this->mode = $mode;
46
47                 $theme = Strings::sanitizeFilePathItem($this->parameters['theme']);
48                 if (is_file("view/theme/$theme/config.php")) {
49                         $this->app->setCurrentTheme($theme);
50                 }
51         }
52
53         protected function post(array $request = [], array $post = [])
54         {
55                 self::checkAdminAccess();
56
57                 $theme = Strings::sanitizeFilePathItem($this->parameters['theme']);
58                 if (is_file("view/theme/$theme/config.php")) {
59                         require_once "view/theme/$theme/config.php";
60                         if (function_exists('theme_admin_post')) {
61                                 self::checkFormSecurityTokenRedirectOnError('/admin/themes/' . $theme . '/embed?mode=minimal', 'admin_theme_settings');
62                                 theme_admin_post($this->app);
63                         }
64                 }
65
66                 if ($this->mode->isAjax()) {
67                         return;
68                 }
69
70                 $this->baseUrl->redirect('admin/themes/' . $theme . '/embed?mode=minimal');
71         }
72
73         protected function content(array $request = []): string
74         {
75                 parent::content();
76
77                 $theme = Strings::sanitizeFilePathItem($this->parameters['theme']);
78                 if (!is_dir("view/theme/$theme")) {
79                         notice($this->t('Unknown theme.'));
80                         return '';
81                 }
82
83                 $admin_form = '';
84                 if (is_file("view/theme/$theme/config.php")) {
85                         require_once "view/theme/$theme/config.php";
86
87                         if (function_exists('theme_admin')) {
88                                 $admin_form = theme_admin($this->app);
89                         }
90                 }
91
92                 // Overrides normal theme style include to strip user param to show embedded theme settings
93                 Renderer::$theme['stylesheet'] = 'view/theme/' . $theme . '/style.pcss';
94
95                 $t = Renderer::getMarkupTemplate('admin/addons/embed.tpl');
96                 return Renderer::replaceMacros($t, [
97                         '$action' => '/admin/themes/' . $theme . '/embed?mode=minimal',
98                         '$form' => $admin_form,
99                         '$form_security_token' => self::getFormSecurityToken("admin_theme_settings"),
100                 ]);
101         }
102 }