2022-11-14 23:52:38 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @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/>.
|
2022-11-15 19:15:25 +00:00
|
|
|
*
|
2022-11-14 23:52:38 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Module\Item;
|
|
|
|
|
|
|
|
use Friendica\App;
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Content\Conversation;
|
|
|
|
use Friendica\Content\Item as ContentItem;
|
|
|
|
use Friendica\Content\Text\BBCode;
|
|
|
|
use Friendica\Core\Config\Capability\IManageConfigValues;
|
|
|
|
use Friendica\Core\L10n;
|
|
|
|
use Friendica\Core\PConfig\Capability\IManagePersonalConfigValues;
|
|
|
|
use Friendica\Core\Renderer;
|
|
|
|
use Friendica\Core\Session\Capability\IHandleUserSessions;
|
|
|
|
use Friendica\Model\Contact;
|
|
|
|
use Friendica\Model\Item;
|
|
|
|
use Friendica\Model\Post;
|
|
|
|
use Friendica\Model\Profile;
|
|
|
|
use Friendica\Model\User;
|
|
|
|
use Friendica\Module\Response;
|
|
|
|
use Friendica\Navigation\Notifications\Repository\Notification;
|
|
|
|
use Friendica\Navigation\Notifications\Repository\Notify;
|
|
|
|
use Friendica\Protocol\ActivityPub;
|
|
|
|
use Friendica\Util\Network;
|
|
|
|
use Friendica\Util\Profiler;
|
|
|
|
use Friendica\Network\HTTPException;
|
|
|
|
use Friendica\Content\Widget;
|
|
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
|
2022-11-15 18:53:53 +00:00
|
|
|
/**
|
|
|
|
* Controller to display one item and its conversation
|
|
|
|
*/
|
2022-11-14 23:52:38 +00:00
|
|
|
class Display extends BaseModule
|
|
|
|
{
|
|
|
|
/** @var App\Page */
|
|
|
|
protected $page;
|
|
|
|
/** @var IManageConfigValues */
|
|
|
|
protected $config;
|
|
|
|
/** @var IManagePersonalConfigValues */
|
|
|
|
protected $pConfig;
|
|
|
|
/** @var IHandleUserSessions */
|
|
|
|
protected $session;
|
|
|
|
/** @var App */
|
|
|
|
protected $app;
|
|
|
|
/** @var ContentItem */
|
|
|
|
protected $contentItem;
|
|
|
|
/** @var Conversation */
|
|
|
|
protected $conversation;
|
|
|
|
/** @var Notification */
|
|
|
|
protected $notification;
|
|
|
|
/** @var Notify */
|
|
|
|
protected $notify;
|
|
|
|
|
|
|
|
public function __construct(L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, IManageConfigValues $config, IManagePersonalConfigValues $pConfig, IHandleUserSessions $session, App $app, App\Page $page, ContentItem $contentItem, Conversation $conversation, Notification $notification, Notify $notify, array $server, array $parameters = [])
|
|
|
|
{
|
|
|
|
parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
|
|
|
|
|
|
|
|
$this->page = $page;
|
|
|
|
$this->config = $config;
|
|
|
|
$this->pConfig = $pConfig;
|
|
|
|
$this->session = $session;
|
|
|
|
$this->app = $app;
|
|
|
|
$this->contentItem = $contentItem;
|
|
|
|
$this->conversation = $conversation;
|
|
|
|
$this->notification = $notification;
|
|
|
|
$this->notify = $notify;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function content(array $request = []): string
|
|
|
|
{
|
|
|
|
if (ActivityPub::isRequest()) {
|
|
|
|
$this->baseUrl->redirect(str_replace('display/', 'objects/', $this->args->getQueryString()));
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->config->get('system', 'block_public') && !$this->session->isAuthenticated()) {
|
|
|
|
throw new HTTPException\UnauthorizedException($this->t('Access denied.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$guid = $this->parameters['guid'] ?? 0;
|
|
|
|
|
|
|
|
$item = null;
|
|
|
|
$itemUid = $this->session->getLocalUserId();
|
|
|
|
|
|
|
|
$fields = ['uri-id', 'parent-uri-id', 'author-id', 'author-link', 'body', 'uid', 'guid', 'gravity'];
|
|
|
|
|
|
|
|
// Does the local user have this item?
|
|
|
|
if ($this->session->getLocalUserId()) {
|
|
|
|
$item = Post::selectFirstForUser($this->session->getLocalUserId(), $fields, [
|
|
|
|
'guid' => $guid,
|
|
|
|
'uid' => $this->session->getLocalUserId()
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Is this item private but could be visible to the remove visitor?
|
|
|
|
if (empty($item) && $this->session->getRemoteUserId()) {
|
|
|
|
$item = Post::selectFirst($fields, ['guid' => $guid, 'private' => Item::PRIVATE, 'origin' => true]);
|
|
|
|
if (!empty($item)) {
|
|
|
|
if (!Contact::isFollower($this->session->getRemoteUserId(), $item['uid'])) {
|
|
|
|
$item = null;
|
|
|
|
} else {
|
|
|
|
$itemUid = $item['uid'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Is it an item with uid = 0?
|
|
|
|
if (empty($item)) {
|
|
|
|
$item = Post::selectFirstForUser($this->session->getLocalUserId(), $fields, [
|
|
|
|
'guid' => $guid,
|
|
|
|
'private' => [Item::PUBLIC, Item::UNLISTED],
|
|
|
|
'uid' => 0
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($item)) {
|
|
|
|
throw new HTTPException\NotFoundException($this->t('The requested item doesn\'t exist or has been deleted.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($item['gravity'] != Item::GRAVITY_PARENT) {
|
|
|
|
$parent = Post::selectFirstForUser($itemUid, $fields, [
|
|
|
|
'uid' => [0, $itemUid],
|
|
|
|
'uri-id' => $item['parent-uri-id']
|
|
|
|
], ['order' => ['uid' => true]]);
|
2022-11-15 00:10:49 +00:00
|
|
|
|
|
|
|
$item = $parent ?: $item;
|
2022-11-14 23:52:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!$this->pConfig->get($this->session->getLocalUserId(), 'system', 'detailed_notif')) {
|
|
|
|
$this->notification->setAllSeenForUser($this->session->getLocalUserId(), ['parent-uri-id' => $item['parent-uri-id']]);
|
|
|
|
$this->notify->setAllSeenForUser($this->session->getLocalUserId(), ['parent-uri-id' => $item['parent-uri-id']]);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->displaySidebar($item);
|
|
|
|
$this->displayHead($item['uri-id'], $item['parent-uri-id']);
|
|
|
|
|
|
|
|
$output = '';
|
|
|
|
|
|
|
|
// add the uri-id to the update_display parameter
|
|
|
|
if ($this->session->getLocalUserId()) {
|
|
|
|
$output .= "<script> var netargs = '?uri_id=" . $item['uri-id'] . "'; </script>";
|
|
|
|
}
|
|
|
|
|
|
|
|
$output .= $this->getDisplayData($item);
|
|
|
|
|
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads the content for the sidebar of the display page
|
|
|
|
*
|
|
|
|
* @param array $item The current item
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
* @throws HTTPException\InternalServerErrorException
|
|
|
|
* @throws HTTPException\NotFoundException
|
|
|
|
* @throws \ImagickException
|
|
|
|
*/
|
|
|
|
protected function displaySidebar(array $item)
|
|
|
|
{
|
|
|
|
$shared = $this->contentItem->getSharedPost($item, ['author-link']);
|
|
|
|
if (!empty($shared) && empty($shared['comment'])) {
|
|
|
|
$author = Contact::getByURLForUser($shared['post']['author-link'], $this->session->getLocalUserId());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($contact)) {
|
|
|
|
$author = Contact::getById($item['author-id']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Network::isLocalLink($author['url'])) {
|
|
|
|
Profile::load($this->app, $author['nick'], false);
|
|
|
|
} else {
|
|
|
|
$this->page['aside'] = Widget\VCard::getHTML($author);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->app->setProfileOwner($item['uid']);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getDisplayData(array $item, bool $update = false, int $updateUid = 0, bool $force = false): string
|
|
|
|
{
|
|
|
|
$isRemoteContact = false;
|
|
|
|
$itemUid = $this->session->getLocalUserId();
|
|
|
|
|
|
|
|
$parent = null;
|
|
|
|
if (!$this->session->getLocalUserId() && !empty($item['parent-uri-id'])) {
|
|
|
|
$parent = Post::selectFirst(['uid'], ['uri-id' => $item['parent-uri-id'], 'wall' => true]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($parent)) {
|
|
|
|
$pageUid = $parent['uid'];
|
|
|
|
$isRemoteContact = $this->session->getRemoteContactID($pageUid);
|
|
|
|
if ($isRemoteContact) {
|
|
|
|
$itemUid = $parent['uid'];
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$pageUid = $item['uid'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($pageUid) && ($pageUid != $this->session->getLocalUserId())) {
|
|
|
|
$page_user = User::getById($pageUid, ['hidewall']);
|
|
|
|
}
|
|
|
|
|
|
|
|
$is_owner = $this->session->getLocalUserId() && (in_array($pageUid, [$this->session->getLocalUserId(), 0]));
|
|
|
|
|
|
|
|
if (!empty($page_user['hidewall']) && !$is_owner && !$isRemoteContact) {
|
|
|
|
throw new HTTPException\ForbiddenException($this->t('Access to this profile has been restricted.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$sql_extra = Item::getPermissionsSQLByUserId($pageUid);
|
|
|
|
|
|
|
|
if ($this->session->getLocalUserId() && ($this->session->getLocalUserId() == $pageUid)) {
|
2022-11-15 00:10:49 +00:00
|
|
|
$unseen = Post::exists([
|
2022-11-14 23:52:38 +00:00
|
|
|
'parent-uri-id' => $item['parent-uri-id'],
|
|
|
|
'uid' => $this->session->getLocalUserId(),
|
|
|
|
'unseen' => true
|
2022-11-15 00:10:49 +00:00
|
|
|
]);
|
2022-11-14 23:52:38 +00:00
|
|
|
} else {
|
|
|
|
$unseen = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($update && !$unseen && !$force) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
$condition = ["`uri-id` = ? AND `uid` IN (0, ?) " . $sql_extra, $item['uri-id'], $itemUid];
|
2022-11-15 00:10:49 +00:00
|
|
|
$fields = [
|
|
|
|
'parent-uri-id', 'body', 'title', 'author-name', 'author-avatar', 'plink', 'author-id',
|
|
|
|
'owner-id', 'contact-id'
|
|
|
|
];
|
|
|
|
|
|
|
|
$item = Post::selectFirstForUser($pageUid, $fields, $condition);
|
2022-11-14 23:52:38 +00:00
|
|
|
|
|
|
|
if (empty($item)) {
|
|
|
|
throw new HTTPException\NotFoundException($this->t('The requested item doesn\'t exist or has been deleted.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$item['uri-id'] = $item['parent-uri-id'];
|
|
|
|
|
|
|
|
if ($unseen) {
|
|
|
|
$condition = [
|
|
|
|
'parent-uri-id' => $item['parent-uri-id'],
|
|
|
|
'uid' => $this->session->getLocalUserId(),
|
|
|
|
'unseen' => true
|
|
|
|
];
|
|
|
|
Item::update(['unseen' => false], $condition);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->addMetaTags($item);
|
|
|
|
|
|
|
|
$output = '';
|
|
|
|
|
|
|
|
// We need the editor here to be able to reshare an item.
|
|
|
|
if ($is_owner && !$update) {
|
|
|
|
$output .= $this->conversation->statusEditor([], 0, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
$output .= $this->conversation->create([$item], 'display', $updateUid, false, 'commented', $itemUid);
|
|
|
|
|
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We are displaying an "alternate" link if that post was public. See issue 2864
|
|
|
|
protected function displayHead(string $uriId, string $parentUriId)
|
|
|
|
{
|
|
|
|
if (Post::exists(['uri-id' => $uriId, 'private' => [Item::PUBLIC, Item::UNLISTED]])) {
|
|
|
|
// For the atom feed the nickname doesn't matter at all, we only need the item id.
|
2022-11-15 00:10:49 +00:00
|
|
|
$this->page['htmlhead'] .= Renderer::replaceMacros(Renderer::getMarkupTemplate('display-head.tpl'), [
|
|
|
|
'$alternate' => sprintf('display/feed-item/%s.atom', $uriId),
|
|
|
|
'$conversation' => sprintf('display/feed-item/%s/conversation.atom', $parentUriId)
|
|
|
|
]);
|
2022-11-14 23:52:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds <meta> tags to the HTML output based on an item
|
|
|
|
*
|
|
|
|
* @param array $item The item with the information for the <meta> tags
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
|
|
|
protected function addMetaTags(array $item)
|
|
|
|
{
|
|
|
|
// Preparing the meta header
|
|
|
|
$description = trim(BBCode::toPlaintext($item['body']));
|
|
|
|
$title = trim(BBCode::toPlaintext($item['title'] ?? ''));
|
|
|
|
$author_name = $item['author-name'];
|
|
|
|
|
|
|
|
$image = $this->baseUrl->remove($item['author-avatar']);
|
|
|
|
|
|
|
|
if ($title === '') {
|
|
|
|
$title = $author_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Limit the description to 160 characters
|
|
|
|
if (strlen($description) > 160) {
|
|
|
|
$description = substr($description, 0, 157) . '...';
|
|
|
|
}
|
|
|
|
|
|
|
|
$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 = $this->page;
|
|
|
|
|
2022-11-15 00:10:49 +00:00
|
|
|
if (Contact::exists([
|
2022-11-15 19:15:25 +00:00
|
|
|
'unsearchable' => true, 'id' => [$item['contact-id'], $item['author-id'], $item['owner-id']]
|
2022-11-15 00:10:49 +00:00
|
|
|
])) {
|
2022-11-14 23:52:38 +00:00
|
|
|
$page['htmlhead'] .= "<meta content=\"noindex, noarchive\" name=\"robots\" />\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
$page['htmlhead'] .= sprintf("<meta name=\"author\" content=\"%s\" />\n", $author_name);
|
|
|
|
$page['htmlhead'] .= sprintf("<meta name=\"title\" content=\"%s\" />\n", $title);
|
|
|
|
$page['htmlhead'] .= sprintf("<meta name=\"fulltitle\" content=\"%s\" />\n", $title);
|
|
|
|
$page['htmlhead'] .= sprintf("<meta name=\"description\" content=\"%s\" />\n", $description);
|
|
|
|
|
|
|
|
// Schema.org microdata
|
|
|
|
$page['htmlhead'] .= sprintf("<meta itemprop=\"name\" content=\"%s\" />\n", $title);
|
|
|
|
$page['htmlhead'] .= sprintf("<meta itemprop=\"description\" content=\"%s\" />\n", $description);
|
|
|
|
$page['htmlhead'] .= sprintf("<meta itemprop=\"image\" content=\"%s\" />\n", $image);
|
|
|
|
$page['htmlhead'] .= sprintf("<meta itemprop=\"author\" content=\"%s\" />\n", $author_name);
|
|
|
|
|
|
|
|
// Twitter cards
|
|
|
|
$page['htmlhead'] .= "<meta name=\"twitter:card\" content=\"summary\" />\n";
|
|
|
|
$page['htmlhead'] .= sprintf("<meta name=\"twitter:title\" content=\"%s\" />\n", $title);
|
|
|
|
$page['htmlhead'] .= sprintf("<meta name=\"twitter:description\" content=\"%s\" />\n", $description);
|
|
|
|
$page['htmlhead'] .= sprintf("<meta name=\"twitter:image\" content=\"%s/%s\" />\n", $this->baseUrl, $image);
|
|
|
|
$page['htmlhead'] .= sprintf("<meta name=\"twitter:url\" content=\"%s\" />\n", $item["plink"]);
|
|
|
|
|
|
|
|
// Dublin Core
|
|
|
|
$page['htmlhead'] .= sprintf("<meta name=\"DC.title\" content=\"%s\" />\n", $title);
|
|
|
|
$page['htmlhead'] .= sprintf("<meta name=\"DC.description\" content=\"%s\" />\n", $description);
|
|
|
|
|
|
|
|
// Open Graph
|
|
|
|
$page['htmlhead'] .= "<meta property=\"og:type\" content=\"website\" />\n";
|
|
|
|
$page['htmlhead'] .= sprintf("<meta property=\"og:title\" content=\"%s\" />\n", $title);
|
|
|
|
$page['htmlhead'] .= sprintf("<meta property=\"og:image\" content=\"%s/%s\" />\n", $this->baseUrl, $image);
|
|
|
|
$page['htmlhead'] .= sprintf("<meta property=\"og:url\" content=\"%s\" />\n", $item["plink"]);
|
|
|
|
$page['htmlhead'] .= sprintf("<meta property=\"og:description\" content=\"%s\" />\n", $description);
|
|
|
|
$page['htmlhead'] .= sprintf("<meta name=\"og:article:author\" content=\"%s\" />\n", $author_name);
|
|
|
|
// article:tag
|
|
|
|
}
|
|
|
|
}
|