4 use Friendica\Core\Config;
5 use Friendica\Core\System;
6 use Friendica\Database\DBM;
7 use Friendica\Model\Contact;
8 use Friendica\Model\Group;
9 use Friendica\Protocol\DFRN;
11 function display_init(App $a) {
12 if (Config::get('system','block_public') && !local_user() && !remote_user()) {
16 $nick = (($a->argc > 1) ? $a->argv[1] : '');
17 $profiledata = array();
20 if (substr($a->argv[2], -5) == '.atom') {
21 $item_id = substr($a->argv[2], 0, -5);
22 displayShowFeed($item_id, false);
27 if ($a->argv[3] == 'conversation.atom') {
28 $item_id = $a->argv[2];
29 displayShowFeed($item_id, true);
35 // If there is only one parameter, then check if this parameter could be a guid
40 // Does the local user have this item?
42 $r = dba::fetch_first("SELECT `id`, `parent`, `author-name`, `author-link`,
43 `author-avatar`, `network`, `body`, `uid`, `owner-link`
44 FROM `item` WHERE `visible` AND NOT `deleted` AND NOT `moderated`
45 AND `guid` = ? AND `uid` = ? LIMIT 1", $a->argv[1], local_user());
46 if (DBM::is_result($r)) {
47 $nick = $a->user["nickname"];
51 // Is it an item with uid=0?
52 if (!DBM::is_result($r)) {
53 $r = dba::fetch_first("SELECT `id`, `parent`, `author-name`, `author-link`,
54 `author-avatar`, `network`, `body`, `uid`, `owner-link`
55 FROM `item` WHERE `visible` AND NOT `deleted` AND NOT `moderated`
56 AND NOT `private` AND `uid` = 0
57 AND `guid` = ? LIMIT 1", $a->argv[1]);
60 if (!DBM::is_result($r)) {
62 notice(t('Item not found.') . EOL);
65 } elseif (($a->argc == 3) && ($nick == 'feed-item')) {
66 $r = dba::fetch_first("SELECT `id`, `parent`, `author-name`, `author-link`,
67 `author-avatar`, `network`, `body`, `uid`, `owner-link`
68 FROM `item` WHERE `visible` AND NOT `deleted` AND NOT `moderated`
69 AND NOT `private` AND `uid` = 0
70 AND `id` = ? LIMIT 1", $a->argv[2]);
73 if (DBM::is_result($r)) {
74 if (strstr($_SERVER['HTTP_ACCEPT'], 'application/atom+xml')) {
75 logger('Directly serving XML for id '.$r["id"], LOGGER_DEBUG);
76 displayShowFeed($r["id"], false);
79 if ($r["id"] != $r["parent"]) {
80 $r = dba::fetch_first("SELECT `id`, `author-name`, `author-link`, `author-avatar`, `network`, `body`, `uid`, `owner-link` FROM `item`
81 WHERE `item`.`visible` AND NOT `item`.`deleted` AND NOT `item`.`moderated`
82 AND `id` = ?", $r["parent"]);
85 $profiledata = display_fetchauthor($a, $r);
87 if (strstr(normalise_link($profiledata["url"]), normalise_link(System::baseUrl()))) {
88 $nickname = str_replace(normalise_link(System::baseUrl())."/profile/", "", normalise_link($profiledata["url"]));
90 if (($nickname != $a->user["nickname"])) {
91 $r = dba::fetch_first("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `contact`.`avatar-date` AS picdate, `user`.* FROM `profile`
92 INNER JOIN `contact` on `contact`.`uid` = `profile`.`uid` INNER JOIN `user` ON `profile`.`uid` = `user`.`uid`
93 WHERE `user`.`nickname` = ? AND `profile`.`is-default` AND `contact`.`self` LIMIT 1",
96 if (DBM::is_result($r)) {
99 $profiledata["network"] = NETWORK_DFRN;
101 $profiledata = array();
106 profile_load($a, $nick, 0, $profiledata);
109 function display_fetchauthor($a, $item) {
110 $profiledata = array();
111 $profiledata["uid"] = -1;
112 $profiledata["nickname"] = $item["author-name"];
113 $profiledata["name"] = $item["author-name"];
114 $profiledata["picdate"] = "";
115 $profiledata["photo"] = $item["author-avatar"];
116 $profiledata["url"] = $item["author-link"];
117 $profiledata["network"] = $item["network"];
119 // Check for a repeated message
121 $body = trim($item["body"]);
123 // Skip if it isn't a pure repeated messages
124 // Does it start with a share?
125 if (!$skip && strpos($body, "[share") > 0) {
128 // Does it end with a share?
129 if (!$skip && (strlen($body) > (strrpos($body, "[/share]") + 8))) {
133 $attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism","$1",$body);
134 // Skip if there is no shared message in there
135 if ($body == $attributes) {
142 preg_match("/author='(.*?)'/ism", $attributes, $matches);
143 if ($matches[1] != "") {
144 $profiledata["name"] = html_entity_decode($matches[1],ENT_QUOTES,'UTF-8');
146 preg_match('/author="(.*?)"/ism', $attributes, $matches);
147 if ($matches[1] != "") {
148 $profiledata["name"] = html_entity_decode($matches[1],ENT_QUOTES,'UTF-8');
151 preg_match("/profile='(.*?)'/ism", $attributes, $matches);
152 if ($matches[1] != "") {
153 $profiledata["url"] = $matches[1];
155 preg_match('/profile="(.*?)"/ism', $attributes, $matches);
156 if ($matches[1] != "") {
157 $profiledata["url"] = $matches[1];
160 preg_match("/avatar='(.*?)'/ism", $attributes, $matches);
161 if ($matches[1] != "") {
162 $profiledata["photo"] = $matches[1];
164 preg_match('/avatar="(.*?)"/ism', $attributes, $matches);
165 if ($matches[1] != "") {
166 $profiledata["photo"] = $matches[1];
168 $profiledata["nickname"] = $profiledata["name"];
169 $profiledata["network"] = GetProfileUsername($profiledata["url"], "", false, true);
171 $profiledata["address"] = "";
172 $profiledata["about"] = "";
175 $profiledata = Contact::getDetailsByURL($profiledata["url"], local_user(), $profiledata);
177 $profiledata["photo"] = System::removedBaseUrl($profiledata["photo"]);
180 if (in_array($profiledata["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS))) {
181 $profiledata["remoteconnect"] = System::baseUrl()."/follow?url=".urlencode($profiledata["url"]);
183 } elseif ($profiledata["network"] == NETWORK_DFRN) {
184 $connect = str_replace("/profile/", "/dfrn_request/", $profiledata["url"]);
185 $profiledata["remoteconnect"] = $connect;
188 return($profiledata);
191 function display_content(App $a, $update = false, $update_uid = 0) {
192 if (Config::get('system','block_public') && !local_user() && !remote_user()) {
193 notice(t('Public access denied.') . EOL);
197 require_once 'include/security.php';
198 require_once 'include/conversation.php';
199 require_once 'include/acl_selectors.php';
204 $item_id = $_REQUEST['item_id'];
205 $item = dba::select('item', ['uid'], ['id' => $item_id], ['limit' => 1]);
206 $a->profile = array('uid' => intval($item['uid']), 'profile_uid' => intval($item['uid']));
208 $item_id = (($a->argc > 2) ? $a->argv[2] : 0);
214 $r = dba::fetch_first("SELECT `id`, `parent` FROM `item`
215 WHERE `item`.`visible` AND NOT `item`.`deleted` AND NOT `item`.`moderated`
216 AND `guid` = ? AND `uid` = ?", $a->argv[1], local_user());
217 if (DBM::is_result($r)) {
219 $item_parent = $r["parent"];
223 if ($item_parent == 0) {
224 $r = dba::fetch_first("SELECT `item`.`id`, `item`.`parent` FROM `item`
225 WHERE `item`.`visible` AND NOT `item`.`deleted` AND NOT `item`.`moderated`
226 AND NOT `item`.`private` AND `item`.`uid` = 0
227 AND `item`.`guid` = ?", $a->argv[1]);
228 if (DBM::is_result($r)) {
230 $item_parent = $r["parent"];
238 notice(t('Item not found.').EOL);
242 // We are displaying an "alternate" link if that post was public. See issue 2864
243 $is_public = dba::exists('item', array('id' => $item_id, 'private' => false));
245 // For the atom feed the nickname doesn't matter at all, we only need the item id.
246 $alternate = System::baseUrl().'/display/feed-item/'.$item_id.'.atom';
247 $conversation = System::baseUrl().'/display/feed-item/'.$item_parent.'/conversation.atom';
253 $a->page['htmlhead'] .= replace_macros(get_markup_template('display-head.tpl'),
254 array('$alternate' => $alternate,
255 '$conversation' => $conversation));
260 $remote_contact = false;
264 if (is_array($_SESSION['remote'])) {
265 foreach ($_SESSION['remote'] as $v) {
266 if ($v['uid'] == $a->profile['uid']) {
267 $contact_id = $v['cid'];
274 $groups = Group::getIdsByContactId($contact_id);
275 $r = dba::fetch_first("SELECT * FROM `contact` WHERE `id` = ? AND `uid` = ? LIMIT 1",
279 if (DBM::is_result($r)) {
281 $remote_contact = true;
285 if (!$remote_contact) {
287 $contact_id = $_SESSION['cid'];
288 $contact = $a->contact;
292 $r = dba::fetch_first("SELECT * FROM `contact` WHERE `uid` = ? AND `self` LIMIT 1", $a->profile['uid']);
293 if (DBM::is_result($r)) {
294 $a->page_contact = $r;
296 $is_owner = (local_user() && (in_array($a->profile['profile_uid'], [local_user(), 0])) ? true : false);
298 if ($a->profile['hidewall'] && !$is_owner && !$remote_contact) {
299 notice(t('Access to this profile has been restricted.') . EOL);
303 // We need the editor here to be able to reshare an item.
307 'allow_location' => $a->user['allow_location'],
308 'default_location' => $a->user['default-location'],
309 'nickname' => $a->user['nickname'],
310 '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'),
311 'acl' => populate_acl($a->user, true),
313 'visitor' => 'block',
314 'profile_uid' => local_user(),
315 'acl_data' => construct_acl_data($a, $a->user), // For non-Javascript ACL selector
317 $o .= status_editor($a,$x,0,true);
320 $sql_extra = item_permissions_sql($a->profile['uid'], $remote_contact, $groups);
323 $r = dba::p("SELECT `id` FROM `item` WHERE
324 `item`.`parent` = (SELECT `parent` FROM `item` WHERE `id` = ?)
325 $sql_extra AND `unseen`",
329 if (dba::num_rows($r) == 0) {
334 $r = dba::p(item_query()."AND `item`.`parent` = (SELECT `parent` FROM `item` WHERE `id` = ?)
336 ORDER BY `parent` DESC, `gravity` ASC, `id` ASC",
340 if (!DBM::is_result($r)) {
341 notice(t('Item not found.') . EOL);
345 $s = dba::inArray($r);
347 if (local_user() && (local_user() == $a->profile['uid'])) {
348 $unseen = dba::select('item', array('id'), array('parent' => $s[0]['parent'], 'unseen' => true), array('limit' => 1));
349 if (DBM::is_result($unseen)) {
350 dba::update('item', array('unseen' => false), array('parent' => $s[0]['parent'], 'unseen' => true));
354 $items = conv_sort($s, "`commented`");
357 $o .= "<script> var netargs = '?f=&item_id=" . $item_id . "'; </script>";
359 $o .= conversation($a, $items, 'display', $update_uid);
361 // Preparing the meta header
362 require_once 'include/bbcode.php';
363 require_once 'include/html2plain.php';
364 $description = trim(html2plain(bbcode($s[0]["body"], false, false), 0, true));
365 $title = trim(html2plain(bbcode($s[0]["title"], false, false), 0, true));
366 $author_name = $s[0]["author-name"];
368 $image = $a->remove_baseurl($s[0]["author-thumb"]);
371 $title = $author_name;
374 // Limit the description to 160 characters
375 if (strlen($description) > 160) {
376 $description = substr($description, 0, 157) . '...';
379 $description = htmlspecialchars($description, ENT_COMPAT, 'UTF-8', true); // allow double encoding here
380 $title = htmlspecialchars($title, ENT_COMPAT, 'UTF-8', true); // allow double encoding here
381 $author_name = htmlspecialchars($author_name, ENT_COMPAT, 'UTF-8', true); // allow double encoding here
383 //<meta name="keywords" content="">
384 $a->page['htmlhead'] .= '<meta name="author" content="'.$author_name.'" />'."\n";
385 $a->page['htmlhead'] .= '<meta name="title" content="'.$title.'" />'."\n";
386 $a->page['htmlhead'] .= '<meta name="fulltitle" content="'.$title.'" />'."\n";
387 $a->page['htmlhead'] .= '<meta name="description" content="'.$description.'" />'."\n";
389 // Schema.org microdata
390 $a->page['htmlhead'] .= '<meta itemprop="name" content="'.$title.'" />'."\n";
391 $a->page['htmlhead'] .= '<meta itemprop="description" content="'.$description.'" />'."\n";
392 $a->page['htmlhead'] .= '<meta itemprop="image" content="'.$image.'" />'."\n";
393 $a->page['htmlhead'] .= '<meta itemprop="author" content="'.$author_name.'" />'."\n";
396 $a->page['htmlhead'] .= '<meta name="twitter:card" content="summary" />'."\n";
397 $a->page['htmlhead'] .= '<meta name="twitter:title" content="'.$title.'" />'."\n";
398 $a->page['htmlhead'] .= '<meta name="twitter:description" content="'.$description.'" />'."\n";
399 $a->page['htmlhead'] .= '<meta name="twitter:image" content="'.System::baseUrl().'/'.$image.'" />'."\n";
400 $a->page['htmlhead'] .= '<meta name="twitter:url" content="'.$s[0]["plink"].'" />'."\n";
403 $a->page['htmlhead'] .= '<meta name="DC.title" content="'.$title.'" />'."\n";
404 $a->page['htmlhead'] .= '<meta name="DC.description" content="'.$description.'" />'."\n";
407 $a->page['htmlhead'] .= '<meta property="og:type" content="website" />'."\n";
408 $a->page['htmlhead'] .= '<meta property="og:title" content="'.$title.'" />'."\n";
409 $a->page['htmlhead'] .= '<meta property="og:image" content="'.System::baseUrl().'/'.$image.'" />'."\n";
410 $a->page['htmlhead'] .= '<meta property="og:url" content="'.$s[0]["plink"].'" />'."\n";
411 $a->page['htmlhead'] .= '<meta property="og:description" content="'.$description.'" />'."\n";
412 $a->page['htmlhead'] .= '<meta name="og:article:author" content="'.$author_name.'" />'."\n";
418 function displayShowFeed($item_id, $conversation) {
419 $xml = DFRN::itemFeed($item_id, $conversation);
421 http_status_exit(500);
423 header("Content-type: application/atom+xml");