]> git.mxchange.org Git - friendica.git/blob - src/Module/Home.php
Decouple conversation creation from rendering
[friendica.git] / src / Module / Home.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, 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;
23
24 use Friendica\BaseModule;
25 use Friendica\Core\Hook;
26 use Friendica\Core\Renderer;
27 use Friendica\DI;
28 use Friendica\Model\User;
29 use Friendica\Module\Security\Login;
30 use Friendica\Protocol\ActivityPub;
31
32 /**
33  * Home module - Landing page of the current node
34  */
35 class Home extends BaseModule
36 {
37         protected function rawContent(array $request = [])
38         {
39                 if (ActivityPub::isRequest()) {
40                         DI::baseUrl()->redirect(User::getActorName());
41                 }
42         }
43
44         protected function content(array $request = []): string
45         {
46                 $app = DI::app();
47                 $config = DI::config();
48
49                 // currently no returned data is used
50                 $ret = [];
51
52                 Hook::callAll('home_init', $ret);
53
54                 if (DI::userSession()->getLocalUserId() && ($app->getLoggedInUserNickname())) {
55                         DI::baseUrl()->redirect('network');
56                 }
57
58                 if ($config->get('system', 'singleuser')) {
59                         DI::baseUrl()->redirect('/profile/' . $config->get('system', 'singleuser'));
60                 }
61
62                 $customHome = '';
63                 $defaultHeader = ($config->get('config', 'sitename') ? DI::l10n()->t('Welcome to %s', $config->get('config', 'sitename')) : '');
64
65                 $homeFilePath = $app->getBasePath() . '/home.html';
66                 $cssFilePath = $app->getBasePath() . '/home.css';
67
68                 if (file_exists($homeFilePath)) {
69                         $customHome = $homeFilePath;
70
71                         if (file_exists($cssFilePath)) {
72                                 DI::page()->registerStylesheet('home.css', 'all');
73                         }
74                 }
75
76                 $login = Login::form(DI::args()->getQueryString(), $config->get('config', 'register_policy') === Register::CLOSED ? 0 : 1);
77
78                 $content = '';
79                 Hook::callAll('home_content', $content);
80
81                 $tpl = Renderer::getMarkupTemplate('home.tpl');
82                 return Renderer::replaceMacros($tpl, [
83                         '$defaultheader' => $defaultHeader,
84                         '$customhome'    => $customHome,
85                         '$login'         => $login,
86                         '$content'       => $content,
87                 ]);
88         }
89 }