2010-09-09 05:14:17 +02:00
|
|
|
<?php
|
2018-01-15 03:22:39 +01:00
|
|
|
/**
|
2021-03-29 08:40:20 +02:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 16:18:46 +01: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 03:22:39 +01:00
|
|
|
*/
|
2018-02-05 01:23:49 +01:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-02-15 03:33:55 +01:00
|
|
|
use Friendica\Content\Text\BBCode;
|
2021-07-23 14:39:37 +02:00
|
|
|
use Friendica\Content\Widget;
|
2018-10-29 22:20:46 +01:00
|
|
|
use Friendica\Core\Logger;
|
2018-02-05 18:57:41 +01:00
|
|
|
use Friendica\Core\Protocol;
|
2018-10-31 15:35:50 +01:00
|
|
|
use Friendica\Core\Renderer;
|
2019-09-28 11:59:08 +02:00
|
|
|
use Friendica\Core\Session;
|
2018-07-20 14:19:26 +02:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-16 00:36:31 +01:00
|
|
|
use Friendica\DI;
|
2017-12-07 15:04:24 +01:00
|
|
|
use Friendica\Model\Contact;
|
2018-06-10 09:26:37 +02:00
|
|
|
use Friendica\Model\Item;
|
2021-01-16 05:11:28 +01:00
|
|
|
use Friendica\Model\Post;
|
2021-07-24 12:09:39 +02:00
|
|
|
use Friendica\Model\User;
|
2021-07-23 14:39:37 +02:00
|
|
|
use Friendica\Module\ActivityPub\Objects;
|
2019-05-02 05:16:10 +02:00
|
|
|
use Friendica\Network\HTTPException;
|
2018-09-11 09:07:56 +02:00
|
|
|
use Friendica\Protocol\ActivityPub;
|
2018-10-24 08:15:24 +02:00
|
|
|
use Friendica\Protocol\DFRN;
|
2017-06-07 10:46:38 +02:00
|
|
|
|
2018-01-15 03:22:39 +01:00
|
|
|
function display_init(App $a)
|
|
|
|
{
|
2018-12-09 14:09:49 +01:00
|
|
|
if (ActivityPub::isRequest()) {
|
2021-07-25 15:08:22 +02:00
|
|
|
Objects::rawContent(['guid' => DI::args()->getArgv()[1] ?? null]);
|
2018-12-09 14:09:49 +01:00
|
|
|
}
|
|
|
|
|
2020-01-19 21:21:13 +01:00
|
|
|
if (DI::config()->get('system', 'block_public') && !Session::isAuthenticated()) {
|
2011-04-22 02:29:47 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-07-25 15:08:22 +02:00
|
|
|
$nick = ((DI::args()->getArgc() > 1) ? DI::args()->getArgv()[1] : '');
|
2014-07-09 20:48:34 +02:00
|
|
|
|
2018-06-19 19:58:28 +02:00
|
|
|
$item = null;
|
2018-12-09 14:09:49 +01:00
|
|
|
$item_user = local_user();
|
2017-12-19 18:15:56 +01:00
|
|
|
|
2021-07-24 12:33:58 +02:00
|
|
|
$fields = ['uri-id', 'parent-uri-id', 'author-id', 'author-link', 'body', 'uid', 'guid', 'gravity'];
|
2018-06-18 22:36:34 +02:00
|
|
|
|
2014-07-09 20:48:34 +02:00
|
|
|
// If there is only one parameter, then check if this parameter could be a guid
|
2021-07-25 15:08:22 +02:00
|
|
|
if (DI::args()->getArgc() == 2) {
|
2021-07-24 12:33:58 +02:00
|
|
|
$nick = '';
|
2014-07-09 20:48:34 +02:00
|
|
|
|
|
|
|
// Does the local user have this item?
|
|
|
|
if (local_user()) {
|
2021-07-25 15:08:22 +02:00
|
|
|
$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)) {
|
2021-08-09 21:48:39 +02:00
|
|
|
$nick = $a->getLoggedInUserNickname();
|
2014-08-25 14:09:56 +02:00
|
|
|
}
|
2019-09-28 17:31:36 +02:00
|
|
|
}
|
|
|
|
|
2018-12-09 14:09:49 +01: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()) {
|
2021-07-25 15:08:22 +02:00
|
|
|
$item = Post::selectFirst($fields, ['guid' => DI::args()->getArgv()[1], 'private' => Item::PRIVATE, 'origin' => true]);
|
2018-12-09 14:09:49 +01:00
|
|
|
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'];
|
|
|
|
}
|
2018-12-09 14:09:49 +01:00
|
|
|
}
|
2014-07-09 20:48:34 +02:00
|
|
|
}
|
|
|
|
|
2017-10-12 21:54:49 +02:00
|
|
|
// Is it an item with uid=0?
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($item)) {
|
2021-07-25 15:08:22 +02:00
|
|
|
$item = Post::selectFirstForUser(local_user(), $fields, ['guid' => DI::args()->getArgv()[1], 'private' => [Item::PUBLIC, Item::UNLISTED], 'uid' => 0]);
|
2017-12-19 18:15:56 +01:00
|
|
|
}
|
2021-07-25 15:08:22 +02:00
|
|
|
} 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);
|
2019-04-28 07:13:39 +02:00
|
|
|
}
|
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-12-19 18:15:56 +01:00
|
|
|
}
|
2017-09-19 13:53:19 +02:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($item)) {
|
2019-05-02 05:16:10 +02:00
|
|
|
return;
|
2018-06-18 22:36:34 +02:00
|
|
|
}
|
2017-09-19 13:53:19 +02:00
|
|
|
|
2021-07-25 15:08:22 +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');
|
2018-06-18 22:36:34 +02:00
|
|
|
}
|
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')) {
|
2021-01-27 11:01:42 +01:00
|
|
|
Logger::log('Directly serving XML for uri-id '.$item['uri-id'], Logger::DEBUG);
|
|
|
|
displayShowFeed($item['uri-id'], $item['uid'], false);
|
2018-06-18 22:36:34 +02:00
|
|
|
}
|
|
|
|
|
2020-05-27 14:19:06 +02:00
|
|
|
if ($item['gravity'] != GRAVITY_PARENT) {
|
2021-01-27 11:01:42 +01:00
|
|
|
$parent = Post::selectFirstForUser($item_user, $fields, ['uid' => $item['uid'], 'uri-id' => $item['parent-uri-id']]);
|
2019-12-19 13:47:35 +01:00
|
|
|
$item = $parent ?: $item;
|
2018-06-18 22:36:34 +02:00
|
|
|
}
|
2017-12-19 18:15:56 +01:00
|
|
|
|
2021-07-24 12:33:58 +02:00
|
|
|
$profiledata = display_fetchauthor($item);
|
2014-07-09 20:48:34 +02:00
|
|
|
|
2021-07-23 14:39:37 +02:00
|
|
|
DI::page()['aside'] = Widget\VCard::getHTML($profiledata);
|
2013-01-03 18:47:45 +01:00
|
|
|
}
|
|
|
|
|
2021-07-24 12:33:58 +02:00
|
|
|
function display_fetchauthor($item)
|
2018-06-19 19:57:45 +02:00
|
|
|
{
|
2021-07-24 12:33:58 +02:00
|
|
|
$profiledata = Contact::getByURLForUser($item['author-link'], local_user());
|
2014-08-26 17:10:46 +02:00
|
|
|
|
|
|
|
// Check for a repeated message
|
2019-12-05 07:16:27 +01:00
|
|
|
$shared = Item::getShareArray($item);
|
|
|
|
if (!empty($shared) && empty($shared['comment'])) {
|
2021-07-25 07:04:48 +02:00
|
|
|
$profiledata = [
|
|
|
|
'uid' => -1,
|
|
|
|
'id' => -1,
|
|
|
|
'nickname' => '',
|
|
|
|
'name' => '',
|
|
|
|
'picdate' => '',
|
|
|
|
'photo' => '',
|
|
|
|
'url' => '',
|
|
|
|
'network' => '',
|
|
|
|
];
|
2021-07-24 12:33:58 +02:00
|
|
|
|
2019-12-05 07:16:27 +01:00
|
|
|
if (!empty($shared['author'])) {
|
|
|
|
$profiledata['name'] = $shared['author'];
|
2016-10-22 12:14:41 +02:00
|
|
|
}
|
2014-08-26 17:10:46 +02:00
|
|
|
|
2019-12-05 07:16:27 +01:00
|
|
|
if (!empty($shared['profile'])) {
|
|
|
|
$profiledata['url'] = $shared['profile'];
|
2016-10-22 12:14:41 +02:00
|
|
|
}
|
2019-12-05 07:16:27 +01:00
|
|
|
|
|
|
|
if (!empty($shared['avatar'])) {
|
|
|
|
$profiledata['photo'] = $shared['avatar'];
|
2016-10-22 12:14:41 +02:00
|
|
|
}
|
2019-12-05 07:16:27 +01:00
|
|
|
|
2021-07-24 12:33:58 +02:00
|
|
|
$profiledata['nickname'] = $profiledata['name'];
|
|
|
|
$profiledata['network'] = Protocol::matchByProfileUrl($profiledata['url']);
|
2015-01-08 01:32:19 +01:00
|
|
|
|
2021-07-24 12:33:58 +02:00
|
|
|
$profiledata['address'] = '';
|
|
|
|
$profiledata['about'] = '';
|
2015-01-08 01:32:19 +01:00
|
|
|
|
2021-07-24 12:33:58 +02:00
|
|
|
$profiledata = Contact::getByURLForUser($profiledata['url'], local_user()) ?: $profiledata;
|
|
|
|
}
|
2016-01-29 12:14:04 +01:00
|
|
|
|
2021-07-24 12:33:58 +02:00
|
|
|
if (!empty($profiledata['photo'])) {
|
|
|
|
$profiledata['photo'] = DI::baseUrl()->remove($profiledata['photo']);
|
2019-09-04 23:11:58 +02:00
|
|
|
}
|
2014-08-26 17:10:46 +02:00
|
|
|
|
2019-06-11 03:33:25 +02:00
|
|
|
return $profiledata;
|
2014-08-26 17:10:46 +02:00
|
|
|
}
|
2013-01-03 18:47:45 +01:00
|
|
|
|
2018-06-19 19:57:45 +02:00
|
|
|
function display_content(App $a, $update = false, $update_uid = 0)
|
|
|
|
{
|
2020-01-19 21:21:13 +01:00
|
|
|
if (DI::config()->get('system','block_public') && !Session::isAuthenticated()) {
|
2020-01-18 20:52:34 +01:00
|
|
|
throw new HTTPException\ForbiddenException(DI::l10n()->t('Public access denied.'));
|
2013-01-12 13:58:54 +01:00
|
|
|
}
|
|
|
|
|
2012-10-09 17:41:33 +02:00
|
|
|
$o = '';
|
2010-11-03 06:21:49 +01:00
|
|
|
|
2019-12-22 15:00:16 +01:00
|
|
|
$item = null;
|
|
|
|
|
2020-05-27 14:28:09 +02:00
|
|
|
$force = (bool)($_REQUEST['force'] ?? false);
|
|
|
|
|
2016-10-22 12:14:41 +02:00
|
|
|
if ($update) {
|
2021-01-27 11:01:42 +01:00
|
|
|
$uri_id = $_REQUEST['uri_id'];
|
2021-08-12 07:28:47 +02:00
|
|
|
$item = Post::selectFirst(['uid', 'parent-uri-id'], ['uri-id' => $uri_id, 'uid' => [0, $update_uid]]);
|
2021-04-10 18:19:22 +02:00
|
|
|
if (!empty($item)) {
|
|
|
|
if ($item['uid'] != 0) {
|
2021-07-24 22:34:07 +02:00
|
|
|
$a->setProfileOwner($item['uid']);
|
2021-04-10 18:19:22 +02:00
|
|
|
} else {
|
2021-07-24 22:34:07 +02:00
|
|
|
$a->setProfileOwner($update_uid);
|
2021-04-10 18:19:22 +02:00
|
|
|
}
|
|
|
|
$parent_uri_id = $item['parent-uri-id'];
|
2018-03-06 08:12:58 +01:00
|
|
|
}
|
2016-10-22 12:14:41 +02:00
|
|
|
} else {
|
2021-07-25 15:08:22 +02:00
|
|
|
$uri_id = ((DI::args()->getArgc() > 2) ? DI::args()->getArgv()[2] : 0);
|
2021-01-27 11:01:42 +01:00
|
|
|
$parent_uri_id = $uri_id;
|
2014-07-09 20:48:34 +02:00
|
|
|
|
2021-07-25 15:08:22 +02:00
|
|
|
if (DI::args()->getArgc() == 2) {
|
2021-01-27 11:01:42 +01:00
|
|
|
$fields = ['uri-id', 'parent-uri-id', 'uid'];
|
2014-07-09 20:48:34 +02:00
|
|
|
|
|
|
|
if (local_user()) {
|
2021-07-25 15:08:22 +02:00
|
|
|
$condition = ['guid' => DI::args()->getArgv()[1], 'uid' => local_user()];
|
2021-01-16 23:37:27 +01:00
|
|
|
$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'];
|
2014-07-09 20:48:34 +02:00
|
|
|
}
|
2019-09-28 17:31:36 +02:00
|
|
|
}
|
|
|
|
|
2021-01-27 11:01:42 +01:00
|
|
|
if (($parent_uri_id == 0) && remote_user()) {
|
2021-07-25 15:08:22 +02:00
|
|
|
$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'];
|
2018-12-09 14:09:49 +01:00
|
|
|
}
|
2014-07-09 20:48:34 +02:00
|
|
|
}
|
|
|
|
|
2021-01-27 11:01:42 +01:00
|
|
|
if ($parent_uri_id == 0) {
|
2021-07-25 15:08:22 +02:00
|
|
|
$condition = ['private' => [Item::PUBLIC, Item::UNLISTED], 'guid' => DI::args()->getArgv()[1], 'uid' => 0];
|
2021-01-16 23:37:27 +01:00
|
|
|
$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'];
|
2014-07-09 20:48:34 +02:00
|
|
|
}
|
|
|
|
}
|
2016-10-22 12:14:41 +02:00
|
|
|
}
|
2016-03-13 13:04:12 +01:00
|
|
|
}
|
|
|
|
|
2019-12-22 15:00:16 +01:00
|
|
|
if (empty($item)) {
|
2020-01-18 20:52:34 +01:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2020-11-08 22:59:57 +01: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']]);
|
2021-09-18 07:08:29 +02:00
|
|
|
DI::notify()->setAllSeenForUser(local_user(), ['parent-uri-id' => $item['parent-uri-id']]);
|
2020-11-08 22:59:57 +01:00
|
|
|
}
|
|
|
|
|
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) {
|
2017-12-19 18:15:56 +01:00
|
|
|
// 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 = '';
|
2017-10-18 08:25:22 +02:00
|
|
|
$conversation = '';
|
2017-06-06 23:56:25 +02:00
|
|
|
}
|
|
|
|
|
2019-12-30 20:02:09 +01:00
|
|
|
DI::page()['htmlhead'] .= Renderer::replaceMacros(Renderer::getMarkupTemplate('display-head.tpl'),
|
2018-01-15 14:05:12 +01:00
|
|
|
['$alternate' => $alternate,
|
|
|
|
'$conversation' => $conversation]);
|
2017-06-06 19:56:22 +02:00
|
|
|
|
2018-12-09 14:09:49 +01:00
|
|
|
$is_remote_contact = false;
|
|
|
|
$item_uid = local_user();
|
2021-07-23 14:39:37 +02:00
|
|
|
$page_uid = 0;
|
2010-09-09 05:14:17 +02:00
|
|
|
|
2019-12-19 13:47:35 +01:00
|
|
|
$parent = null;
|
2021-10-01 07:26:13 +02:00
|
|
|
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]);
|
2019-12-19 13:47:35 +01:00
|
|
|
}
|
|
|
|
|
2021-10-01 16:28:33 +02:00
|
|
|
if (DBA::isResult($parent)) {
|
2021-07-23 15:26:21 +02:00
|
|
|
$page_uid = $page_uid ?? 0 ?: $parent['uid'];
|
2021-07-23 14:39:37 +02:00
|
|
|
$is_remote_contact = Session::getRemoteContactID($page_uid);
|
2019-12-19 13:47:35 +01:00
|
|
|
if ($is_remote_contact) {
|
|
|
|
$item_uid = $parent['uid'];
|
2010-09-09 05:14:17 +02:00
|
|
|
}
|
2019-12-19 13:47:35 +01:00
|
|
|
} else {
|
2021-07-23 14:39:37 +02:00
|
|
|
$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);
|
2016-10-22 12:14:41 +02:00
|
|
|
}
|
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]));
|
2011-07-06 06:11:38 +02:00
|
|
|
|
2021-07-24 12:09:39 +02:00
|
|
|
if (!empty($page_user['hidewall']) && !$is_owner && !$is_remote_contact) {
|
2020-01-18 20:52:34 +01:00
|
|
|
throw new HTTPException\ForbiddenException(DI::l10n()->t('Access to this profile has been restricted.'));
|
2011-07-06 06:11:38 +02:00
|
|
|
}
|
2014-01-26 09:58:41 +01:00
|
|
|
|
2016-02-24 07:22:32 +01:00
|
|
|
// We need the editor here to be able to reshare an item.
|
2020-05-27 14:28:09 +02:00
|
|
|
if ($is_owner && !$update) {
|
2021-09-23 23:18:36 +02:00
|
|
|
$o .= DI::conversation()->statusEditor([], 0, true);
|
2012-10-09 17:41:33 +02:00
|
|
|
}
|
2021-07-23 14:39:37 +02:00
|
|
|
$sql_extra = Item::getPermissionsSQLByUserId($page_uid);
|
2011-07-06 06:11:38 +02:00
|
|
|
|
2021-07-23 14:39:37 +02:00
|
|
|
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];
|
2021-01-16 05:11:28 +01:00
|
|
|
$unseen = Post::exists($condition);
|
2018-05-19 18:04:57 +02:00
|
|
|
} else {
|
|
|
|
$unseen = false;
|
|
|
|
}
|
|
|
|
|
2020-05-27 14:28:09 +02:00
|
|
|
if ($update && !$unseen && !$force) {
|
2018-05-19 18:04:57 +02:00
|
|
|
return '';
|
2012-11-02 01:31:50 +01:00
|
|
|
}
|
|
|
|
|
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'];
|
2021-07-23 14:39:37 +02:00
|
|
|
$item = Post::selectFirstForUser($page_uid, $fields, $condition);
|
2010-09-09 05:14:17 +02:00
|
|
|
|
2018-08-20 22:32:55 +02:00
|
|
|
if (!DBA::isResult($item)) {
|
2020-01-18 20:52:34 +01:00
|
|
|
throw new HTTPException\NotFoundException(DI::l10n()->t('The requested item doesn\'t exist or has been deleted.'));
|
2013-04-07 19:38:37 +02:00
|
|
|
}
|
|
|
|
|
2021-01-27 11:01:42 +01:00
|
|
|
$item['uri-id'] = $item['parent-uri-id'];
|
2018-08-20 22:32:55 +02:00
|
|
|
|
2018-05-19 18:04:57 +02:00
|
|
|
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
|
|
|
}
|
2010-11-03 06:21:49 +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
|
|
|
}
|
2018-08-20 22:32:55 +02:00
|
|
|
|
2021-09-23 23:18:36 +02:00
|
|
|
$o .= DI::conversation()->create([$item], 'display', $update_uid, false, 'commented', $item_uid);
|
2017-01-25 13:10:42 +01:00
|
|
|
|
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']));
|
|
|
|
$author_name = $item['author-name'];
|
2017-01-25 13:10:42 +01:00
|
|
|
|
2021-07-24 12:33:58 +02:00
|
|
|
$image = DI::baseUrl()->remove($item['author-avatar']);
|
2013-03-02 14:46:06 +01:00
|
|
|
|
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
|
|
|
|
|
2019-12-30 20:02:09 +01:00
|
|
|
$page = DI::page();
|
|
|
|
|
2019-09-10 19:15:29 +02:00
|
|
|
if (DBA::exists('contact', ['unsearchable' => true, 'id' => [$item['contact-id'], $item['author-id'], $item['owner-id']]])) {
|
2019-12-30 20:02:09 +01:00
|
|
|
$page['htmlhead'] .= '<meta content="noindex, noarchive" name="robots" />' . "\n";
|
2019-09-10 19:15:29 +02:00
|
|
|
}
|
|
|
|
|
2019-12-30 20:02:09 +01: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 09:58:36 +01:00
|
|
|
|
|
|
|
// Schema.org microdata
|
2019-12-30 20:02:09 +01: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 09:58:36 +01:00
|
|
|
|
|
|
|
// Twitter cards
|
2019-12-30 20:02:09 +01: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 23:00:08 +01:00
|
|
|
$page['htmlhead'] .= '<meta name="twitter:image" content="'.DI::baseUrl().'/'.$image.'" />'."\n";
|
2019-12-30 20:02:09 +01:00
|
|
|
$page['htmlhead'] .= '<meta name="twitter:url" content="'.$item["plink"].'" />'."\n";
|
2017-12-21 09:58:36 +01:00
|
|
|
|
|
|
|
// Dublin Core
|
2019-12-30 20:02:09 +01:00
|
|
|
$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
|
2019-12-30 20:02:09 +01:00
|
|
|
$page['htmlhead'] .= '<meta property="og:type" content="website" />'."\n";
|
|
|
|
$page['htmlhead'] .= '<meta property="og:title" content="'.$title.'" />'."\n";
|
2019-12-30 23:00:08 +01:00
|
|
|
$page['htmlhead'] .= '<meta property="og:image" content="'.DI::baseUrl().'/'.$image.'" />'."\n";
|
2019-12-30 20:02:09 +01: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 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
|
|
|
}
|
2016-02-07 15:11:34 +01: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 == '') {
|
2020-01-18 20:52:34 +01:00
|
|
|
throw new HTTPException\InternalServerErrorException(DI::l10n()->t('The feed for this item is unavailable.'));
|
2017-09-19 13:53:19 +02:00
|
|
|
}
|
|
|
|
header("Content-type: application/atom+xml");
|
|
|
|
echo $xml;
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2017-09-19 13:53:19 +02:00
|
|
|
}
|