friendica/mod/display.php

372 lines
13 KiB
PHP
Raw Normal View History

2010-09-09 05:14:17 +02:00
<?php
/**
2022-01-02 08:27:47 +01:00
* @copyright Copyright (C) 2010-2022, 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/>.
*
*/
use Friendica\App;
use Friendica\Content\Text\BBCode;
use Friendica\Content\Widget;
2018-10-29 22:20:46 +01:00
use Friendica\Core\Logger;
use Friendica\Core\Renderer;
2019-09-28 11:59:08 +02:00
use Friendica\Core\Session;
use Friendica\Core\System;
use Friendica\Database\DBA;
use Friendica\DI;
2017-12-07 15:04:24 +01:00
use Friendica\Model\Contact;
use Friendica\Model\Item;
use Friendica\Model\Post;
2021-07-24 12:09:39 +02:00
use Friendica\Model\User;
use Friendica\Module\ActivityPub\Objects;
use Friendica\Module\Response;
use Friendica\Network\HTTPException;
use Friendica\Protocol\ActivityPub;
use Friendica\Protocol\DFRN;
2022-02-12 11:46:17 +01:00
use Friendica\Protocol\Diaspora;
2022-06-06 12:41:07 +02:00
use Friendica\Util\DateTimeFormat;
2017-06-07 10:46:38 +02:00
function display_init(App $a)
{
if (ActivityPub::isRequest()) {
(new Objects(DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), $_SERVER, ['guid' => DI::args()->getArgv()[1] ?? null]))->run();
}
if (DI::config()->get('system', 'block_public') && !Session::isAuthenticated()) {
return;
}
$nick = ((DI::args()->getArgc() > 1) ? DI::args()->getArgv()[1] : '');
2018-06-19 19:58:28 +02:00
$item = null;
$item_user = local_user();
2021-07-24 12:33:58 +02:00
$fields = ['uri-id', 'parent-uri-id', 'author-id', 'author-link', 'body', 'uid', 'guid', 'gravity'];
// If there is only one parameter, then check if this parameter could be a guid
if (DI::args()->getArgc() == 2) {
2021-07-24 12:33:58 +02:00
$nick = '';
// Does the local user have this item?
if (local_user()) {
$item = Post::selectFirstForUser(local_user(), $fields, ['guid' => DI::args()->getArgv()[1], 'uid' => local_user()]);
2018-07-21 14:46:04 +02:00
if (DBA::isResult($item)) {
$nick = $a->getLoggedInUserNickname();
}
2019-09-28 17:31:36 +02:00
}
// Is this item private but could be visible to the remove visitor?
2019-09-28 17:31:36 +02:00
if (!DBA::isResult($item) && remote_user()) {
$item = Post::selectFirst($fields, ['guid' => DI::args()->getArgv()[1], 'private' => Item::PRIVATE, 'origin' => true]);
if (DBA::isResult($item)) {
2019-09-28 17:31:36 +02:00
if (!Contact::isFollower(remote_user(), $item['uid'])) {
$item = null;
} else {
$item_user = $item['uid'];
}
}
}
// Is it an item with uid=0?
2018-07-21 14:46:04 +02:00
if (!DBA::isResult($item)) {
$item = Post::selectFirstForUser(local_user(), $fields, ['guid' => DI::args()->getArgv()[1], 'private' => [Item::PUBLIC, Item::UNLISTED], 'uid' => 0]);
}
} elseif (DI::args()->getArgc() >= 3 && $nick == 'feed-item') {
$uri_id = DI::args()->getArgv()[2];
2021-01-27 11:01:42 +01:00
if (substr($uri_id, -5) == '.atom') {
$uri_id = substr($uri_id, 0, -5);
}
2021-01-27 11:01:42 +01:00
$item = Post::selectFirstForUser(local_user(), $fields, ['uri-id' => $uri_id, 'private' => [Item::PUBLIC, Item::UNLISTED], 'uid' => 0]);
}
2017-09-19 13:53:19 +02:00
2018-07-21 14:46:04 +02:00
if (!DBA::isResult($item)) {
return;
}
2017-09-19 13:53:19 +02:00
if (DI::args()->getArgc() >= 3 && $nick == 'feed-item') {
displayShowFeed($item['uri-id'], $item['uid'], DI::args()->getArgc() > 3 && DI::args()->getArgv()[3] == 'conversation.atom');
}
2017-09-19 13:53:19 +02:00
2018-07-08 11:37:05 +02:00
if (!empty($_SERVER['HTTP_ACCEPT']) && strstr($_SERVER['HTTP_ACCEPT'], 'application/atom+xml')) {
2022-08-30 21:45:30 +02:00
Logger::debug('Directly serving XML', ['uri-id' => $item['uri-id']]);
2021-01-27 11:01:42 +01:00
displayShowFeed($item['uri-id'], $item['uid'], false);
}
if ($item['gravity'] != GRAVITY_PARENT) {
$parent = Post::selectFirstForUser($item_user, $fields, ['uid' => [0, $item_user], 'uri-id' => $item['parent-uri-id']], ['order' => ['uid' => true]]);
$item = $parent ?: $item;
}
$author = display_fetchauthor($item);
if (\Friendica\Util\Network::isLocalLink($author['url'])) {
\Friendica\Model\Profile::load(DI::app(), $author['nick'], false);
} else {
DI::page()['aside'] = Widget\VCard::getHTML($author);
}
2022-06-06 12:41:07 +02:00
$a->setProfileOwner($item['uid']);
}
2021-07-24 12:33:58 +02:00
function display_fetchauthor($item)
2018-06-19 19:57:45 +02:00
{
2022-02-12 11:46:17 +01:00
if (Diaspora::isReshare($item['body'], true)) {
$shared = Item::getShareArray($item);
if (!empty($shared['profile'])) {
2022-02-12 11:46:17 +01:00
$contact = Contact::getByURLForUser($shared['profile'], local_user());
}
2021-07-24 12:33:58 +02:00
}
2022-02-12 11:46:17 +01:00
if (empty($contact)) {
$contact = Contact::getById($item['author-id']);
}
2022-02-12 11:46:17 +01:00
return $contact;
}
2018-06-19 19:57:45 +02:00
function display_content(App $a, $update = false, $update_uid = 0)
{
if (DI::config()->get('system','block_public') && !Session::isAuthenticated()) {
throw new HTTPException\ForbiddenException(DI::l10n()->t('Public access denied.'));
2013-01-12 13:58:54 +01:00
}
$o = '';
$item = null;
$force = (bool)($_REQUEST['force'] ?? false);
if ($update) {
2021-01-27 11:01:42 +01:00
$uri_id = $_REQUEST['uri_id'];
$item = Post::selectFirst(['uid', 'parent-uri-id'], ['uri-id' => $uri_id, 'uid' => [0, $update_uid]], ['order' => ['uid' => true]]);
if (!empty($item)) {
if ($item['uid'] != 0) {
2021-07-24 22:34:07 +02:00
$a->setProfileOwner($item['uid']);
} else {
2021-07-24 22:34:07 +02:00
$a->setProfileOwner($update_uid);
}
$parent_uri_id = $item['parent-uri-id'];
}
2022-06-07 19:34:19 +02:00
if (empty($_REQUEST['force'])) {
$browser_update = intval(DI::pConfig()->get($update_uid, 'system', 'update_interval'));
if (!empty($browser_update)) {
$update_date = date(DateTimeFormat::MYSQL, time() - ($browser_update / 500));
if (!Post::exists(["`parent-uri-id` = ? AND `uid` IN (?, ?) AND `received` > ?", $parent_uri_id, 0, $update_uid, $update_date])) {
Logger::debug('No updated content', ['uri-id' => $uri_id, 'uid' => $update_uid, 'updated' => $update_date]);
return '';
} else {
Logger::debug('Updated content found', ['uri-id' => $uri_id, 'uid' => $update_uid, 'updated' => $update_date]);
}
}
} else {
Logger::debug('Forced content update', ['uri-id' => $uri_id, 'uid' => $update_uid]);
2022-06-06 12:41:07 +02:00
}
} else {
$uri_id = ((DI::args()->getArgc() > 2) ? DI::args()->getArgv()[2] : 0);
2021-01-27 11:01:42 +01:00
$parent_uri_id = $uri_id;
if (DI::args()->getArgc() == 2) {
2021-01-27 11:01:42 +01:00
$fields = ['uri-id', 'parent-uri-id', 'uid'];
if (local_user()) {
$condition = ['guid' => DI::args()->getArgv()[1], 'uid' => [0, local_user()]];
$item = Post::selectFirstForUser(local_user(), $fields, $condition, ['order' => ['uid' => true]]);
2018-07-21 14:46:04 +02:00
if (DBA::isResult($item)) {
2021-01-27 11:01:42 +01:00
$uri_id = $item['uri-id'];
$parent_uri_id = $item['parent-uri-id'];
}
2019-09-28 17:31:36 +02:00
}
2021-01-27 11:01:42 +01:00
if (($parent_uri_id == 0) && remote_user()) {
$item = Post::selectFirst($fields, ['guid' => DI::args()->getArgv()[1], 'private' => Item::PRIVATE, 'origin' => true]);
2019-09-28 17:31:36 +02:00
if (DBA::isResult($item) && Contact::isFollower(remote_user(), $item['uid'])) {
2021-01-27 11:01:42 +01:00
$uri_id = $item['uri-id'];
$parent_uri_id = $item['parent-uri-id'];
}
}
2021-01-27 11:01:42 +01:00
if ($parent_uri_id == 0) {
$condition = ['private' => [Item::PUBLIC, Item::UNLISTED], 'guid' => DI::args()->getArgv()[1], 'uid' => 0];
$item = Post::selectFirstForUser(local_user(), $fields, $condition);
2018-07-21 14:46:04 +02:00
if (DBA::isResult($item)) {
2021-01-27 11:01:42 +01:00
$uri_id = $item['uri-id'];
$parent_uri_id = $item['parent-uri-id'];
}
}
}
2016-03-13 13:04:12 +01:00
}
if (empty($item)) {
throw new HTTPException\NotFoundException(DI::l10n()->t('The requested item doesn\'t exist or has been deleted.'));
2010-09-09 05:14:17 +02:00
}
if (!DI::pConfig()->get(local_user(), 'system', 'detailed_notif')) {
2021-09-18 06:03:32 +02:00
DI::notification()->setAllSeenForUser(local_user(), ['parent-uri-id' => $item['parent-uri-id']]);
DI::notify()->setAllSeenForUser(local_user(), ['parent-uri-id' => $item['parent-uri-id']]);
}
2017-06-06 23:56:25 +02:00
// We are displaying an "alternate" link if that post was public. See issue 2864
2021-01-27 11:01:42 +01:00
$is_public = Post::exists(['uri-id' => $uri_id, 'private' => [Item::PUBLIC, Item::UNLISTED]]);
2017-08-12 10:55:50 +02:00
if ($is_public) {
// For the atom feed the nickname doesn't matter at all, we only need the item id.
2021-01-27 11:01:42 +01:00
$alternate = DI::baseUrl().'/display/feed-item/'.$uri_id.'.atom';
$conversation = DI::baseUrl().'/display/feed-item/' . $parent_uri_id . '/conversation.atom';
2017-06-06 23:56:25 +02:00
} else {
$alternate = '';
$conversation = '';
2017-06-06 23:56:25 +02:00
}
DI::page()['htmlhead'] .= Renderer::replaceMacros(Renderer::getMarkupTemplate('display-head.tpl'),
['$alternate' => $alternate,
'$conversation' => $conversation]);
$is_remote_contact = false;
$item_uid = local_user();
$page_uid = 0;
2010-09-09 05:14:17 +02:00
$parent = null;
if (!local_user() && !empty($parent_uri_id)) {
2021-01-27 11:01:42 +01:00
$parent = Post::selectFirst(['uid'], ['uri-id' => $parent_uri_id, 'wall' => true]);
}
if (DBA::isResult($parent)) {
$page_uid = $page_uid ?? 0 ?: $parent['uid'];
$is_remote_contact = Session::getRemoteContactID($page_uid);
if ($is_remote_contact) {
$item_uid = $parent['uid'];
2010-09-09 05:14:17 +02:00
}
} else {
$page_uid = $item['uid'];
2010-09-09 05:14:17 +02:00
}
2021-07-24 13:49:11 +02:00
if (!empty($page_uid) && ($page_uid != local_user())) {
2021-07-24 12:09:39 +02:00
$page_user = User::getById($page_uid);
}
2019-09-28 07:37:24 +02:00
2021-07-24 13:49:11 +02:00
$is_owner = local_user() && (in_array($page_uid, [local_user(), 0]));
2021-07-24 12:09:39 +02:00
if (!empty($page_user['hidewall']) && !$is_owner && !$is_remote_contact) {
throw new HTTPException\ForbiddenException(DI::l10n()->t('Access to this profile has been restricted.'));
}
2016-02-24 07:22:32 +01:00
// We need the editor here to be able to reshare an item.
if ($is_owner && !$update) {
$o .= DI::conversation()->statusEditor([], 0, true);
}
$sql_extra = Item::getPermissionsSQLByUserId($page_uid);
if (local_user() && (local_user() == $page_uid)) {
2021-01-27 11:01:42 +01:00
$condition = ['parent-uri-id' => $parent_uri_id, 'uid' => local_user(), 'unseen' => true];
$unseen = Post::exists($condition);
} else {
$unseen = false;
}
if ($update && !$unseen && !$force) {
return '';
}
2021-01-27 11:01:42 +01:00
$condition = ["`uri-id` = ? AND `uid` IN (0, ?) " . $sql_extra, $uri_id, $item_uid];
$fields = ['parent-uri-id', 'body', 'title', 'author-name', 'author-avatar', 'plink', 'author-id', 'owner-id', 'contact-id'];
$item = Post::selectFirstForUser($page_uid, $fields, $condition);
2010-09-09 05:14:17 +02:00
if (!DBA::isResult($item)) {
throw new HTTPException\NotFoundException(DI::l10n()->t('The requested item doesn\'t exist or has been deleted.'));
}
2021-01-27 11:01:42 +01:00
$item['uri-id'] = $item['parent-uri-id'];
if ($unseen) {
2021-01-27 11:01:42 +01:00
$condition = ['parent-uri-id' => $parent_uri_id, 'uid' => local_user(), 'unseen' => true];
2018-06-18 07:19:28 +02:00
Item::update(['unseen' => false], $condition);
2017-12-21 09:58:36 +01:00
}
2021-01-27 11:01:42 +01:00
if (!$update && local_user()) {
$o .= "<script> var netargs = '?uri_id=" . $item['uri-id'] . "'; </script>";
2017-12-21 09:58:36 +01:00
}
$o .= DI::conversation()->create([$item], 'display', $update_uid, false, 'commented', $item_uid);
2017-12-21 09:58:36 +01:00
// Preparing the meta header
2021-07-24 12:33:58 +02:00
$description = trim(BBCode::toPlaintext($item['body']));
$title = trim(BBCode::toPlaintext($item['title'] ?? ''));
2021-07-24 12:33:58 +02:00
$author_name = $item['author-name'];
2021-07-24 12:33:58 +02:00
$image = DI::baseUrl()->remove($item['author-avatar']);
2021-07-24 12:33:58 +02:00
if ($title == '') {
2017-12-21 09:58:36 +01:00
$title = $author_name;
2010-09-09 05:14:17 +02:00
}
2017-12-21 09:58:36 +01:00
// Limit the description to 160 characters
if (strlen($description) > 160) {
$description = substr($description, 0, 157) . '...';
2010-09-17 12:10:19 +02:00
}
2012-03-07 01:28:52 +01:00
2017-12-21 09:58:36 +01:00
$description = htmlspecialchars($description, ENT_COMPAT, 'UTF-8', true); // allow double encoding here
$title = htmlspecialchars($title, ENT_COMPAT, 'UTF-8', true); // allow double encoding here
$author_name = htmlspecialchars($author_name, ENT_COMPAT, 'UTF-8', true); // allow double encoding here
$page = DI::page();
if (DBA::exists('contact', ['unsearchable' => true, 'id' => [$item['contact-id'], $item['author-id'], $item['owner-id']]])) {
$page['htmlhead'] .= '<meta content="noindex, noarchive" name="robots" />' . "\n";
}
DI::page()['htmlhead'] .= '<meta name="author" content="'.$author_name.'" />'."\n";
$page['htmlhead'] .= '<meta name="title" content="'.$title.'" />'."\n";
$page['htmlhead'] .= '<meta name="fulltitle" content="'.$title.'" />'."\n";
$page['htmlhead'] .= '<meta name="description" content="'.$description.'" />'."\n";
2017-12-21 09:58:36 +01:00
// Schema.org microdata
$page['htmlhead'] .= '<meta itemprop="name" content="'.$title.'" />'."\n";
$page['htmlhead'] .= '<meta itemprop="description" content="'.$description.'" />'."\n";
$page['htmlhead'] .= '<meta itemprop="image" content="'.$image.'" />'."\n";
$page['htmlhead'] .= '<meta itemprop="author" content="'.$author_name.'" />'."\n";
2017-12-21 09:58:36 +01:00
// Twitter cards
$page['htmlhead'] .= '<meta name="twitter:card" content="summary" />'."\n";
$page['htmlhead'] .= '<meta name="twitter:title" content="'.$title.'" />'."\n";
$page['htmlhead'] .= '<meta name="twitter:description" content="'.$description.'" />'."\n";
$page['htmlhead'] .= '<meta name="twitter:image" content="'.DI::baseUrl().'/'.$image.'" />'."\n";
$page['htmlhead'] .= '<meta name="twitter:url" content="'.$item["plink"].'" />'."\n";
2017-12-21 09:58:36 +01:00
// Dublin Core
$page['htmlhead'] .= '<meta name="DC.title" content="'.$title.'" />'."\n";
$page['htmlhead'] .= '<meta name="DC.description" content="'.$description.'" />'."\n";
2017-12-21 09:58:36 +01:00
// Open Graph
$page['htmlhead'] .= '<meta property="og:type" content="website" />'."\n";
$page['htmlhead'] .= '<meta property="og:title" content="'.$title.'" />'."\n";
$page['htmlhead'] .= '<meta property="og:image" content="'.DI::baseUrl().'/'.$image.'" />'."\n";
$page['htmlhead'] .= '<meta property="og:url" content="'.$item["plink"].'" />'."\n";
$page['htmlhead'] .= '<meta property="og:description" content="'.$description.'" />'."\n";
$page['htmlhead'] .= '<meta name="og:article:author" content="'.$author_name.'" />'."\n";
2017-12-21 09:58:36 +01:00
// article:tag
2010-09-09 05:14:17 +02:00
return $o;
2010-09-17 12:10:19 +02:00
}
2021-01-27 11:01:42 +01:00
function displayShowFeed(int $uri_id, int $uid, bool $conversation)
2018-06-19 19:57:45 +02:00
{
2021-01-27 11:01:42 +01:00
$xml = DFRN::itemFeed($uri_id, $uid, $conversation);
2017-09-19 13:53:19 +02:00
if ($xml == '') {
throw new HTTPException\InternalServerErrorException(DI::l10n()->t('The feed for this item is unavailable.'));
2017-09-19 13:53:19 +02:00
}
System::httpExit($xml, Response::TYPE_ATOM);
2017-09-19 13:53:19 +02:00
}