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