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-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-02-05 18:57:41 +01:00
|
|
|
use Friendica\Core\Protocol;
|
2017-08-26 08:04:21 +02:00
|
|
|
use Friendica\Core\System;
|
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;
|
2017-11-08 04:57:46 +01:00
|
|
|
use Friendica\Protocol\DFRN;
|
2018-09-11 09:07:56 +02:00
|
|
|
use Friendica\Protocol\ActivityPub;
|
2017-06-07 10:46:38 +02:00
|
|
|
|
2018-01-15 03:22:39 +01:00
|
|
|
function display_init(App $a)
|
|
|
|
{
|
|
|
|
if (Config::get('system', 'block_public') && !local_user() && !remote_user()) {
|
2011-04-22 02:29:47 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-01-03 18:47:45 +01:00
|
|
|
$nick = (($a->argc > 1) ? $a->argv[1] : '');
|
2018-01-15 14:05:12 +01:00
|
|
|
$profiledata = [];
|
2014-07-09 20:48:34 +02:00
|
|
|
|
2017-06-06 23:56:25 +02:00
|
|
|
if ($a->argc == 3) {
|
|
|
|
if (substr($a->argv[2], -5) == '.atom') {
|
|
|
|
$item_id = substr($a->argv[2], 0, -5);
|
2017-10-18 08:25:22 +02:00
|
|
|
displayShowFeed($item_id, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($a->argc == 4) {
|
|
|
|
if ($a->argv[3] == 'conversation.atom') {
|
|
|
|
$item_id = $a->argv[2];
|
|
|
|
displayShowFeed($item_id, true);
|
2017-06-06 23:56:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-19 19:58:28 +02:00
|
|
|
$item = null;
|
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
|
|
|
}
|
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)) {
|
2018-07-16 06:00:57 +02:00
|
|
|
$item = Item::selectFirstForUser(local_user(), $fields, ['guid' => $a->argv[1], 'private' => [0, 2], 'uid' => 0]);
|
2017-12-19 18:15:56 +01:00
|
|
|
}
|
2017-12-21 09:58:36 +01:00
|
|
|
} elseif (($a->argc == 3) && ($nick == 'feed-item')) {
|
2018-07-16 06:00:57 +02:00
|
|
|
$item = Item::selectFirstForUser(local_user(), $fields, ['id' => $a->argv[2], '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)) {
|
2018-06-18 22:36:34 +02:00
|
|
|
$a->error = 404;
|
|
|
|
notice(L10n::t('Item not found.') . EOL);
|
|
|
|
return;
|
|
|
|
}
|
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-06-19 19:57:45 +02:00
|
|
|
logger('Directly serving XML for id '.$item["id"], LOGGER_DEBUG);
|
|
|
|
displayShowFeed($item["id"], false);
|
2018-06-18 22:36:34 +02:00
|
|
|
}
|
|
|
|
|
2018-09-16 22:12:48 +02:00
|
|
|
if (ActivityPub::isRequest()) {
|
2018-09-30 14:21:57 +02:00
|
|
|
goaway(str_replace('display/', 'object/', $a->query_string));
|
2018-09-11 09:07:56 +02:00
|
|
|
}
|
2018-09-30 14:21:57 +02:00
|
|
|
|
2018-06-19 19:57:45 +02:00
|
|
|
if ($item["id"] != $item["parent"]) {
|
|
|
|
$item = Item::selectFirstForUser(local_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
|
|
|
|
|
|
|
if (strstr(normalise_link($profiledata["url"]), normalise_link(System::baseUrl()))) {
|
|
|
|
$nickname = str_replace(normalise_link(System::baseUrl())."/profile/", "", normalise_link($profiledata["url"]));
|
|
|
|
|
|
|
|
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
|
|
|
|
$skip = false;
|
|
|
|
$body = trim($item["body"]);
|
|
|
|
|
|
|
|
// Skip if it isn't a pure repeated messages
|
|
|
|
// Does it start with a share?
|
2017-06-08 04:00:59 +02:00
|
|
|
if (!$skip && strpos($body, "[share") > 0) {
|
2014-08-26 17:10:46 +02:00
|
|
|
$skip = true;
|
2016-10-22 12:14:41 +02:00
|
|
|
}
|
2014-08-26 17:10:46 +02:00
|
|
|
// Does it end with a share?
|
2017-06-08 04:00:59 +02:00
|
|
|
if (!$skip && (strlen($body) > (strrpos($body, "[/share]") + 8))) {
|
2014-08-26 17:10:46 +02:00
|
|
|
$skip = true;
|
2016-10-22 12:14:41 +02:00
|
|
|
}
|
2014-08-26 17:10:46 +02:00
|
|
|
if (!$skip) {
|
|
|
|
$attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism","$1",$body);
|
|
|
|
// Skip if there is no shared message in there
|
2016-10-22 12:14:41 +02:00
|
|
|
if ($body == $attributes) {
|
2014-08-26 17:10:46 +02:00
|
|
|
$skip = true;
|
2016-10-22 12:14:41 +02:00
|
|
|
}
|
2014-08-26 17:10:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!$skip) {
|
2016-03-13 13:04:12 +01:00
|
|
|
$author = "";
|
|
|
|
preg_match("/author='(.*?)'/ism", $attributes, $matches);
|
2018-07-10 14:27:56 +02:00
|
|
|
if (!empty($matches[1])) {
|
2014-08-26 17:10:46 +02:00
|
|
|
$profiledata["name"] = html_entity_decode($matches[1],ENT_QUOTES,'UTF-8');
|
2016-10-22 12:14:41 +02:00
|
|
|
}
|
2016-03-13 13:04:12 +01:00
|
|
|
preg_match('/author="(.*?)"/ism', $attributes, $matches);
|
2018-07-10 14:27:56 +02:00
|
|
|
if (!empty($matches[1])) {
|
2014-08-26 17:10:46 +02:00
|
|
|
$profiledata["name"] = html_entity_decode($matches[1],ENT_QUOTES,'UTF-8');
|
2016-10-22 12:14:41 +02:00
|
|
|
}
|
2016-03-13 13:04:12 +01:00
|
|
|
$profile = "";
|
|
|
|
preg_match("/profile='(.*?)'/ism", $attributes, $matches);
|
2018-07-10 14:27:56 +02:00
|
|
|
if (!empty($matches[1])) {
|
2014-08-26 17:10:46 +02:00
|
|
|
$profiledata["url"] = $matches[1];
|
2016-10-22 12:14:41 +02:00
|
|
|
}
|
2016-03-13 13:04:12 +01:00
|
|
|
preg_match('/profile="(.*?)"/ism', $attributes, $matches);
|
2018-07-10 14:27:56 +02:00
|
|
|
if (!empty($matches[1])) {
|
2014-08-26 17:10:46 +02:00
|
|
|
$profiledata["url"] = $matches[1];
|
2016-10-22 12:14:41 +02:00
|
|
|
}
|
2016-03-13 13:04:12 +01:00
|
|
|
$avatar = "";
|
|
|
|
preg_match("/avatar='(.*?)'/ism", $attributes, $matches);
|
2018-07-10 14:27:56 +02:00
|
|
|
if (!empty($matches[1])) {
|
2014-08-26 17:10:46 +02:00
|
|
|
$profiledata["photo"] = $matches[1];
|
2016-10-22 12:14:41 +02:00
|
|
|
}
|
2014-08-26 17:10:46 +02:00
|
|
|
preg_match('/avatar="(.*?)"/ism', $attributes, $matches);
|
2018-07-10 14:27:56 +02:00
|
|
|
if (!empty($matches[1])) {
|
2014-08-26 17:10:46 +02:00
|
|
|
$profiledata["photo"] = $matches[1];
|
2016-10-22 12:14:41 +02: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
|
|
|
|
2017-08-26 09:32:10 +02:00
|
|
|
$profiledata["photo"] = System::removedBaseUrl($profiledata["photo"]);
|
2014-08-26 17:10:46 +02:00
|
|
|
|
|
|
|
if (local_user()) {
|
2018-08-11 22:40:44 +02:00
|
|
|
if (in_array($profiledata["network"], [Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS])) {
|
2017-08-26 09:32:10 +02:00
|
|
|
$profiledata["remoteconnect"] = System::baseUrl()."/follow?url=".urlencode($profiledata["url"]);
|
2016-10-22 12:14:41 +02:00
|
|
|
}
|
2018-08-11 22:40:44 +02:00
|
|
|
} elseif ($profiledata["network"] == Protocol::DFRN) {
|
2014-08-26 17:10:46 +02:00
|
|
|
$connect = str_replace("/profile/", "/dfrn_request/", $profiledata["url"]);
|
|
|
|
$profiledata["remoteconnect"] = $connect;
|
|
|
|
}
|
|
|
|
|
|
|
|
return($profiledata);
|
|
|
|
}
|
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)
|
|
|
|
{
|
2017-12-20 11:16:25 +01:00
|
|
|
if (Config::get('system','block_public') && !local_user() && !remote_user()) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Public access denied.') . EOL);
|
2013-01-12 13:58:54 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-12-21 19:46:35 +01:00
|
|
|
require_once 'include/security.php';
|
|
|
|
require_once 'include/conversation.php';
|
2011-04-13 02:58:16 +02: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-06-19 19:57:45 +02:00
|
|
|
$fields = ['id', 'parent', 'parent-uri'];
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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) {
|
2010-09-09 05:14:17 +02:00
|
|
|
$a->error = 404;
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Item not found.').EOL);
|
2010-09-09 05:14:17 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2017-06-06 19:56:22 +02:00
|
|
|
$a->page['htmlhead'] .= replace_macros(get_markup_template('display-head.tpl'),
|
2018-01-15 14:05:12 +01:00
|
|
|
['$alternate' => $alternate,
|
|
|
|
'$conversation' => $conversation]);
|
2017-06-06 19:56:22 +02:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$groups = [];
|
2010-09-09 05:14:17 +02:00
|
|
|
|
|
|
|
$contact = null;
|
2018-06-19 19:57:45 +02:00
|
|
|
$is_remote_contact = false;
|
2012-03-07 01:28:52 +01:00
|
|
|
|
2012-09-05 07:50:28 +02:00
|
|
|
$contact_id = 0;
|
|
|
|
|
2018-01-01 21:51:02 +01:00
|
|
|
if (x($_SESSION, 'remote') && is_array($_SESSION['remote'])) {
|
2016-10-22 12:14:41 +02:00
|
|
|
foreach ($_SESSION['remote'] as $v) {
|
|
|
|
if ($v['uid'] == $a->profile['uid']) {
|
2012-09-05 07:50:28 +02:00
|
|
|
$contact_id = $v['cid'];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-22 12:14:41 +02:00
|
|
|
if ($contact_id) {
|
2017-12-17 01:21:56 +01:00
|
|
|
$groups = Group::getIdsByContactId($contact_id);
|
2018-07-20 14:19:26 +02:00
|
|
|
$remote_contact = DBA::selectFirst('contact', [], ['id' => $contact_id, 'uid' => $a->profile['uid']]);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($remote_contact)) {
|
2018-06-19 19:57:45 +02:00
|
|
|
$contact = $remote_contact;
|
|
|
|
$is_remote_contact = true;
|
2010-09-09 05:14:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-19 19:57:45 +02:00
|
|
|
if (!$is_remote_contact) {
|
2016-10-22 12:14:41 +02:00
|
|
|
if (local_user()) {
|
2010-09-09 05:14:17 +02:00
|
|
|
$contact_id = $_SESSION['cid'];
|
|
|
|
$contact = $a->contact;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
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-06-19 19:57:45 +02:00
|
|
|
if (x($a->profile, 'hidewall') && !$is_owner && !$is_remote_contact) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Access to this profile has been restricted.') . EOL);
|
2011-07-06 06:11:38 +02:00
|
|
|
return;
|
|
|
|
}
|
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'),
|
2018-03-03 00:41:24 +01:00
|
|
|
'acl' => ACL::getFullSelectorHTML($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
|
|
|
}
|
2011-07-06 06:11:38 +02:00
|
|
|
|
2018-06-19 19:57:45 +02:00
|
|
|
$sql_extra = item_permissions_sql($a->profile['uid'], $is_remote_contact, $groups);
|
2010-09-09 05:14:17 +02:00
|
|
|
|
2018-05-19 18:04:57 +02:00
|
|
|
if (local_user() && (local_user() == $a->profile['uid'])) {
|
|
|
|
$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-08-20 22:32:55 +02:00
|
|
|
$condition = ["`id` = ? AND `item`.`uid` IN (0, ?) " . $sql_extra, $item_id, local_user()];
|
|
|
|
$fields = ['parent-uri', 'body', 'title', 'author-name', 'author-avatar', 'plink'];
|
|
|
|
$item = Item::selectFirstForUser(local_user(), $fields, $condition);
|
2010-09-09 05:14:17 +02:00
|
|
|
|
2018-08-20 22:32:55 +02:00
|
|
|
if (!DBA::isResult($item)) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Item not found.') . EOL);
|
2017-12-21 09:58:36 +01:00
|
|
|
return $o;
|
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
|
|
|
|
|
|
|
$o .= conversation($a, [$item], 'display', $update_uid, false, 'commented', local_user());
|
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-08-20 22:32:55 +02:00
|
|
|
$image = $a->remove_baseurl($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
|
|
|
|
|
|
|
|
//<meta name="keywords" content="">
|
|
|
|
$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 == '') {
|
2018-01-27 17:59:10 +01:00
|
|
|
System::httpExit(500);
|
2017-09-19 13:53:19 +02:00
|
|
|
}
|
|
|
|
header("Content-type: application/atom+xml");
|
|
|
|
echo $xml;
|
|
|
|
killme();
|
|
|
|
}
|