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", $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'", $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'", $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"]);
101 $profiledata["url"] = $item["author-link"];
102 $profiledata["network"] = $item["network"];
104 // Fetching further contact data from the contact table
105 $r = q("SELECT `photo`, `nick`, `location`, `about` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d",
106 normalise_link($profiledata["url"]), $item["uid"]);
108 $profiledata["photo"] = proxy_url($r[0]["photo"]);
109 $profiledata["address"] = proxy_parse_html(bbcode($r[0]["location"]));
110 $profiledata["about"] = proxy_parse_html(bbcode($r[0]["about"]));
111 if ($r[0]["nick"] != "")
112 $profiledata["nickname"] = $r[0]["nick"];
115 // Fetching profile data from unique contacts
116 $r = q("SELECT `avatar`, `nick`, `location`, `about` FROM `unique_contacts` WHERE `url` = '%s'", normalise_link($profiledata["url"]));
118 if ($profiledata["photo"] == "")
119 $profiledata["photo"] = proxy_url($r[0]["avatar"]);
120 if ($profiledata["address"] == "")
121 $profiledata["address"] = proxy_parse_html(bbcode($r[0]["location"]));
122 if ($profiledata["about"] == "")
123 $profiledata["about"] = proxy_parse_html(bbcode($r[0]["about"]));
124 if (($profiledata["nickname"] == "") AND ($r[0]["nick"] != ""))
125 $profiledata["nickname"] = $r[0]["nick"];
128 // Check for a repeated message
130 $body = trim($item["body"]);
132 // Skip if it isn't a pure repeated messages
133 // Does it start with a share?
134 if (!$skip AND strpos($body, "[share") > 0)
137 // Does it end with a share?
138 if (!$skip AND (strlen($body) > (strrpos($body, "[/share]") + 8)))
142 $attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism","$1",$body);
143 // Skip if there is no shared message in there
144 if ($body == $attributes)
150 preg_match("/author='(.*?)'/ism", $attributes, $matches);
151 if ($matches[1] != "")
152 $profiledata["name"] = html_entity_decode($matches[1],ENT_QUOTES,'UTF-8');
154 preg_match('/author="(.*?)"/ism', $attributes, $matches);
155 if ($matches[1] != "")
156 $profiledata["name"] = html_entity_decode($matches[1],ENT_QUOTES,'UTF-8');
159 preg_match("/profile='(.*?)'/ism", $attributes, $matches);
160 if ($matches[1] != "")
161 $profiledata["url"] = $matches[1];
163 preg_match('/profile="(.*?)"/ism', $attributes, $matches);
164 if ($matches[1] != "")
165 $profiledata["url"] = $matches[1];
168 preg_match("/avatar='(.*?)'/ism", $attributes, $matches);
169 if ($matches[1] != "")
170 $profiledata["photo"] = $matches[1];
172 preg_match('/avatar="(.*?)"/ism', $attributes, $matches);
173 if ($matches[1] != "")
174 $profiledata["photo"] = $matches[1];
176 $profiledata["nickname"] = $profiledata["name"];
177 $profiledata["network"] = GetProfileUsername($profiledata["url"], "", false, true);
179 $profiledata["address"] = "";
180 $profiledata["about"] = "";
182 // Fetching profile data from unique contacts
183 if ($profiledata["url"] != "") {
184 $r = q("SELECT `avatar`, `nick`, `location`, `about` FROM `unique_contacts` WHERE `url` = '%s'", normalise_link($profiledata["url"]));
186 $profiledata["photo"] = proxy_url($r[0]["avatar"]);
187 $profiledata["address"] = proxy_parse_html(bbcode($r[0]["location"]));
188 $profiledata["about"] = proxy_parse_html(bbcode($r[0]["about"]));
189 if ($r[0]["nick"] != "")
190 $profiledata["nickname"] = $r[0]["nick"];
196 if (in_array($profiledata["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS)))
197 $profiledata["remoteconnect"] = $a->get_baseurl()."/follow?url=".urlencode($profiledata["url"]);
198 //if ($profiledata["network"] == NETWORK_DFRN) {
199 // $connect = str_replace("/profile/", "/dfrn_request/", $profiledata["url"])."&addr=".bin2hex($a->get_baseurl()."/profile/".$a->user["nickname"]);
200 // $profiledata["remoteconnect"] = $connect;
201 //} elseif ($profiledata["network"] == NETWORK_DIASPORA)
202 // $profiledata["remoteconnect"] = $a->get_baseurl()."/contacts?add=".GetProfileUsername($profiledata["url"], "", true);
203 } elseif ($profiledata["network"] == NETWORK_DFRN) {
204 $connect = str_replace("/profile/", "/dfrn_request/", $profiledata["url"]);
205 $profiledata["remoteconnect"] = $connect;
208 return($profiledata);
211 function display_content(&$a, $update = 0) {
213 if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
214 notice( t('Public access denied.') . EOL);
218 require_once("include/bbcode.php");
219 require_once('include/security.php');
220 require_once('include/conversation.php');
221 require_once('include/acl_selectors.php');
226 $a->page['htmlhead'] .= replace_macros(get_markup_template('display-head.tpl'), array());
230 $nick = $_REQUEST['nick'];
233 $nick = (($a->argc > 1) ? $a->argv[1] : '');
237 $item_id = $_REQUEST['item_id'];
238 $a->profile = array('uid' => intval($update), 'profile_uid' => intval($update));
241 $item_id = (($a->argc > 2) ? $a->argv[2] : 0);
247 $r = q("SELECT `id` FROM `item`
248 WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
249 AND `guid` = '%s' AND `uid` = %d", $a->argv[1], local_user());
251 $item_id = $r[0]["id"];
252 $nick = $a->user["nickname"];
257 $r = q("SELECT `user`.`nickname`, `item`.`id` FROM `item` INNER JOIN `user` ON `user`.`uid` = `item`.`uid`
258 WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
259 AND `item`.`allow_cid` = '' AND `item`.`allow_gid` = ''
260 AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = ''
261 AND `item`.`private` = 0 AND NOT `user`.`hidewall`
262 AND `item`.`guid` = '%s'", $a->argv[1]);
263 // AND `item`.`private` = 0 AND `item`.`wall` = 1
265 $item_id = $r[0]["id"];
266 $nick = $r[0]["nickname"];
270 $r = q("SELECT `item`.`id` FROM `item`
271 WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
272 AND `item`.`allow_cid` = '' AND `item`.`allow_gid` = ''
273 AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = ''
274 AND `item`.`private` = 0 AND `item`.`uid` = 0
275 AND `item`.`guid` = '%s'", $a->argv[1]);
276 // AND `item`.`private` = 0 AND `item`.`wall` = 1
278 $item_id = $r[0]["id"];
286 notice( t('Item not found.') . EOL);
293 $remote_contact = false;
297 if(is_array($_SESSION['remote'])) {
298 foreach($_SESSION['remote'] as $v) {
299 if($v['uid'] == $a->profile['uid']) {
300 $contact_id = $v['cid'];
307 $groups = init_groups_visitor($contact_id);
308 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
310 intval($a->profile['uid'])
314 $remote_contact = true;
318 if(! $remote_contact) {
320 $contact_id = $_SESSION['cid'];
321 $contact = $a->contact;
325 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
326 intval($a->profile['uid'])
329 $a->page_contact = $r[0];
331 $is_owner = ((local_user()) && (local_user() == $a->profile['profile_uid']) ? true : false);
333 if($a->profile['hidewall'] && (! $is_owner) && (! $remote_contact)) {
334 notice( t('Access to this profile has been restricted.') . EOL);
339 $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false);
343 'allow_location' => $a->user['allow_location'],
344 'default_location' => $a->user['default-location'],
345 'nickname' => $a->user['nickname'],
346 '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'),
347 'acl' => populate_acl($a->user, $celeb),
349 'visitor' => 'block',
350 'profile_uid' => local_user(),
351 'acl_data' => construct_acl_data($a, $a->user), // For non-Javascript ACL selector
353 $o .= status_editor($a,$x,0,true);
356 $sql_extra = item_permissions_sql($a->profile['uid'],$remote_contact,$groups);
358 // AND `item`.`parent` = ( SELECT `parent` FROM `item` FORCE INDEX (PRIMARY, `uri`) WHERE ( `id` = '%s' OR `uri` = '%s' ))
362 $r = q("SELECT id FROM item WHERE item.uid = %d
363 AND `item`.`parent` = (SELECT `parent` FROM `item` WHERE (`id` = '%s' OR `uri` = '%s'))
364 $sql_extra AND unseen = 1",
365 intval($a->profile['uid']),
374 // AND `item`.`parent` = ( SELECT `parent` FROM `item` FORCE INDEX (PRIMARY, `uri`) WHERE ( `id` = '%s' OR `uri` = '%s' )
376 $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, `item`.`network` AS `item_network`,
377 `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`,
378 `contact`.`network`, `contact`.`thumb`, `contact`.`self`, `contact`.`writable`,
379 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
380 FROM `item` INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
381 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
382 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
383 and `item`.`moderated` = 0
384 AND `item`.`parent` = (SELECT `parent` FROM `item` WHERE (`id` = '%s' OR `uri` = '%s')
387 ORDER BY `parent` DESC, `gravity` ASC, `id` ASC",
388 intval($a->profile['uid']),
391 intval($a->profile['uid'])
394 if(!$r && local_user()) {
395 // Check if this is another person's link to a post that we have
396 $r = q("SELECT `item`.uri FROM `item`
397 WHERE (`item`.`id` = '%s' OR `item`.`uri` = '%s' )
403 $item_uri = $r[0]['uri'];
404 // AND `item`.`parent` = ( SELECT `parent` FROM `item` FORCE INDEX (PRIMARY, `uri`) WHERE `uri` = '%s' AND uid = %d )
406 $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, `item`.`network` AS `item_network`,
407 `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`,
408 `contact`.`network`, `contact`.`thumb`, `contact`.`self`, `contact`.`writable`,
409 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
410 FROM `item` INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
411 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
412 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
413 and `item`.`moderated` = 0
414 AND `item`.`parent` = (SELECT `parent` FROM `item` WHERE `uri` = '%s' AND uid = %d)
415 ORDER BY `parent` DESC, `gravity` ASC, `id` ASC ",
416 intval(local_user()),
426 if((local_user()) && (local_user() == $a->profile['uid'])) {
427 q("UPDATE `item` SET `unseen` = 0
428 WHERE `parent` = %d AND `unseen` = 1",
429 intval($r[0]['parent'])
433 $items = conv_sort($r,"`commented`");
436 $o .= "<script> var netargs = '?f=&nick=" . $nick . "&item_id=" . $item_id . "'; </script>";
437 $o .= conversation($a,$items,'display', $update);
439 // Preparing the meta header
440 require_once('include/bbcode.php');
441 require_once("include/html2plain.php");
442 $description = trim(html2plain(bbcode($r[0]["body"], false, false), 0, true));
443 $title = trim(html2plain(bbcode($r[0]["title"], false, false), 0, true));
444 $author_name = $r[0]["author-name"];
448 $image = $r[0]["thumb"];
451 $title = $author_name;
453 $description = htmlspecialchars($description, ENT_COMPAT, 'UTF-8', true); // allow double encoding here
454 $title = htmlspecialchars($title, ENT_COMPAT, 'UTF-8', true); // allow double encoding here
455 $author_name = htmlspecialchars($author_name, ENT_COMPAT, 'UTF-8', true); // allow double encoding here
457 //<meta name="keywords" content="">
458 $a->page['htmlhead'] .= '<meta name="author" content="'.$author_name.'" />'."\n";
459 $a->page['htmlhead'] .= '<meta name="title" content="'.$title.'" />'."\n";
460 $a->page['htmlhead'] .= '<meta name="fulltitle" content="'.$title.'" />'."\n";
461 $a->page['htmlhead'] .= '<meta name="description" content="'.$description.'" />'."\n";
463 // Schema.org microdata
464 $a->page['htmlhead'] .= '<meta itemprop="name" content="'.$title.'" />'."\n";
465 $a->page['htmlhead'] .= '<meta itemprop="description" content="'.$description.'" />'."\n";
466 $a->page['htmlhead'] .= '<meta itemprop="image" content="'.$image.'" />'."\n";
467 $a->page['htmlhead'] .= '<meta itemprop="author" content="'.$author_name.'" />'."\n";
470 $a->page['htmlhead'] .= '<meta name="twitter:card" content="summary" />'."\n";
471 $a->page['htmlhead'] .= '<meta name="twitter:title" content="'.$title.'" />'."\n";
472 $a->page['htmlhead'] .= '<meta name="twitter:description" content="'.$description.'" />'."\n";
473 $a->page['htmlhead'] .= '<meta name="twitter:image" content="'.$image.'" />'."\n";
474 $a->page['htmlhead'] .= '<meta name="twitter:url" content="'.$r[0]["plink"].'" />'."\n";
477 $a->page['htmlhead'] .= '<meta name="DC.title" content="'.$title.'" />'."\n";
478 $a->page['htmlhead'] .= '<meta name="DC.description" content="'.$description.'" />'."\n";
481 $a->page['htmlhead'] .= '<meta property="og:type" content="website" />'."\n";
482 $a->page['htmlhead'] .= '<meta property="og:title" content="'.$title.'" />'."\n";
483 $a->page['htmlhead'] .= '<meta property="og:image" content="'.$image.'" />'."\n";
484 $a->page['htmlhead'] .= '<meta property="og:url" content="'.$r[0]["plink"].'" />'."\n";
485 $a->page['htmlhead'] .= '<meta property="og:description" content="'.$description.'" />'."\n";
486 $a->page['htmlhead'] .= '<meta name="og:article:author" content="'.$author_name.'" />'."\n";
492 $r = q("SELECT `id`,`deleted` FROM `item` WHERE `id` = '%s' OR `uri` = '%s' LIMIT 1",
497 if($r[0]['deleted']) {
498 notice( t('Item has been removed.') . EOL );
501 notice( t('Permission denied.') . EOL );
505 notice( t('Item not found.') . EOL );