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