2019-05-04 07:08:31 -04:00
|
|
|
<?php
|
2020-02-09 09:45:36 -05:00
|
|
|
/**
|
2023-01-01 09:36:24 -05:00
|
|
|
* @copyright Copyright (C) 2010-2023, the Friendica project
|
2020-02-09 09:45:36 -05:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2019-05-04 07:08:31 -04:00
|
|
|
|
|
|
|
namespace Friendica\Module;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Core\Hook;
|
|
|
|
use Friendica\Core\Renderer;
|
2019-12-15 16:34:11 -05:00
|
|
|
use Friendica\DI;
|
2023-02-10 05:29:35 -05:00
|
|
|
use Friendica\Model\User;
|
2019-12-27 16:19:28 -05:00
|
|
|
use Friendica\Module\Security\Login;
|
2023-02-10 05:29:35 -05:00
|
|
|
use Friendica\Protocol\ActivityPub;
|
2019-05-04 07:08:31 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Home module - Landing page of the current node
|
|
|
|
*/
|
|
|
|
class Home extends BaseModule
|
|
|
|
{
|
2023-02-10 05:29:35 -05:00
|
|
|
protected function rawContent(array $request = [])
|
|
|
|
{
|
|
|
|
if (ActivityPub::isRequest()) {
|
|
|
|
DI::baseUrl()->redirect(User::getActorName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-20 09:38:03 -05:00
|
|
|
protected function content(array $request = []): string
|
2019-05-04 07:08:31 -04:00
|
|
|
{
|
2019-12-15 16:34:11 -05:00
|
|
|
$app = DI::app();
|
2019-12-15 17:44:33 -05:00
|
|
|
$config = DI::config();
|
2019-05-04 07:08:31 -04:00
|
|
|
|
2019-05-04 10:26:32 -04:00
|
|
|
// currently no returned data is used
|
|
|
|
$ret = [];
|
|
|
|
|
|
|
|
Hook::callAll('home_init', $ret);
|
|
|
|
|
2022-10-20 16:59:12 -04:00
|
|
|
if (DI::userSession()->getLocalUserId() && ($app->getLoggedInUserNickname())) {
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect('network');
|
2019-05-04 07:08:31 -04:00
|
|
|
}
|
|
|
|
|
2022-11-19 19:10:02 -05:00
|
|
|
if ($config->get('system', 'singleuser')) {
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect('/profile/' . $config->get('system', 'singleuser'));
|
2019-05-04 07:08:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$customHome = '';
|
2020-01-18 14:52:34 -05:00
|
|
|
$defaultHeader = ($config->get('config', 'sitename') ? DI::l10n()->t('Welcome to %s', $config->get('config', 'sitename')) : '');
|
2019-05-04 07:08:31 -04:00
|
|
|
|
2019-05-05 04:47:08 -04:00
|
|
|
$homeFilePath = $app->getBasePath() . '/home.html';
|
|
|
|
$cssFilePath = $app->getBasePath() . '/home.css';
|
2019-05-04 07:08:31 -04:00
|
|
|
|
|
|
|
if (file_exists($homeFilePath)) {
|
|
|
|
$customHome = $homeFilePath;
|
|
|
|
|
|
|
|
if (file_exists($cssFilePath)) {
|
2023-02-19 05:12:48 -05:00
|
|
|
DI::page()->registerStylesheet('home.css', 'all');
|
2019-05-04 07:08:31 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-15 19:30:34 -05:00
|
|
|
$login = Login::form(DI::args()->getQueryString(), $config->get('config', 'register_policy') === Register::CLOSED ? 0 : 1);
|
2019-05-04 07:08:31 -04:00
|
|
|
|
|
|
|
$content = '';
|
|
|
|
Hook::callAll('home_content', $content);
|
|
|
|
|
|
|
|
$tpl = Renderer::getMarkupTemplate('home.tpl');
|
|
|
|
return Renderer::replaceMacros($tpl, [
|
|
|
|
'$defaultheader' => $defaultHeader,
|
|
|
|
'$customhome' => $customHome,
|
|
|
|
'$login' => $login,
|
|
|
|
'$content' => $content,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|