3 function display_init(&$a) {
5 if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
9 $nick = (($a->argc > 1) ? $a->argv[1] : '');
10 $profiledata = array();
12 // If there is only one parameter, then check if this parameter could be a guid
17 // Does the local user have this item?
19 $r = q("SELECT `id`, `parent`, `author-name`, `author-link`, `author-avatar`, `network`, `body`, `uid` FROM `item`
20 WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
21 AND `guid` = '%s' AND `uid` = %d", dbesc($a->argv[1]), local_user());
23 $nick = $a->user["nickname"];
24 $itemuid = local_user();
28 // Or is it anywhere on the server?
30 $r = q("SELECT `user`.`nickname`, `item`.`id`, `item`.`parent`, `item`.`author-name`,
31 `item`.`author-link`, `item`.`author-avatar`, `item`.`network`, `item`.`uid`, `item`.`body`
32 FROM `item` INNER JOIN `user` ON `user`.`uid` = `item`.`uid`
33 WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
34 AND `item`.`allow_cid` = '' AND `item`.`allow_gid` = ''
35 AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = ''
36 AND `item`.`private` = 0 AND NOT `user`.`hidewall`
37 AND `item`.`guid` = '%s'", dbesc($a->argv[1]));
38 // AND `item`.`private` = 0 AND `item`.`wall` = 1
40 $nick = $r[0]["nickname"];
41 $itemuid = $r[0]["uid"];
45 // Is it an item with uid=0?
47 $r = q("SELECT `item`.`id`, `item`.`parent`, `item`.`author-name`,
48 `item`.`author-link`, `item`.`author-avatar`, `item`.`network`, `item`.`uid`, `item`.`body`
49 FROM `item` WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
50 AND `item`.`allow_cid` = '' AND `item`.`allow_gid` = ''
51 AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = ''
52 AND `item`.`private` = 0 AND `item`.`uid` = 0
53 AND `item`.`guid` = '%s'", dbesc($a->argv[1]));
54 // AND `item`.`private` = 0 AND `item`.`wall` = 1
57 if ($r[0]["id"] != $r[0]["parent"])
58 $r = q("SELECT `id`, `author-name`, `author-link`, `author-avatar`, `network`, `body`, `uid` FROM `item`
59 WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
60 AND `id` = %d", $r[0]["parent"]);
62 $profiledata = display_fetchauthor($a, $r[0]);
64 if (strstr(normalise_link($profiledata["url"]), normalise_link($a->get_baseurl()))) {
65 $nickname = str_replace(normalise_link($a->get_baseurl())."/profile/", "", normalise_link($profiledata["url"]));
67 if (($nickname != $a->user["nickname"])) {
68 $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `contact`.`avatar-date` AS picdate, `user`.* FROM `profile`
69 INNER JOIN `contact` on `contact`.`uid` = `profile`.`uid` INNER JOIN `user` ON `profile`.`uid` = `user`.`uid`
70 WHERE `user`.`nickname` = '%s' AND `profile`.`is-default` = 1 and `contact`.`self` = 1 LIMIT 1",
76 $profiledata["network"] = NETWORK_DFRN;
78 $profiledata = array();
82 notice( t('Item not found.') . EOL);
87 profile_load($a, $nick, 0, $profiledata);
91 function display_fetchauthor($a, $item) {
92 require_once("mod/proxy.php");
93 require_once("include/bbcode.php");
95 $profiledata = array();
96 $profiledata["uid"] = -1;
97 $profiledata["nickname"] = $item["author-name"];
98 $profiledata["name"] = $item["author-name"];
99 $profiledata["picdate"] = "";
100 $profiledata["photo"] = proxy_url($item["author-avatar"], false, PROXY_SIZE_SMALL);
101 $profiledata["url"] = $item["author-link"];
102 $profiledata["network"] = $item["network"];
104 // Check for a repeated message
106 $body = trim($item["body"]);
108 // Skip if it isn't a pure repeated messages
109 // Does it start with a share?
110 if (!$skip AND strpos($body, "[share") > 0)
113 // Does it end with a share?
114 if (!$skip AND (strlen($body) > (strrpos($body, "[/share]") + 8)))
118 $attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism","$1",$body);
119 // Skip if there is no shared message in there
120 if ($body == $attributes)
126 preg_match("/author='(.*?)'/ism", $attributes, $matches);
127 if ($matches[1] != "")
128 $profiledata["name"] = html_entity_decode($matches[1],ENT_QUOTES,'UTF-8');
130 preg_match('/author="(.*?)"/ism', $attributes, $matches);
131 if ($matches[1] != "")
132 $profiledata["name"] = html_entity_decode($matches[1],ENT_QUOTES,'UTF-8');
135 preg_match("/profile='(.*?)'/ism", $attributes, $matches);
136 if ($matches[1] != "")
137 $profiledata["url"] = $matches[1];
139 preg_match('/profile="(.*?)"/ism', $attributes, $matches);
140 if ($matches[1] != "")
141 $profiledata["url"] = $matches[1];
144 preg_match("/avatar='(.*?)'/ism", $attributes, $matches);
145 if ($matches[1] != "")
146 $profiledata["photo"] = $matches[1];
148 preg_match('/avatar="(.*?)"/ism', $attributes, $matches);
149 if ($matches[1] != "")
150 $profiledata["photo"] = $matches[1];
152 $profiledata["nickname"] = $profiledata["name"];
153 $profiledata["network"] = GetProfileUsername($profiledata["url"], "", false, true);
155 $profiledata["address"] = "";
156 $profiledata["about"] = "";
159 // Fetching further contact data from the contact table
160 $r = q("SELECT `uid`, `network`, `photo`, `nick`, `location`, `about` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d AND `network` = '%s'",
161 dbesc(normalise_link($profiledata["url"])), intval($item["uid"]), dbesc($item["network"]));
164 $r = q("SELECT `uid`, `network`, `photo`, `nick`, `location`, `about` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d",
165 dbesc(normalise_link($profiledata["url"])), intval($item["uid"]));
168 $r = q("SELECT `uid`, `network`, `photo`, `nick`, `location`, `about` FROM `contact` WHERE `nurl` = '%s' AND `uid` = 0",
169 dbesc(normalise_link($profiledata["url"])));
172 if ((($r[0]["uid"] != local_user()) OR !local_user()) AND ($profiledata["network"] == NETWORK_DIASPORA)) {
173 $r[0]["location"] = "";
177 $profiledata["photo"] = proxy_url($r[0]["photo"], false, PROXY_SIZE_SMALL);
178 $profiledata["address"] = bbcode($r[0]["location"]);
179 $profiledata["about"] = bbcode($r[0]["about"]);
180 if ($r[0]["nick"] != "")
181 $profiledata["nickname"] = $r[0]["nick"];
184 // Fetching profile data from unique contacts
185 $r = q("SELECT `avatar`, `nick`, `location`, `about` FROM `unique_contacts` WHERE `url` = '%s'", dbesc(normalise_link($profiledata["url"])));
187 if ($profiledata["photo"] == "")
188 $profiledata["photo"] = proxy_url($r[0]["avatar"], false, PROXY_SIZE_SMALL);
189 if (($profiledata["address"] == "") AND ($profiledata["network"] != NETWORK_DIASPORA))
190 $profiledata["address"] = bbcode($r[0]["location"]);
191 if (($profiledata["about"] == "") AND ($profiledata["network"] != NETWORK_DIASPORA))
192 $profiledata["about"] = bbcode($r[0]["about"]);
193 if (($profiledata["nickname"] == "") AND ($r[0]["nick"] != ""))
194 $profiledata["nickname"] = $r[0]["nick"];
198 if (in_array($profiledata["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS)))
199 $profiledata["remoteconnect"] = $a->get_baseurl()."/follow?url=".urlencode($profiledata["url"]);
200 } elseif ($profiledata["network"] == NETWORK_DFRN) {
201 $connect = str_replace("/profile/", "/dfrn_request/", $profiledata["url"]);
202 $profiledata["remoteconnect"] = $connect;
205 return($profiledata);
208 function display_content(&$a, $update = 0) {
210 if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
211 notice( t('Public access denied.') . EOL);
215 require_once("include/bbcode.php");
216 require_once('include/security.php');
217 require_once('include/conversation.php');
218 require_once('include/acl_selectors.php');
223 $a->page['htmlhead'] .= replace_macros(get_markup_template('display-head.tpl'), array());
227 $nick = $_REQUEST['nick'];
230 $nick = (($a->argc > 1) ? $a->argv[1] : '');
234 $item_id = $_REQUEST['item_id'];
235 $a->profile = array('uid' => intval($update), 'profile_uid' => intval($update));
238 $item_id = (($a->argc > 2) ? $a->argv[2] : 0);
244 $r = q("SELECT `id` FROM `item`
245 WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
246 AND `guid` = '%s' AND `uid` = %d", dbesc($a->argv[1]), local_user());
248 $item_id = $r[0]["id"];
249 $nick = $a->user["nickname"];
254 $r = q("SELECT `user`.`nickname`, `item`.`id` FROM `item` INNER JOIN `user` ON `user`.`uid` = `item`.`uid`
255 WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
256 AND `item`.`allow_cid` = '' AND `item`.`allow_gid` = ''
257 AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = ''
258 AND `item`.`private` = 0 AND NOT `user`.`hidewall`
259 AND `item`.`guid` = '%s'", dbesc($a->argv[1]));
260 // AND `item`.`private` = 0 AND `item`.`wall` = 1
262 $item_id = $r[0]["id"];
263 $nick = $r[0]["nickname"];
267 $r = q("SELECT `item`.`id` FROM `item`
268 WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
269 AND `item`.`allow_cid` = '' AND `item`.`allow_gid` = ''
270 AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = ''
271 AND `item`.`private` = 0 AND `item`.`uid` = 0
272 AND `item`.`guid` = '%s'", dbesc($a->argv[1]));
273 // AND `item`.`private` = 0 AND `item`.`wall` = 1
275 $item_id = $r[0]["id"];
283 notice( t('Item not found.') . EOL);
290 $remote_contact = false;
294 if(is_array($_SESSION['remote'])) {
295 foreach($_SESSION['remote'] as $v) {
296 if($v['uid'] == $a->profile['uid']) {
297 $contact_id = $v['cid'];
304 $groups = init_groups_visitor($contact_id);
305 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
307 intval($a->profile['uid'])
311 $remote_contact = true;
315 if(! $remote_contact) {
317 $contact_id = $_SESSION['cid'];
318 $contact = $a->contact;
322 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
323 intval($a->profile['uid'])
326 $a->page_contact = $r[0];
328 $is_owner = ((local_user()) && (local_user() == $a->profile['profile_uid']) ? true : false);
330 if($a->profile['hidewall'] && (! $is_owner) && (! $remote_contact)) {
331 notice( t('Access to this profile has been restricted.') . EOL);
338 'allow_location' => $a->user['allow_location'],
339 'default_location' => $a->user['default-location'],
340 'nickname' => $a->user['nickname'],
341 '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'),
342 'acl' => populate_acl($a->user, true),
344 'visitor' => 'block',
345 'profile_uid' => local_user(),
346 'acl_data' => construct_acl_data($a, $a->user), // For non-Javascript ACL selector
348 $o .= status_editor($a,$x,0,true);
351 $sql_extra = item_permissions_sql($a->profile['uid'],$remote_contact,$groups);
353 // AND `item`.`parent` = ( SELECT `parent` FROM `item` FORCE INDEX (PRIMARY, `uri`) WHERE ( `id` = '%s' OR `uri` = '%s' ))
357 $r = q("SELECT id FROM item WHERE item.uid = %d
358 AND `item`.`parent` = (SELECT `parent` FROM `item` WHERE (`id` = '%s' OR `uri` = '%s'))
359 $sql_extra AND unseen = 1",
360 intval($a->profile['uid']),
369 // AND `item`.`parent` = ( SELECT `parent` FROM `item` FORCE INDEX (PRIMARY, `uri`) WHERE ( `id` = '%s' OR `uri` = '%s' )
371 $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, `item`.`network` AS `item_network`,
372 `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`,
373 `contact`.`network`, `contact`.`thumb`, `contact`.`self`, `contact`.`writable`,
374 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
375 FROM `item` INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
376 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
377 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
378 and `item`.`moderated` = 0
379 AND `item`.`parent` = (SELECT `parent` FROM `item` WHERE (`id` = '%s' OR `uri` = '%s')
382 ORDER BY `parent` DESC, `gravity` ASC, `id` ASC",
383 intval($a->profile['uid']),
386 intval($a->profile['uid'])
389 if(!$r && local_user()) {
390 // Check if this is another person's link to a post that we have
391 $r = q("SELECT `item`.uri FROM `item`
392 WHERE (`item`.`id` = '%s' OR `item`.`uri` = '%s' )
398 $item_uri = $r[0]['uri'];
399 // AND `item`.`parent` = ( SELECT `parent` FROM `item` FORCE INDEX (PRIMARY, `uri`) WHERE `uri` = '%s' AND uid = %d )
401 $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, `item`.`network` AS `item_network`,
402 `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`,
403 `contact`.`network`, `contact`.`thumb`, `contact`.`self`, `contact`.`writable`,
404 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
405 FROM `item` INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
406 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
407 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
408 and `item`.`moderated` = 0
409 AND `item`.`parent` = (SELECT `parent` FROM `item` WHERE `uri` = '%s' AND uid = %d)
410 ORDER BY `parent` DESC, `gravity` ASC, `id` ASC ",
411 intval(local_user()),
421 if((local_user()) && (local_user() == $a->profile['uid'])) {
422 q("UPDATE `item` SET `unseen` = 0
423 WHERE `parent` = %d AND `unseen` = 1",
424 intval($r[0]['parent'])
428 $items = conv_sort($r,"`commented`");
431 $o .= "<script> var netargs = '?f=&nick=" . $nick . "&item_id=" . $item_id . "'; </script>";
432 $o .= conversation($a,$items,'display', $update);
434 // Preparing the meta header
435 require_once('include/bbcode.php');
436 require_once("include/html2plain.php");
437 $description = trim(html2plain(bbcode($r[0]["body"], false, false), 0, true));
438 $title = trim(html2plain(bbcode($r[0]["title"], false, false), 0, true));
439 $author_name = $r[0]["author-name"];
443 $image = $r[0]["thumb"];
446 $title = $author_name;
448 $description = htmlspecialchars($description, ENT_COMPAT, 'UTF-8', true); // allow double encoding here
449 $title = htmlspecialchars($title, ENT_COMPAT, 'UTF-8', true); // allow double encoding here
450 $author_name = htmlspecialchars($author_name, ENT_COMPAT, 'UTF-8', true); // allow double encoding here
452 //<meta name="keywords" content="">
453 $a->page['htmlhead'] .= '<meta name="author" content="'.$author_name.'" />'."\n";
454 $a->page['htmlhead'] .= '<meta name="title" content="'.$title.'" />'."\n";
455 $a->page['htmlhead'] .= '<meta name="fulltitle" content="'.$title.'" />'."\n";
456 $a->page['htmlhead'] .= '<meta name="description" content="'.$description.'" />'."\n";
458 // Schema.org microdata
459 $a->page['htmlhead'] .= '<meta itemprop="name" content="'.$title.'" />'."\n";
460 $a->page['htmlhead'] .= '<meta itemprop="description" content="'.$description.'" />'."\n";
461 $a->page['htmlhead'] .= '<meta itemprop="image" content="'.$image.'" />'."\n";
462 $a->page['htmlhead'] .= '<meta itemprop="author" content="'.$author_name.'" />'."\n";
465 $a->page['htmlhead'] .= '<meta name="twitter:card" content="summary" />'."\n";
466 $a->page['htmlhead'] .= '<meta name="twitter:title" content="'.$title.'" />'."\n";
467 $a->page['htmlhead'] .= '<meta name="twitter:description" content="'.$description.'" />'."\n";
468 $a->page['htmlhead'] .= '<meta name="twitter:image" content="'.$image.'" />'."\n";
469 $a->page['htmlhead'] .= '<meta name="twitter:url" content="'.$r[0]["plink"].'" />'."\n";
472 $a->page['htmlhead'] .= '<meta name="DC.title" content="'.$title.'" />'."\n";
473 $a->page['htmlhead'] .= '<meta name="DC.description" content="'.$description.'" />'."\n";
476 $a->page['htmlhead'] .= '<meta property="og:type" content="website" />'."\n";
477 $a->page['htmlhead'] .= '<meta property="og:title" content="'.$title.'" />'."\n";
478 $a->page['htmlhead'] .= '<meta property="og:image" content="'.$image.'" />'."\n";
479 $a->page['htmlhead'] .= '<meta property="og:url" content="'.$r[0]["plink"].'" />'."\n";
480 $a->page['htmlhead'] .= '<meta property="og:description" content="'.$description.'" />'."\n";
481 $a->page['htmlhead'] .= '<meta name="og:article:author" content="'.$author_name.'" />'."\n";
487 $r = q("SELECT `id`,`deleted` FROM `item` WHERE `id` = '%s' OR `uri` = '%s' LIMIT 1",
492 if($r[0]['deleted']) {
493 notice( t('Item has been removed.') . EOL );
496 notice( t('Permission denied.') . EOL );
500 notice( t('Item not found.') . EOL );