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