]> git.mxchange.org Git - friendica.git/blob - src/Module/Home.php
old boot.php functions replaced in src/module
[friendica.git] / src / Module / Home.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, 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\Core\Session;
28 use Friendica\DI;
29 use Friendica\Module\Security\Login;
30
31 /**
32  * Home module - Landing page of the current node
33  */
34 class Home extends BaseModule
35 {
36         protected function content(array $request = []): string
37         {
38                 $app = DI::app();
39                 $config = DI::config();
40
41                 // currently no returned data is used
42                 $ret = [];
43
44                 Hook::callAll('home_init', $ret);
45
46                 if (Session::getLocalUser() && ($app->getLoggedInUserNickname())) {
47                         DI::baseUrl()->redirect('network');
48                 }
49
50                 if (strlen($config->get('system', 'singleuser'))) {
51                         DI::baseUrl()->redirect('/profile/' . $config->get('system', 'singleuser'));
52                 }
53
54                 $customHome = '';
55                 $defaultHeader = ($config->get('config', 'sitename') ? DI::l10n()->t('Welcome to %s', $config->get('config', 'sitename')) : '');
56
57                 $homeFilePath = $app->getBasePath() . '/home.html';
58                 $cssFilePath = $app->getBasePath() . '/home.css';
59
60                 if (file_exists($homeFilePath)) {
61                         $customHome = $homeFilePath;
62
63                         if (file_exists($cssFilePath)) {
64                                 DI::page()['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . DI::baseUrl()->get() . '/home.css' . '" media="all" />';
65                         }
66                 }
67
68                 $login = Login::form(DI::args()->getQueryString(), $config->get('config', 'register_policy') === Register::CLOSED ? 0 : 1);
69
70                 $content = '';
71                 Hook::callAll('home_content', $content);
72
73                 $tpl = Renderer::getMarkupTemplate('home.tpl');
74                 return Renderer::replaceMacros($tpl, [
75                         '$defaultheader' => $defaultHeader,
76                         '$customhome'    => $customHome,
77                         '$login'         => $login,
78                         '$content'       => $content,
79                 ]);
80         }
81 }