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)) {
$this->page['aside'] = '';
$displayNotFound = new DisplayNotFound($this->l10n, $this->baseUrl, $this->args, $this->logger, $this->profiler, $this->response, $this->server, $this->parameters);
return $displayNotFound->content();
}
if ($item['gravity'] != Item::GRAVITY_PARENT) {
$parent = Post::selectFirst($fields, [
'uid' => [0, $itemUid],
'uri-id' => $item['parent-uri-id']
], ['order' => ['uid' => true]]);
$item = $parent ?: $item;
}
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 .= "";
}
$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 ($this->baseUrl->isLocalUrl($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
{
$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'];
if ($this->session->getRemoteContactID($pageUid)) {
$itemUid = $parent['uid'];
}
} else {
$pageUid = $item['uid'];
}
if (!empty($pageUid) && ($pageUid != $this->session->getLocalUserId())) {
$page_user = User::getById($pageUid, ['nickname', 'hidewall']);
}
if (!empty($page_user['hidewall']) && !$this->session->isAuthenticated()) {
$this->baseUrl->redirect('profile/' . $page_user['nickname'] . '/restricted');
}
$sql_extra = Item::getPermissionsSQLByUserId($pageUid);
if ($this->session->getLocalUserId() && ($this->session->getLocalUserId() == $pageUid)) {
$unseen = Post::exists([
'parent-uri-id' => $item['parent-uri-id'],
'uid' => $this->session->getLocalUserId(),
'unseen' => true
]);
} else {
$unseen = false;
}
if ($update && !$unseen && !$force) {
return '';
}
$condition = ["`uri-id` = ? AND `uid` IN (0, ?) " . $sql_extra, $item['uri-id'], $itemUid];
$fields = [
'parent-uri-id', 'body', 'title', 'author-name', 'author-avatar', 'plink', 'author-id',
'owner-id', 'contact-id'
];
$item = Post::selectFirstForUser($pageUid, $fields, $condition);
if (empty($item)) {
$this->page['aside'] = '';
$displayNotFound = new DisplayNotFound($this->l10n, $this->baseUrl, $this->args, $this->logger, $this->profiler, $this->response, $this->server, $this->parameters);
return $displayNotFound->content();
}
$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 = '';
$is_owner = $this->session->getLocalUserId() && (in_array($pageUid, [$this->session->getLocalUserId(), 0]));
// 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->render([$item], Conversation::MODE_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.
$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)
]);
}
}
/**
* Adds tags to the HTML output based on an item
*
* @param array $item The item with the information for the 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;
if (Contact::exists([
'unsearchable' => true, 'id' => [$item['contact-id'], $item['author-id'], $item['owner-id']]
])) {
$page['htmlhead'] .= "\n";
}
$page['htmlhead'] .= sprintf("\n", $author_name);
$page['htmlhead'] .= sprintf("\n", $title);
$page['htmlhead'] .= sprintf("\n", $title);
$page['htmlhead'] .= sprintf("\n", $description);
// Schema.org microdata
$page['htmlhead'] .= sprintf("\n", $title);
$page['htmlhead'] .= sprintf("\n", $description);
$page['htmlhead'] .= sprintf("\n", $image);
$page['htmlhead'] .= sprintf("\n", $author_name);
// Twitter cards
$page['htmlhead'] .= "\n";
$page['htmlhead'] .= sprintf("\n", $title);
$page['htmlhead'] .= sprintf("\n", $description);
$page['htmlhead'] .= sprintf("\n", $this->baseUrl, $image);
$page['htmlhead'] .= sprintf("\n", $item["plink"]);
// Dublin Core
$page['htmlhead'] .= sprintf("\n", $title);
$page['htmlhead'] .= sprintf("\n", $description);
// Open Graph
$page['htmlhead'] .= "\n";
$page['htmlhead'] .= sprintf("\n", $title);
$page['htmlhead'] .= sprintf("\n", $this->baseUrl, $image);
$page['htmlhead'] .= sprintf("\n", $item["plink"]);
$page['htmlhead'] .= sprintf("\n", $description);
$page['htmlhead'] .= sprintf("\n", $author_name);
// article:tag
}
}