3 * @copyright Copyright (C) 2010-2023, the Friendica project
5 * @license GNU AGPL version 3 or any later version
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.
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.
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/>.
22 namespace Friendica\Module;
24 use Friendica\BaseModule;
25 use Friendica\Core\Hook;
26 use Friendica\Core\Renderer;
28 use Friendica\Model\User;
29 use Friendica\Module\Security\Login;
30 use Friendica\Protocol\ActivityPub;
33 * Home module - Landing page of the current node
35 class Home extends BaseModule
37 protected function rawContent(array $request = [])
39 if (ActivityPub::isRequest()) {
40 DI::baseUrl()->redirect(User::getActorName());
44 protected function content(array $request = []): string
47 $config = DI::config();
49 // currently no returned data is used
52 Hook::callAll('home_init', $ret);
54 if (DI::userSession()->getLocalUserId() && ($app->getLoggedInUserNickname())) {
55 DI::baseUrl()->redirect('network');
58 if ($config->get('system', 'singleuser')) {
59 DI::baseUrl()->redirect('/profile/' . $config->get('system', 'singleuser'));
63 $defaultHeader = ($config->get('config', 'sitename') ? DI::l10n()->t('Welcome to %s', $config->get('config', 'sitename')) : '');
65 $homeFilePath = $app->getBasePath() . '/home.html';
66 $cssFilePath = $app->getBasePath() . '/home.css';
68 if (file_exists($homeFilePath)) {
69 $customHome = $homeFilePath;
71 if (file_exists($cssFilePath)) {
72 DI::page()->registerStylesheet('home.css', 'all');
76 $login = Login::form(DI::args()->getQueryString(), $config->get('config', 'register_policy') === Register::CLOSED ? 0 : 1);
79 Hook::callAll('home_content', $content);
81 $tpl = Renderer::getMarkupTemplate('home.tpl');
82 return Renderer::replaceMacros($tpl, [
83 '$defaultheader' => $defaultHeader,
84 '$customhome' => $customHome,
86 '$content' => $content,