2010-09-09 05:14:17 +02:00
|
|
|
<?php
|
2018-01-15 03:22:39 +01:00
|
|
|
/**
|
|
|
|
* @file mod/display.php
|
|
|
|
*/
|
2018-02-05 01:23:49 +01:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-10-24 08:15:24 +02:00
|
|
|
use Friendica\Content\Pager;
|
2018-02-15 03:33:55 +01:00
|
|
|
use Friendica\Content\Text\BBCode;
|
2018-03-07 22:29:44 +01:00
|
|
|
use Friendica\Content\Text\HTML;
|
2018-03-03 00:41:24 +01:00
|
|
|
use Friendica\Core\ACL;
|
2017-11-07 03:22:52 +01:00
|
|
|
use Friendica\Core\Config;
|
2018-01-21 19:33:59 +01:00
|
|
|
use Friendica\Core\L10n;
|
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;
|
2017-08-26 08:04:21 +02:00
|
|
|
use Friendica\Core\System;
|
2019-09-28 11:59:08 +02:00
|
|
|
use Friendica\Core\Session;
|
2018-07-20 14:19:26 +02:00
|
|
|
use Friendica\Database\DBA;
|
2017-12-07 15:04:24 +01:00
|
|
|
use Friendica\Model\Contact;
|
2017-12-17 01:21:56 +01:00
|
|
|
use Friendica\Model\Group;
|
2018-06-10 09:26:37 +02:00
|
|
|
use Friendica\Model\Item;
|
2018-01-15 03:22:39 +01:00
|
|
|
use Friendica\Model\Profile;
|
2019-02-24 15:15:25 +01:00
|
|
|
use Friendica\Module\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;
|
2018-11-08 17:28:29 +01:00
|
|
|
use Friendica\Util\Strings;
|
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()) {
|
|
|
|
Objects::rawContent();
|
|
|
|
}
|
|
|
|
|
2019-09-28 20:09:11 +02:00
|
|
|
if (Config::get('system', 'block_public') && !Session::isAuthenticated()) {
|
2011-04-22 02:29:47 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-01-03 18:47:45 +01:00
|
|
|
$nick = (($a->argc > 1) ? $a->argv[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
|
|
|
|
2018-09-11 09:07:56 +02:00
|
|
|
$fields = ['id', 'parent', 'author-id', 'body', 'uid', 'guid'];
|
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
|
|
|
|
if ($a->argc == 2) {
|
|
|
|
$nick = "";
|
|
|
|
|
|
|
|
// Does the local user have this item?
|
|
|
|
if (local_user()) {
|
2018-06-19 19:57:45 +02:00
|
|
|
$item = Item::selectFirstForUser(local_user(), $fields, ['guid' => $a->argv[1], 'uid' => local_user()]);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($item)) {
|
2014-07-09 20:48:34 +02:00
|
|
|
$nick = $a->user["nickname"];
|
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()) {
|
2019-09-28 22:43:45 +02:00
|
|
|
$item = Item::selectFirst($fields, ['guid' => $a->argv[1], 'private' => 1, '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)) {
|
2019-01-12 22:05:16 +01:00
|
|
|
$item = Item::selectFirstForUser(local_user(), $fields, ['guid' => $a->argv[1], 'private' => [0, 2], 'uid' => 0]);
|
2017-12-19 18:15:56 +01:00
|
|
|
}
|
2019-04-28 07:13:39 +02:00
|
|
|
} elseif ($a->argc >= 3 && $nick == 'feed-item') {
|
|
|
|
$item_id = $a->argv[2];
|
|
|
|
if (substr($item_id, -5) == '.atom') {
|
|
|
|
$item_id = substr($item_id, 0, -5);
|
|
|
|
}
|
|
|
|
$item = Item::selectFirstForUser(local_user(), $fields, ['id' => $item_id, 'private' => [0, 2], '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
|
|
|
|
2019-06-23 21:30:44 +02:00
|
|
|
if ($a->argc >= 3 && $nick == 'feed-item') {
|
|
|
|
displayShowFeed($item['id'], $a->argc > 3 && $a->argv[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')) {
|
2018-10-30 14:58:45 +01:00
|
|
|
Logger::log('Directly serving XML for id '.$item["id"], Logger::DEBUG);
|
2018-06-19 19:57:45 +02:00
|
|
|
displayShowFeed($item["id"], false);
|
2018-06-18 22:36:34 +02:00
|
|
|
}
|
|
|
|
|
2018-06-19 19:57:45 +02:00
|
|
|
if ($item["id"] != $item["parent"]) {
|
2019-01-07 19:24:42 +01:00
|
|
|
$item = Item::selectFirstForUser($item_user, $fields, ['id' => $item["parent"]]);
|
2018-06-18 22:36:34 +02:00
|
|
|
}
|
2017-12-19 18:15:56 +01:00
|
|
|
|
2018-06-19 19:57:45 +02:00
|
|
|
$profiledata = display_fetchauthor($a, $item);
|
2018-06-18 22:36:34 +02:00
|
|
|
|
2018-11-08 17:28:29 +01:00
|
|
|
if (strstr(Strings::normaliseLink($profiledata["url"]), Strings::normaliseLink(System::baseUrl()))) {
|
|
|
|
$nickname = str_replace(Strings::normaliseLink(System::baseUrl())."/profile/", "", Strings::normaliseLink($profiledata["url"]));
|
2018-06-18 22:36:34 +02:00
|
|
|
|
2019-09-28 22:43:45 +02:00
|
|
|
if ($nickname != $a->user["nickname"]) {
|
2018-07-21 04:01:53 +02:00
|
|
|
$profile = DBA::fetchFirst("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `contact`.`avatar-date` AS picdate, `user`.* FROM `profile`
|
2018-06-18 22:36:34 +02:00
|
|
|
INNER JOIN `contact` on `contact`.`uid` = `profile`.`uid` INNER JOIN `user` ON `profile`.`uid` = `user`.`uid`
|
|
|
|
WHERE `user`.`nickname` = ? AND `profile`.`is-default` AND `contact`.`self` LIMIT 1",
|
|
|
|
$nickname
|
|
|
|
);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($profile)) {
|
2018-06-19 19:57:45 +02:00
|
|
|
$profiledata = $profile;
|
2014-08-25 14:09:56 +02:00
|
|
|
}
|
2018-08-11 22:40:44 +02:00
|
|
|
$profiledata["network"] = Protocol::DFRN;
|
2018-06-18 22:36:34 +02:00
|
|
|
} else {
|
|
|
|
$profiledata = [];
|
2014-07-09 20:48:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-15 03:22:39 +01:00
|
|
|
Profile::load($a, $nick, 0, $profiledata);
|
2013-01-03 18:47:45 +01:00
|
|
|
}
|
|
|
|
|
2018-06-19 19:57:45 +02:00
|
|
|
function display_fetchauthor($a, $item)
|
|
|
|
{
|
2018-07-20 14:19:26 +02:00
|
|
|
$author = DBA::selectFirst('contact', ['name', 'nick', 'photo', 'network', 'url'], ['id' => $item['author-id']]);
|
2018-06-03 09:42:56 +02:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$profiledata = [];
|
2018-06-03 09:42:56 +02: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 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'])) {
|
|
|
|
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
|
|
|
|
2014-08-26 17:10:46 +02:00
|
|
|
$profiledata["nickname"] = $profiledata["name"];
|
2018-02-05 18:57:41 +01:00
|
|
|
$profiledata["network"] = Protocol::matchByProfileUrl($profiledata["url"]);
|
2015-01-08 01:32:19 +01:00
|
|
|
|
|
|
|
$profiledata["address"] = "";
|
|
|
|
$profiledata["about"] = "";
|
2015-10-06 18:31:08 +02:00
|
|
|
}
|
2015-01-08 01:32:19 +01:00
|
|
|
|
2017-11-19 23:03:39 +01:00
|
|
|
$profiledata = Contact::getDetailsByURL($profiledata["url"], local_user(), $profiledata);
|
2016-01-29 12:14:04 +01:00
|
|
|
|
2019-09-04 23:11:58 +02:00
|
|
|
if (!empty($profiledata["photo"])) {
|
|
|
|
$profiledata["photo"] = System::removedBaseUrl($profiledata["photo"]);
|
|
|
|
}
|
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)
|
|
|
|
{
|
2019-09-28 20:09:11 +02:00
|
|
|
if (Config::get('system','block_public') && !Session::isAuthenticated()) {
|
2019-05-02 05:16:10 +02:00
|
|
|
throw new HTTPException\ForbiddenException(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
|
|
|
|
2016-10-22 12:14:41 +02:00
|
|
|
if ($update) {
|
2012-11-02 01:31:50 +01:00
|
|
|
$item_id = $_REQUEST['item_id'];
|
2018-07-07 20:14:16 +02:00
|
|
|
$item = Item::selectFirst(['uid', 'parent', 'parent-uri'], ['id' => $item_id]);
|
2018-03-06 08:12:58 +01:00
|
|
|
if ($item['uid'] != 0) {
|
|
|
|
$a->profile = ['uid' => intval($item['uid']), 'profile_uid' => intval($item['uid'])];
|
|
|
|
} else {
|
|
|
|
$a->profile = ['uid' => intval($update_uid), 'profile_uid' => intval($update_uid)];
|
|
|
|
}
|
2018-01-01 21:51:02 +01:00
|
|
|
$item_parent = $item['parent'];
|
2018-05-19 18:04:57 +02:00
|
|
|
$item_parent_uri = $item['parent-uri'];
|
2016-10-22 12:14:41 +02:00
|
|
|
} else {
|
2013-04-07 19:38:37 +02:00
|
|
|
$item_id = (($a->argc > 2) ? $a->argv[2] : 0);
|
2018-07-10 14:27:56 +02:00
|
|
|
$item_parent = $item_id;
|
2014-07-09 20:48:34 +02:00
|
|
|
|
|
|
|
if ($a->argc == 2) {
|
2017-12-19 18:15:56 +01:00
|
|
|
$item_parent = 0;
|
2018-12-09 14:09:49 +01:00
|
|
|
$fields = ['id', 'parent', 'parent-uri', 'uid'];
|
2014-07-09 20:48:34 +02:00
|
|
|
|
|
|
|
if (local_user()) {
|
2018-06-19 19:57:45 +02:00
|
|
|
$condition = ['guid' => $a->argv[1], 'uid' => local_user()];
|
|
|
|
$item = Item::selectFirstForUser(local_user(), $fields, $condition);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($item)) {
|
2018-06-19 19:57:45 +02:00
|
|
|
$item_id = $item["id"];
|
|
|
|
$item_parent = $item["parent"];
|
|
|
|
$item_parent_uri = $item['parent-uri'];
|
2014-07-09 20:48:34 +02:00
|
|
|
}
|
2019-09-28 17:31:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (($item_parent == 0) && remote_user()) {
|
2019-09-28 22:43:45 +02:00
|
|
|
$item = Item::selectFirst($fields, ['guid' => $a->argv[1], 'private' => 1, 'origin' => true]);
|
2019-09-28 17:31:36 +02:00
|
|
|
if (DBA::isResult($item) && Contact::isFollower(remote_user(), $item['uid'])) {
|
2018-12-09 14:09:49 +01:00
|
|
|
$item_id = $item["id"];
|
|
|
|
$item_parent = $item["parent"];
|
|
|
|
$item_parent_uri = $item['parent-uri'];
|
|
|
|
}
|
2014-07-09 20:48:34 +02:00
|
|
|
}
|
|
|
|
|
2017-12-19 18:15:56 +01:00
|
|
|
if ($item_parent == 0) {
|
2018-07-16 06:00:57 +02:00
|
|
|
$condition = ['private' => [0, 2], 'guid' => $a->argv[1], 'uid' => 0];
|
2018-06-19 19:57:45 +02:00
|
|
|
$item = Item::selectFirstForUser(local_user(), $fields, $condition);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($item)) {
|
2018-06-19 19:57:45 +02:00
|
|
|
$item_id = $item["id"];
|
|
|
|
$item_parent = $item["parent"];
|
|
|
|
$item_parent_uri = $item['parent-uri'];
|
2014-07-09 20:48:34 +02:00
|
|
|
}
|
|
|
|
}
|
2016-10-22 12:14:41 +02:00
|
|
|
}
|
2016-03-13 13:04:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!$item_id) {
|
2019-05-02 05:16:10 +02:00
|
|
|
throw new HTTPException\NotFoundException(L10n::t('The requested item doesn\'t exist or has been deleted.'));
|
2010-09-09 05:14:17 +02:00
|
|
|
}
|
|
|
|
|
2017-06-06 23:56:25 +02:00
|
|
|
// We are displaying an "alternate" link if that post was public. See issue 2864
|
2018-08-15 06:41:49 +02:00
|
|
|
$is_public = Item::exists(['id' => $item_id, 'private' => [0, 2]]);
|
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.
|
2017-12-21 09:58:36 +01:00
|
|
|
$alternate = System::baseUrl().'/display/feed-item/'.$item_id.'.atom';
|
|
|
|
$conversation = System::baseUrl().'/display/feed-item/'.$item_parent.'/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
|
|
|
}
|
|
|
|
|
2018-10-31 15:44:06 +01:00
|
|
|
$a->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();
|
2010-09-09 05:14:17 +02:00
|
|
|
|
2019-02-24 15:15:25 +01:00
|
|
|
if (isset($item_parent_uri)) {
|
|
|
|
$parent = Item::selectFirst(['uid'], ['uri' => $item_parent_uri, 'wall' => true]);
|
|
|
|
if (DBA::isResult($parent)) {
|
2019-10-15 15:01:17 +02:00
|
|
|
$a->profile['uid'] = ($a->profile['uid'] ?? 0) ?: $parent['uid'];
|
|
|
|
$a->profile['profile_uid'] = ($a->profile['profile_uid'] ?? 0) ?: $parent['uid'];
|
2019-09-28 11:59:08 +02:00
|
|
|
$is_remote_contact = Session::getRemoteContactID($a->profile['profile_uid']);
|
2019-02-24 15:15:25 +01:00
|
|
|
if ($is_remote_contact) {
|
2019-09-28 07:37:24 +02:00
|
|
|
$item_uid = $parent['uid'];
|
2019-02-24 15:15:25 +01:00
|
|
|
}
|
2010-09-09 05:14:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-20 14:19:26 +02:00
|
|
|
$page_contact = DBA::selectFirst('contact', [], ['self' => true, 'uid' => $a->profile['uid']]);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($page_contact)) {
|
2018-06-19 19:57:45 +02:00
|
|
|
$a->page_contact = $page_contact;
|
2016-10-22 12:14:41 +02:00
|
|
|
}
|
2019-09-28 07:37:24 +02:00
|
|
|
|
2017-12-20 19:18:25 +01:00
|
|
|
$is_owner = (local_user() && (in_array($a->profile['profile_uid'], [local_user(), 0])) ? true : false);
|
2011-07-06 06:11:38 +02:00
|
|
|
|
2018-11-30 15:06:22 +01:00
|
|
|
if (!empty($a->profile['hidewall']) && !$is_owner && !$is_remote_contact) {
|
2019-05-02 05:16:10 +02:00
|
|
|
throw new HTTPException\ForbiddenException(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.
|
2012-10-09 17:41:33 +02:00
|
|
|
if ($is_owner) {
|
2018-01-15 14:05:12 +01:00
|
|
|
$x = [
|
2012-02-13 09:33:20 +01:00
|
|
|
'is_owner' => true,
|
|
|
|
'allow_location' => $a->user['allow_location'],
|
2012-02-28 23:52:23 +01:00
|
|
|
'default_location' => $a->user['default-location'],
|
2012-02-13 09:33:20 +01:00
|
|
|
'nickname' => $a->user['nickname'],
|
2017-12-21 09:58:36 +01: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-11-28 18:42:12 +01:00
|
|
|
'acl' => ACL::getFullSelectorHTML($a->page, $a->user, true),
|
2012-02-28 23:52:23 +01:00
|
|
|
'bang' => '',
|
2012-02-13 09:33:20 +01:00
|
|
|
'visitor' => 'block',
|
2013-01-26 20:52:21 +01:00
|
|
|
'profile_uid' => local_user(),
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2018-01-04 01:29:52 +01:00
|
|
|
$o .= status_editor($a, $x, 0, true);
|
2012-10-09 17:41:33 +02:00
|
|
|
}
|
2019-09-28 07:37:24 +02:00
|
|
|
$sql_extra = Item::getPermissionsSQLByUserId($a->profile['profile_uid']);
|
2011-07-06 06:11:38 +02:00
|
|
|
|
2018-12-09 14:09:49 +01:00
|
|
|
if (local_user() && (local_user() == $a->profile['profile_uid'])) {
|
2018-05-19 18:04:57 +02:00
|
|
|
$condition = ['parent-uri' => $item_parent_uri, 'uid' => local_user(), 'unseen' => true];
|
2018-08-15 06:41:49 +02:00
|
|
|
$unseen = Item::exists($condition);
|
2018-05-19 18:04:57 +02:00
|
|
|
} else {
|
|
|
|
$unseen = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($update && !$unseen) {
|
|
|
|
return '';
|
2012-11-02 01:31:50 +01:00
|
|
|
}
|
|
|
|
|
2018-12-09 14:09:49 +01:00
|
|
|
$condition = ["`id` = ? AND `item`.`uid` IN (0, ?) " . $sql_extra, $item_id, $item_uid];
|
2019-09-10 19:15:29 +02:00
|
|
|
$fields = ['parent-uri', 'body', 'title', 'author-name', 'author-avatar', 'plink', 'author-id', 'owner-id', 'contact-id'];
|
2019-09-28 22:43:45 +02:00
|
|
|
$item = Item::selectFirstForUser($a->profile['profile_uid'], $fields, $condition);
|
2010-09-09 05:14:17 +02:00
|
|
|
|
2018-08-20 22:32:55 +02:00
|
|
|
if (!DBA::isResult($item)) {
|
2019-05-02 05:16:10 +02:00
|
|
|
throw new HTTPException\NotFoundException(L10n::t('The requested item doesn\'t exist or has been deleted.'));
|
2013-04-07 19:38:37 +02:00
|
|
|
}
|
|
|
|
|
2018-08-20 22:32:55 +02:00
|
|
|
$item['uri'] = $item['parent-uri'];
|
|
|
|
|
2018-05-19 18:04:57 +02:00
|
|
|
if ($unseen) {
|
|
|
|
$condition = ['parent-uri' => $item_parent_uri, '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
|
|
|
|
2017-12-21 09:58:36 +01:00
|
|
|
if (!$update) {
|
|
|
|
$o .= "<script> var netargs = '?f=&item_id=" . $item_id . "'; </script>";
|
|
|
|
}
|
2018-08-20 22:32:55 +02:00
|
|
|
|
2018-12-09 14:09:49 +01:00
|
|
|
$o .= conversation($a, [$item], new Pager($a->query_string), '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
|
2018-08-20 22:32:55 +02: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 13:10:42 +01:00
|
|
|
|
2018-10-09 19:58:58 +02:00
|
|
|
$image = $a->removeBaseURL($item["author-avatar"]);
|
2013-03-02 14:46:06 +01:00
|
|
|
|
2017-12-21 09:58:36 +01:00
|
|
|
if ($title == "") {
|
|
|
|
$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-09-10 19:15:29 +02:00
|
|
|
if (DBA::exists('contact', ['unsearchable' => true, 'id' => [$item['contact-id'], $item['author-id'], $item['owner-id']]])) {
|
|
|
|
$a->page['htmlhead'] .= '<meta content="noindex, noarchive" name="robots" />' . "\n";
|
|
|
|
}
|
|
|
|
|
2017-12-21 09:58:36 +01:00
|
|
|
$a->page['htmlhead'] .= '<meta name="author" content="'.$author_name.'" />'."\n";
|
|
|
|
$a->page['htmlhead'] .= '<meta name="title" content="'.$title.'" />'."\n";
|
|
|
|
$a->page['htmlhead'] .= '<meta name="fulltitle" content="'.$title.'" />'."\n";
|
|
|
|
$a->page['htmlhead'] .= '<meta name="description" content="'.$description.'" />'."\n";
|
|
|
|
|
|
|
|
// Schema.org microdata
|
|
|
|
$a->page['htmlhead'] .= '<meta itemprop="name" content="'.$title.'" />'."\n";
|
|
|
|
$a->page['htmlhead'] .= '<meta itemprop="description" content="'.$description.'" />'."\n";
|
|
|
|
$a->page['htmlhead'] .= '<meta itemprop="image" content="'.$image.'" />'."\n";
|
|
|
|
$a->page['htmlhead'] .= '<meta itemprop="author" content="'.$author_name.'" />'."\n";
|
|
|
|
|
|
|
|
// Twitter cards
|
|
|
|
$a->page['htmlhead'] .= '<meta name="twitter:card" content="summary" />'."\n";
|
|
|
|
$a->page['htmlhead'] .= '<meta name="twitter:title" content="'.$title.'" />'."\n";
|
|
|
|
$a->page['htmlhead'] .= '<meta name="twitter:description" content="'.$description.'" />'."\n";
|
|
|
|
$a->page['htmlhead'] .= '<meta name="twitter:image" content="'.System::baseUrl().'/'.$image.'" />'."\n";
|
2018-08-20 22:32:55 +02:00
|
|
|
$a->page['htmlhead'] .= '<meta name="twitter:url" content="'.$item["plink"].'" />'."\n";
|
2017-12-21 09:58:36 +01:00
|
|
|
|
|
|
|
// Dublin Core
|
|
|
|
$a->page['htmlhead'] .= '<meta name="DC.title" content="'.$title.'" />'."\n";
|
|
|
|
$a->page['htmlhead'] .= '<meta name="DC.description" content="'.$description.'" />'."\n";
|
|
|
|
|
|
|
|
// Open Graph
|
|
|
|
$a->page['htmlhead'] .= '<meta property="og:type" content="website" />'."\n";
|
|
|
|
$a->page['htmlhead'] .= '<meta property="og:title" content="'.$title.'" />'."\n";
|
|
|
|
$a->page['htmlhead'] .= '<meta property="og:image" content="'.System::baseUrl().'/'.$image.'" />'."\n";
|
2018-08-20 22:32:55 +02:00
|
|
|
$a->page['htmlhead'] .= '<meta property="og:url" content="'.$item["plink"].'" />'."\n";
|
2017-12-21 09:58:36 +01:00
|
|
|
$a->page['htmlhead'] .= '<meta property="og:description" content="'.$description.'" />'."\n";
|
|
|
|
$a->page['htmlhead'] .= '<meta name="og:article:author" content="'.$author_name.'" />'."\n";
|
|
|
|
// 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
|
|
|
|
2018-06-19 19:57:45 +02:00
|
|
|
function displayShowFeed($item_id, $conversation)
|
|
|
|
{
|
2017-11-08 04:57:46 +01:00
|
|
|
$xml = DFRN::itemFeed($item_id, $conversation);
|
2017-09-19 13:53:19 +02:00
|
|
|
if ($xml == '') {
|
2019-05-02 05:16:10 +02:00
|
|
|
throw new HTTPException\InternalServerErrorException(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
|
|
|
}
|