]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Profile/Index.php
Merge pull request #10632 from annando/fox-notifications
[friendica.git] / src / Module / Profile / Index.php
index 27d5047d1b7135ceec3900dafae1df74e1590747..5334ac932fc33b473dbd89aae6e286fe56abadb3 100644 (file)
 <?php
+/**
+ * @copyright Copyright (C) 2010-2021, the Friendica project
+ *
+ * @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/>.
+ *
+ */
 
 namespace Friendica\Module\Profile;
 
 use Friendica\BaseModule;
-use Friendica\Content\Nav;
-use Friendica\Core\Hook;
-use Friendica\Core\Session;
-use Friendica\Core\System;
-use Friendica\Database\DBA;
-use Friendica\DI;
-use Friendica\Model\Profile as ProfileModel;
-use Friendica\Model\User;
-use Friendica\Module\Security\Login;
-use Friendica\Protocol\ActivityPub;
-
-require_once 'boot.php';
 
+/**
+ * Profile index router
+ *
+ * The default profile path (https://domain.tld/profile/nickname) has to serve the profile data when queried as an
+ * ActivityPub endpoint, but it should show statuses to web users.
+ *
+ * Both these view have dedicated sub-paths,
+ * respectively https://domain.tld/profile/nickname/profile and https://domain.tld/profile/nickname/status
+ */
 class Index extends BaseModule
 {
        public static function rawContent(array $parameters = [])
        {
-               if (ActivityPub::isRequest()) {
-                       $user = DBA::selectFirst('user', ['uid'], ['nickname' => $parameters['nickname']]);
-                       if (DBA::isResult($user)) {
-                               // The function returns an empty array when the account is removed, expired or blocked
-                               $data = ActivityPub\Transmitter::getProfile($user['uid']);
-                               if (!empty($data)) {
-                                       System::jsonExit($data, 'application/activity+json');
-                               }
-                       }
-
-                       if (DBA::exists('userd', ['username' => $parameters['nickname']])) {
-                               // Known deleted user
-                               $data = ActivityPub\Transmitter::getDeletedUser($parameters['nickname']);
-
-                               System::jsonError(410, $data);
-                       } else {
-                               // Any other case (unknown, blocked, nverified, expired, no profile, no self contact)
-                               System::jsonError(404, []);
-                       }
-               }
+               Profile::rawContent($parameters);
        }
 
        public static function content(array $parameters = [])
        {
-               $a = DI::app();
-
-               if (DI::config()->get('system', 'block_public') && !local_user() && !Session::getRemoteContactID($a->profile['profile_uid'])) {
-                       return Login::form();
-               }
-
-               ProfileModel::load($a, $parameters['nickname']);
-
-               DI::page()['htmlhead'] .= "\n";
-
-               $blocked   = !local_user() && !Session::getRemoteContactID($a->profile['profile_uid']) && DI::config()->get('system', 'block_public');
-               $userblock = !local_user() && !Session::getRemoteContactID($a->profile['profile_uid']) && $a->profile['hidewall'];
-
-               if (!empty($a->profile['page-flags']) && $a->profile['page-flags'] == User::PAGE_FLAGS_COMMUNITY) {
-                       DI::page()['htmlhead'] .= '<meta name="friendica.community" content="true" />' . "\n";
-               }
-
-               if (!empty($a->profile['openidserver'])) {
-                       DI::page()['htmlhead'] .= '<link rel="openid.server" href="' . $a->profile['openidserver'] . '" />' . "\n";
-               }
-
-               if (!empty($a->profile['openid'])) {
-                       $delegate = strstr($a->profile['openid'], '://') ? $a->profile['openid'] : 'https://' . $a->profile['openid'];
-                       DI::page()['htmlhead'] .= '<link rel="openid.delegate" href="' . $delegate . '" />' . "\n";
-               }
-
-               // site block
-               if (!$blocked && !$userblock) {
-                       $keywords = str_replace(['#', ',', ' ', ',,'], ['', ' ', ',', ','], $a->profile['pub_keywords'] ?? '');
-                       if (strlen($keywords)) {
-                               DI::page()['htmlhead'] .= '<meta name="keywords" content="' . $keywords . '" />' . "\n";
-                       }
-               }
-
-               DI::page()['htmlhead'] .= '<meta name="dfrn-global-visibility" content="' . ($a->profile['net-publish'] ? 'true' : 'false') . '" />' . "\n";
-
-               if (!$a->profile['net-publish'] || $a->profile['hidewall']) {
-                       DI::page()['htmlhead'] .= '<meta content="noindex, noarchive" name="robots" />' . "\n";
-               }
-
-               DI::page()['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . DI::baseUrl() . '/dfrn_poll/' . $parameters['nickname'] . '" title="DFRN: ' . DI::l10n()->t('%s\'s timeline', $a->profile['username']) . '"/>' . "\n";
-               DI::page()['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . DI::baseUrl() . '/feed/' . $parameters['nickname'] . '/" title="' . DI::l10n()->t('%s\'s posts', $a->profile['username']) . '"/>' . "\n";
-               DI::page()['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . DI::baseUrl() . '/feed/' . $parameters['nickname'] . '/comments" title="' . DI::l10n()->t('%s\'s comments', $a->profile['username']) . '"/>' . "\n";
-               DI::page()['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . DI::baseUrl() . '/feed/' . $parameters['nickname'] . '/activity" title="' . DI::l10n()->t('%s\'s timeline', $a->profile['username']) . '"/>' . "\n";
-               $uri = urlencode('acct:' . $a->profile['nickname'] . '@' . DI::baseUrl()->getHostname() . (DI::baseUrl()->getUrlPath() ? '/' . DI::baseUrl()->getUrlPath() : ''));
-               DI::page()['htmlhead'] .= '<link rel="lrdd" type="application/xrd+xml" href="' . DI::baseUrl() . '/xrd/?uri=' . $uri . '" />' . "\n";
-               header('Link: <' . DI::baseUrl() . '/xrd/?uri=' . $uri . '>; rel="lrdd"; type="application/xrd+xml"', false);
-
-               $dfrn_pages = ['request', 'confirm', 'notify', 'poll'];
-               foreach ($dfrn_pages as $dfrn) {
-                       DI::page()['htmlhead'] .= '<link rel="dfrn-' . $dfrn . '" href="' . DI::baseUrl() . '/dfrn_' . $dfrn . '/' . $parameters['nickname'] . '" />' . "\n";
-               }
-               DI::page()['htmlhead'] .= '<link rel="dfrn-poco" href="' . DI::baseUrl() . '/poco/' . $parameters['nickname'] . '" />' . "\n";
-
-               $o = '';
-
-               Nav::setSelected('home');
-
-               $remote_contact = Session::getRemoteContactID($a->profile['profile_uid']);
-               $is_owner = local_user() == $a->profile['profile_uid'];
-
-               if (!empty($a->profile['hidewall']) && !$is_owner && !$remote_contact) {
-                       notice(DI::l10n()->t('Access to this profile has been restricted.'));
-                       return '';
-               }
-
-               $o .= ProfileModel::getTabs($a, 'profile', $is_owner, $a->profile['nickname']);
-
-               $o .= ProfileModel::getAdvanced($a);
-
-               Hook::callAll('profile_advanced', $o);
-
-               return $o;
+               return Status::content($parameters);
        }
 }