]> git.mxchange.org Git - friendica.git/blob - include/conversation.php
Merge pull request #1526 from fraengii/20150421-Bugs-and-Issues.md
[friendica.git] / include / conversation.php
1 <?php
2
3 require_once("include/bbcode.php");
4 require_once("include/acl_selectors.php");
5
6
7 // Note: the code in 'item_extract_images' and 'item_redir_and_replace_images'
8 // is identical to the code in mod/message.php for 'item_extract_images' and
9 // 'item_redir_and_replace_images'
10 if(! function_exists('item_extract_images')) {
11 function item_extract_images($body) {
12
13         $saved_image = array();
14         $orig_body = $body;
15         $new_body = '';
16
17         $cnt = 0;
18         $img_start = strpos($orig_body, '[img');
19         $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
20         $img_end = ($img_start !== false ? strpos(substr($orig_body, $img_start), '[/img]') : false);
21         while(($img_st_close !== false) && ($img_end !== false)) {
22
23                 $img_st_close++; // make it point to AFTER the closing bracket
24                 $img_end += $img_start;
25
26                 if(! strcmp(substr($orig_body, $img_start + $img_st_close, 5), 'data:')) {
27                         // This is an embedded image
28
29                         $saved_image[$cnt] = substr($orig_body, $img_start + $img_st_close, $img_end - ($img_start + $img_st_close));
30                         $new_body = $new_body . substr($orig_body, 0, $img_start) . '[!#saved_image' . $cnt . '#!]';
31
32                         $cnt++;
33                 }
34                 else
35                         $new_body = $new_body . substr($orig_body, 0, $img_end + strlen('[/img]'));
36
37                 $orig_body = substr($orig_body, $img_end + strlen('[/img]'));
38
39                 if($orig_body === false) // in case the body ends on a closing image tag
40                         $orig_body = '';
41
42                 $img_start = strpos($orig_body, '[img');
43                 $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
44                 $img_end = ($img_start !== false ? strpos(substr($orig_body, $img_start), '[/img]') : false);
45         }
46
47         $new_body = $new_body . $orig_body;
48
49         return array('body' => $new_body, 'images' => $saved_image);
50 }}
51
52 if(! function_exists('item_redir_and_replace_images')) {
53 function item_redir_and_replace_images($body, $images, $cid) {
54
55         $origbody = $body;
56         $newbody = '';
57
58         $cnt = 1;
59         $pos = get_bb_tag_pos($origbody, 'url', 1);
60         while($pos !== false && $cnt < 1000) {
61
62                 $search = '/\[url\=(.*?)\]\[!#saved_image([0-9]*)#!\]\[\/url\]' . '/is';
63                 $replace = '[url=' . z_path() . '/redir/' . $cid
64                                    . '?f=1&url=' . '$1' . '][!#saved_image' . '$2' .'#!][/url]';
65
66                 $newbody .= substr($origbody, 0, $pos['start']['open']);
67                 $subject = substr($origbody, $pos['start']['open'], $pos['end']['close'] - $pos['start']['open']);
68                 $origbody = substr($origbody, $pos['end']['close']);
69                 if($origbody === false)
70                         $origbody = '';
71
72                 $subject = preg_replace($search, $replace, $subject);
73                 $newbody .= $subject;
74
75                 $cnt++;
76                 $pos = get_bb_tag_pos($origbody, 'url', 1);
77         }
78         $newbody .= $origbody;
79
80         $cnt = 0;
81         foreach($images as $image) {
82                 // We're depending on the property of 'foreach' (specified on the PHP website) that
83                 // it loops over the array starting from the first element and going sequentially
84                 // to the last element
85                 $newbody = str_replace('[!#saved_image' . $cnt . '#!]', '[img]' . $image . '[/img]', $newbody);
86                 $cnt++;
87         }
88         return $newbody;
89 }}
90
91
92
93 /**
94  * Render actions localized
95  */
96 function localize_item(&$item){
97
98         $extracted = item_extract_images($item['body']);
99         if($extracted['images'])
100                 $item['body'] = item_redir_and_replace_images($extracted['body'], $extracted['images'], $item['contact-id']);
101
102         $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
103         if (activity_match($item['verb'],ACTIVITY_LIKE) || activity_match($item['verb'],ACTIVITY_DISLIKE)){
104
105                 $r = q("SELECT * from `item`,`contact` WHERE
106                                 `item`.`contact-id`=`contact`.`id` AND `item`.`uri`='%s';",
107                                  dbesc($item['parent-uri']));
108                 if(count($r)==0) return;
109                 $obj=$r[0];
110
111                 $author  = '[url=' . $item['author-link'] . ']' . $item['author-name'] . '[/url]';
112                 $objauthor =  '[url=' . $obj['author-link'] . ']' . $obj['author-name'] . '[/url]';
113
114                 switch($obj['verb']){
115                         case ACTIVITY_POST:
116                                 switch ($obj['object-type']){
117                                         case ACTIVITY_OBJ_EVENT:
118                                                 $post_type = t('event');
119                                                 break;
120                                         default:
121                                                 $post_type = t('status');
122                                 }
123                                 break;
124                         default:
125                                 if($obj['resource-id']){
126                                         $post_type = t('photo');
127                                         $m=array(); preg_match("/\[url=([^]]*)\]/", $obj['body'], $m);
128                                         $rr['plink'] = $m[1];
129                                 } else {
130                                         $post_type = t('status');
131                                 }
132                 }
133
134                 $plink = '[url=' . $obj['plink'] . ']' . $post_type . '[/url]';
135
136                 if(activity_match($item['verb'],ACTIVITY_LIKE)) {
137                         $bodyverb = t('%1$s likes %2$s\'s %3$s');
138                 }
139                 elseif(activity_match($item['verb'],ACTIVITY_DISLIKE)) {
140                         $bodyverb = t('%1$s doesn\'t like %2$s\'s %3$s');
141                 }
142                 $item['body'] = sprintf($bodyverb, $author, $objauthor, $plink);
143
144         }
145         if (activity_match($item['verb'],ACTIVITY_FRIEND)) {
146
147                 if ($item['object-type']=="" || $item['object-type']!== ACTIVITY_OBJ_PERSON) return;
148
149                 $Aname = $item['author-name'];
150                 $Alink = $item['author-link'];
151
152                 $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
153
154                 $obj = parse_xml_string($xmlhead.$item['object']);
155                 $links = parse_xml_string($xmlhead."<links>".unxmlify($obj->link)."</links>");
156
157                 $Bname = $obj->title;
158                 $Blink = ""; $Bphoto = "";
159                 foreach ($links->link as $l){
160                         $atts = $l->attributes();
161                         switch($atts['rel']){
162                                 case "alternate": $Blink = $atts['href'];
163                                 case "photo": $Bphoto = $atts['href'];
164                         }
165
166                 }
167
168                 $A = '[url=' . zrl($Alink) . ']' . $Aname . '[/url]';
169                 $B = '[url=' . zrl($Blink) . ']' . $Bname . '[/url]';
170                 if ($Bphoto!="") $Bphoto = '[url=' . zrl($Blink) . '][img]' . $Bphoto . '[/img][/url]';
171
172                 $item['body'] = sprintf( t('%1$s is now friends with %2$s'), $A, $B)."\n\n\n".$Bphoto;
173
174         }
175         if (stristr($item['verb'],ACTIVITY_POKE)) {
176                 $verb = urldecode(substr($item['verb'],strpos($item['verb'],'#')+1));
177                 if(! $verb)
178                         return;
179                 if ($item['object-type']=="" || $item['object-type']!== ACTIVITY_OBJ_PERSON) return;
180
181                 $Aname = $item['author-name'];
182                 $Alink = $item['author-link'];
183
184                 $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
185
186                 $obj = parse_xml_string($xmlhead.$item['object']);
187                 $links = parse_xml_string($xmlhead."<links>".unxmlify($obj->link)."</links>");
188
189                 $Bname = $obj->title;
190                 $Blink = ""; $Bphoto = "";
191                 foreach ($links->link as $l){
192                         $atts = $l->attributes();
193                         switch($atts['rel']){
194                                 case "alternate": $Blink = $atts['href'];
195                                 case "photo": $Bphoto = $atts['href'];
196                         }
197
198                 }
199
200                 $A = '[url=' . zrl($Alink) . ']' . $Aname . '[/url]';
201                 $B = '[url=' . zrl($Blink) . ']' . $Bname . '[/url]';
202                 if ($Bphoto!="") $Bphoto = '[url=' . zrl($Blink) . '][img=80x80]' . $Bphoto . '[/img][/url]';
203
204                 // we can't have a translation string with three positions but no distinguishable text
205                 // So here is the translate string.
206                 $txt = t('%1$s poked %2$s');
207                 
208                 // now translate the verb
209                 $poked_t = trim(sprintf($txt, "",""));
210                 $txt = str_replace( $poked_t, t($verb), $txt);
211
212                 // then do the sprintf on the translation string
213
214                 $item['body'] = sprintf($txt, $A, $B). "\n\n\n" . $Bphoto;
215
216         }
217         if (stristr($item['verb'],ACTIVITY_MOOD)) {
218                 $verb = urldecode(substr($item['verb'],strpos($item['verb'],'#')+1));
219                 if(! $verb)
220                         return;
221
222                 $Aname = $item['author-name'];
223                 $Alink = $item['author-link'];
224                 $A = '[url=' . zrl($Alink) . ']' . $Aname . '[/url]';
225
226                 $txt = t('%1$s is currently %2$s');
227
228                 $item['body'] = sprintf($txt, $A, t($verb));
229         }
230
231         if (activity_match($item['verb'],ACTIVITY_TAG)) {
232                 $r = q("SELECT * from `item`,`contact` WHERE
233                 `item`.`contact-id`=`contact`.`id` AND `item`.`uri`='%s';",
234                  dbesc($item['parent-uri']));
235                 if(count($r)==0) return;
236                 $obj=$r[0];
237
238                 $author  = '[url=' . zrl($item['author-link']) . ']' . $item['author-name'] . '[/url]';
239                 $objauthor =  '[url=' . zrl($obj['author-link']) . ']' . $obj['author-name'] . '[/url]';
240
241                 switch($obj['verb']){
242                         case ACTIVITY_POST:
243                                 switch ($obj['object-type']){
244                                         case ACTIVITY_OBJ_EVENT:
245                                                 $post_type = t('event');
246                                                 break;
247                                         default:
248                                                 $post_type = t('status');
249                                 }
250                                 break;
251                         default:
252                                 if($obj['resource-id']){
253                                         $post_type = t('photo');
254                                         $m=array(); preg_match("/\[url=([^]]*)\]/", $obj['body'], $m);
255                                         $rr['plink'] = $m[1];
256                                 } else {
257                                         $post_type = t('status');
258                                 }
259                 }
260                 $plink = '[url=' . $obj['plink'] . ']' . $post_type . '[/url]';
261
262                 $parsedobj = parse_xml_string($xmlhead.$item['object']);
263
264                 $tag = sprintf('#[url=%s]%s[/url]', $parsedobj->id, $parsedobj->content);
265                 $item['body'] = sprintf( t('%1$s tagged %2$s\'s %3$s with %4$s'), $author, $objauthor, $plink, $tag );
266
267         }
268         if (activity_match($item['verb'],ACTIVITY_FAVORITE)){
269
270                 if ($item['object-type']== "")
271                         return;
272
273                 $Aname = $item['author-name'];
274                 $Alink = $item['author-link'];
275
276                 $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
277
278                 $obj = parse_xml_string($xmlhead.$item['object']);
279                 if(strlen($obj->id)) {
280                         $r = q("select * from item where uri = '%s' and uid = %d limit 1",
281                                         dbesc($obj->id),
282                                         intval($item['uid'])
283                         );
284                         if(count($r) && $r[0]['plink']) {
285                                 $target = $r[0];
286                                 $Bname = $target['author-name'];
287                                 $Blink = $target['author-link'];
288                                 $A = '[url=' . zrl($Alink) . ']' . $Aname . '[/url]';
289                                 $B = '[url=' . zrl($Blink) . ']' . $Bname . '[/url]';
290                                 $P = '[url=' . $target['plink'] . ']' . t('post/item') . '[/url]';
291                                 $item['body'] = sprintf( t('%1$s marked %2$s\'s %3$s as favorite'), $A, $B, $P)."\n";
292
293                         }
294                 }
295         }
296         $matches = null;
297         if(preg_match_all('/@\[url=(.*?)\]/is',$item['body'],$matches,PREG_SET_ORDER)) {
298                 foreach($matches as $mtch) {
299                         if(! strpos($mtch[1],'zrl='))
300                                 $item['body'] = str_replace($mtch[0],'@[url=' . zrl($mtch[1]). ']',$item['body']);
301                 }
302         }
303
304         // add zrl's to public images
305         $photo_pattern = "/\[url=(.*?)\/photos\/(.*?)\/image\/(.*?)\]\[img(.*?)\]h(.*?)\[\/img\]\[\/url\]/is";
306         if(preg_match($photo_pattern,$item['body'])) {
307                 $photo_replace = '[url=' . zrl('$1' . '/photos/' . '$2' . '/image/' . '$3' ,true) . '][img' . '$4' . ']h' . '$5'  . '[/img][/url]';
308                 $item['body'] = bb_tag_preg_replace($photo_pattern, $photo_replace, 'url', $item['body']);
309         }
310
311         // add sparkle links to appropriate permalinks
312
313         $x = stristr($item['plink'],'/display/');
314         if($x) {
315                 $sparkle = false;
316                 $y = best_link_url($item,$sparkle,true);
317                 if(strstr($y,'/redir/'))
318                         $item['plink'] = $y . '?f=&url=' . $item['plink'];
319         }
320
321
322
323 }
324
325 /**
326  * Count the total of comments on this item and its desendants
327  */
328 function count_descendants($item) {
329         $total = count($item['children']);
330
331         if($total > 0) {
332                 foreach($item['children'] as $child) {
333                         if(! visible_activity($child))
334                                 $total --;
335                         $total += count_descendants($child);
336                 }
337         }
338
339         return $total;
340 }
341
342 function visible_activity($item) {
343
344         if(activity_match($item['verb'],ACTIVITY_LIKE) || activity_match($item['verb'],ACTIVITY_DISLIKE))
345                 return false;
346
347         if(activity_match($item['verb'],ACTIVITY_FOLLOW) && $item['object-type'] === ACTIVITY_OBJ_NOTE) {
348                 if(! (($item['self']) && ($item['uid'] == local_user()))) {
349                         return false;
350                 }
351         }
352
353         return true;
354 }
355
356
357 /**
358  * "Render" a conversation or list of items for HTML display.
359  * There are two major forms of display:
360  *      - Sequential or unthreaded ("New Item View" or search results)
361  *      - conversation view
362  * The $mode parameter decides between the various renderings and also
363  * figures out how to determine page owner and other contextual items
364  * that are based on unique features of the calling module.
365  *
366  */
367
368 if(!function_exists('conversation')) {
369 function conversation(&$a, $items, $mode, $update, $preview = false) {
370
371         require_once('include/bbcode.php');
372         require_once('mod/proxy.php');
373
374         $ssl_state = ((local_user()) ? true : false);
375
376         $profile_owner = 0;
377         $page_writeable = false;
378         $live_update_div = '';
379
380         $arr_blocked = null;
381
382         if(local_user()) {
383                 $str_blocked = get_pconfig(local_user(),'system','blocked');
384                 if($str_blocked) {
385                         $arr_blocked = explode(',',$str_blocked);
386                         for($x = 0; $x < count($arr_blocked); $x ++)
387                                 $arr_blocked[$x] = trim($arr_blocked[$x]);
388                 }
389
390         }
391
392         $previewing = (($preview) ? ' preview ' : '');
393
394         if($mode === 'network') {
395                 $profile_owner = local_user();
396                 $page_writeable = true;
397                 if(!$update) {
398                         // The special div is needed for liveUpdate to kick in for this page.
399                         // We only launch liveUpdate if you aren't filtering in some incompatible 
400                         // way and also you aren't writing a comment (discovered in javascript).
401
402                         $live_update_div = '<div id="live-network"></div>' . "\r\n"
403                                 . "<script> var profile_uid = " . $_SESSION['uid'] 
404                                 . "; var netargs = '" . substr($a->cmd,8)
405                                 . '?f='
406                                 . ((x($_GET,'cid'))    ? '&cid='    . $_GET['cid']    : '')
407                                 . ((x($_GET,'search')) ? '&search=' . $_GET['search'] : '') 
408                                 . ((x($_GET,'star'))   ? '&star='   . $_GET['star']   : '') 
409                                 . ((x($_GET,'order'))  ? '&order='  . $_GET['order']  : '') 
410                                 . ((x($_GET,'bmark'))  ? '&bmark='  . $_GET['bmark']  : '') 
411                                 . ((x($_GET,'liked'))  ? '&liked='  . $_GET['liked']  : '') 
412                                 . ((x($_GET,'conv'))   ? '&conv='   . $_GET['conv']   : '') 
413                                 . ((x($_GET,'spam'))   ? '&spam='   . $_GET['spam']   : '') 
414                                 . ((x($_GET,'nets'))   ? '&nets='   . $_GET['nets']   : '') 
415                                 . ((x($_GET,'cmin'))   ? '&cmin='   . $_GET['cmin']   : '') 
416                                 . ((x($_GET,'cmax'))   ? '&cmax='   . $_GET['cmax']   : '') 
417                                 . ((x($_GET,'file'))   ? '&file='   . $_GET['file']   : '') 
418
419                                 . "'; var profile_page = " . $a->pager['page'] . "; </script>\r\n";
420                 }
421         }
422         else if($mode === 'profile') {
423                 $profile_owner = $a->profile['profile_uid'];
424                 $page_writeable = can_write_wall($a,$profile_owner);
425
426                 if(!$update) {
427                         $tab = notags(trim($_GET['tab']));
428                         $tab = ( $tab ? $tab : 'posts' );
429                         if($tab === 'posts') {
430                                 // This is ugly, but we can't pass the profile_uid through the session to the ajax updater,
431                                 // because browser prefetching might change it on us. We have to deliver it with the page.
432
433                                 $live_update_div = '<div id="live-profile"></div>' . "\r\n"
434                                         . "<script> var profile_uid = " . $a->profile['profile_uid'] 
435                                         . "; var netargs = '?f='; var profile_page = " . $a->pager['page'] . "; </script>\r\n";
436                         }
437                 }
438         }
439         else if($mode === 'notes') {
440                 $profile_owner = local_user();
441                 $page_writeable = true;
442                 if(!$update) {
443                         $live_update_div = '<div id="live-notes"></div>' . "\r\n"
444                                 . "<script> var profile_uid = " . local_user() 
445                                 . "; var netargs = '/?f='; var profile_page = " . $a->pager['page'] . "; </script>\r\n";
446                 }
447         }
448         else if($mode === 'display') {
449                 $profile_owner = $a->profile['uid'];
450                 $page_writeable = can_write_wall($a,$profile_owner);
451                 if(!$update) {
452                         $live_update_div = '<div id="live-display"></div>' . "\r\n"
453                                 . "<script> var profile_uid = " . $_SESSION['uid'] . ";"
454                                 . " var profile_page = 1; </script>";
455                 }
456         }
457         else if($mode === 'community') {
458                 $profile_owner = 0;
459                 $page_writeable = false;
460                 if(!$update) {
461                         $live_update_div = '<div id="live-community"></div>' . "\r\n"
462                                 . "<script> var profile_uid = -1; var netargs = '/?f='; var profile_page = " . $a->pager['page'] . "; </script>\r\n";
463                 }
464         }
465         else if($mode === 'search') {
466                 $live_update_div = '<div id="live-search"></div>' . "\r\n";
467         }
468
469         $page_dropping = ((local_user() && local_user() == $profile_owner) ? true : false);
470
471
472         if($update)
473                 $return_url = $_SESSION['return_url'];
474         else
475                 $return_url = $_SESSION['return_url'] = $a->query_string;
476
477         load_contact_links(local_user());
478
479         $cb = array('items' => $items, 'mode' => $mode, 'update' => $update, 'preview' => $preview);
480         call_hooks('conversation_start',$cb);
481
482         $items = $cb['items'];
483
484         $cmnt_tpl    = get_markup_template('comment_item.tpl');
485         $hide_comments_tpl = get_markup_template('hide_comments.tpl');
486
487         $alike = array();
488         $dlike = array();
489
490         // array with html for each thread (parent+comments)
491         $threads = array();
492         $threadsid = -1;
493
494         $page_template = get_markup_template("conversation.tpl");
495
496         if($items && count($items)) {
497
498                 if($mode === 'network-new' || $mode === 'search' || $mode === 'community') {
499
500                         // "New Item View" on network page or search page results
501                         // - just loop through the items and format them minimally for display
502
503 //                      $tpl = get_markup_template('search_item.tpl');
504                         $tpl = 'search_item.tpl';
505
506                         foreach($items as $item) {
507
508                                 if($arr_blocked) {
509                                         $blocked = false;
510                                         foreach($arr_blocked as $b) {
511                                                 if($b && link_compare($item['author-link'],$b)) {
512                                                         $blocked = true;
513                                                         break;
514                                                 }
515                                         }
516                                         if($blocked)
517                                                 continue;
518                                 }
519
520
521                                 $threadsid++;
522
523                                 $comment     = '';
524                                 $owner_url   = '';
525                                 $owner_photo = '';
526                                 $owner_name  = '';
527                                 $sparkle     = '';
528
529                                 if($mode === 'search' || $mode === 'community') {
530                                         if(((activity_match($item['verb'],ACTIVITY_LIKE)) || (activity_match($item['verb'],ACTIVITY_DISLIKE)))
531                                                 && ($item['id'] != $item['parent']))
532                                                 continue;
533                                         $nickname = $item['nickname'];
534                                 }
535                                 else
536                                         $nickname = $a->user['nickname'];
537
538                                 // prevent private email from leaking.
539                                 if($item['network'] === NETWORK_MAIL && local_user() != $item['uid'])
540                                                 continue;
541
542                                 $profile_name   = ((strlen($item['author-name']))   ? $item['author-name']   : $item['name']);
543                                 if($item['author-link'] && (! $item['author-name']))
544                                         $profile_name = $item['author-link'];
545
546
547
548                                 $tags=array();
549                                 $hashtags = array();
550                                 $mentions = array();
551
552                                 $taglist = q("SELECT `type`, `term`, `url` FROM `term` WHERE `otype` = %d AND `oid` = %d AND `type` IN (%d, %d) ORDER BY `tid`",
553                                                 intval(TERM_OBJ_POST), intval($item['id']), intval(TERM_HASHTAG), intval(TERM_MENTION));
554
555                                 foreach($taglist as $tag) {
556
557                                         if ($tag["url"] == "")
558                                                 $tag["url"] = $searchpath.strtolower($tag["term"]);
559
560                                         if ($tag["type"] == TERM_HASHTAG) {
561                                                 $hashtags[] = "#<a href=\"".$tag["url"]."\" target=\"_blank\">".$tag["term"]."</a>";
562                                                 $prefix = "#";
563                                         } elseif ($tag["type"] == TERM_MENTION) {
564                                                 $mentions[] = "@<a href=\"".$tag["url"]."\" target=\"_blank\">".$tag["term"]."</a>";
565                                                 $prefix = "@";
566                                         }
567                                         $tags[] = $prefix."<a href=\"".$tag["url"]."\" target=\"_blank\">".$tag["term"]."</a>";
568                                 }
569
570                                 /*foreach(explode(',',$item['tag']) as $tag){
571                                         $tag = trim($tag);
572                                         if ($tag!="") {
573                                                 $t = bbcode($tag);
574                                                 $tags[] = $t;
575                                                 if($t[0] == '#')
576                                                         $hashtags[] = $t;
577                                                 elseif($t[0] == '@')
578                                                         $mentions[] = $t;
579                                         }
580                                 }*/
581
582                                 $sp = false;
583                                 $profile_link = best_link_url($item,$sp);
584                                 if($profile_link === 'mailbox')
585                                         $profile_link = '';
586                                 if($sp)
587                                         $sparkle = ' sparkle';
588                                 else
589                                         $profile_link = zrl($profile_link);
590
591                                 $normalised = normalise_link((strlen($item['author-link'])) ? $item['author-link'] : $item['url']);
592                                 if(($normalised != 'mailbox') && (x($a->contacts[$normalised])))
593                                         $profile_avatar = $a->contacts[$normalised]['thumb'];
594                                 else
595                                         $profile_avatar = ((strlen($item['author-avatar'])) ? $a->get_cached_avatar_image($item['author-avatar']) : $item['thumb']);
596
597                                 $locate = array('location' => $item['location'], 'coord' => $item['coord'], 'html' => '');
598                                 call_hooks('render_location',$locate);
599
600                                 $location = ((strlen($locate['html'])) ? $locate['html'] : render_location_google($locate));
601
602                                 localize_item($item);
603                                 if($mode === 'network-new')
604                                         $dropping = true;
605                                 else
606                                         $dropping = false;
607
608
609                                 $drop = array(
610                                         'dropping' => $dropping,
611                                         'pagedrop' => $page_dropping,
612                                         'select' => t('Select'),
613                                         'delete' => t('Delete'),
614                                 );
615
616                                 $star = false;
617                                 $isstarred = "unstarred";
618
619                                 $lock = false;
620                                 $likebuttons = false;
621                                 $shareable = false;
622
623                                 $body = prepare_body($item,true, $preview);
624
625
626                                 list($categories, $folders) = get_cats_and_terms($item);
627
628                                 if($a->theme['template_engine'] === 'internal') {
629                                         $profile_name_e = template_escape($profile_name);
630                                         $item['title_e'] = template_escape($item['title']);
631                                         $body_e = template_escape($body);
632                                         $tags_e = template_escape($tags);
633                                         $hashtags_e = template_escape($hashtags);
634                                         $mentions_e = template_escape($mentions);
635                                         $location_e = template_escape($location);
636                                         $owner_name_e = template_escape($owner_name);
637                                 }
638                                 else {
639                                         $profile_name_e = $profile_name;
640                                         $item['title_e'] = $item['title'];
641                                         $body_e = $body;
642                                         $tags_e = $tags;
643                                         $hashtags_e = $hashtags;
644                                         $mentions_e = $mentions;
645                                         $location_e = $location;
646                                         $owner_name_e = $owner_name;
647                                 }
648
649                                 $tmp_item = array(
650                                         'template' => $tpl,
651                                         'id' => (($preview) ? 'P0' : $item['item_id']),
652                                         'network' => $item['item_network'],
653                                         'linktitle' => sprintf( t('View %s\'s profile @ %s'), $profile_name, ((strlen($item['author-link'])) ? $item['author-link'] : $item['url'])),
654                                         'profile_url' => $profile_link,
655                                         'item_photo_menu' => item_photo_menu($item),
656                                         'name' => $profile_name_e,
657                                         'sparkle' => $sparkle,
658                                         'lock' => $lock,
659                                         'thumb' => proxy_url($profile_avatar),
660                                         'title' => $item['title_e'],
661                                         'body' => $body_e,
662                                         'tags' => $tags_e,
663                                         'hashtags' => $hashtags_e,
664                                         'mentions' => $mentions_e,
665                                         'txt_cats' => t('Categories:'),
666                                         'txt_folders' => t('Filed under:'),
667                                         'has_cats' => ((count($categories)) ? 'true' : ''),
668                                         'has_folders' => ((count($folders)) ? 'true' : ''),
669                                         'categories' => $categories,
670                                         'folders' => $folders,
671                                         'text' => strip_tags($body_e),
672                                         'localtime' => datetime_convert('UTC', date_default_timezone_get(), $item['created'], 'r'),
673                                         'ago' => (($item['app']) ? sprintf( t('%s from %s'),relative_date($item['created']),$item['app']) : relative_date($item['created'])),
674                                         'location' => $location_e,
675                                         'indent' => '',
676                                         'owner_name' => $owner_name_e,
677                                         'owner_url' => $owner_url,
678                                         'owner_photo' => proxy_url($owner_photo),
679                                         'plink' => get_plink($item),
680                                         'edpost' => false,
681                                         'isstarred' => $isstarred,
682                                         'star' => $star,
683                                         'drop' => $drop,
684                                         'vote' => $likebuttons,
685                                         'like' => '',
686                                         'dislike' => '',
687                                         'comment' => '',
688                                         //'conv' => (($preview) ? '' : array('href'=> $a->get_baseurl($ssl_state) . '/display/' . $nickname . '/' . $item['id'], 'title'=> t('View in context'))),
689                                         'conv' => (($preview) ? '' : array('href'=> $a->get_baseurl($ssl_state) . '/display/'.$item['guid'], 'title'=> t('View in context'))),
690                                         'previewing' => $previewing,
691                                         'wait' => t('Please wait'),
692                                         'thread_level' => 1,
693                                 );
694
695                                 $arr = array('item' => $item, 'output' => $tmp_item);
696                                 call_hooks('display_item', $arr);
697
698                                 $threads[$threadsid]['id'] = $item['item_id'];
699                                 $threads[$threadsid]['network'] = $item['item_network'];
700                                 $threads[$threadsid]['items'] = array($arr['output']);
701
702                         }
703                 }
704                 else
705                 {
706                         // Normal View
707                         $page_template = get_markup_template("threaded_conversation.tpl");
708
709                         require_once('object/Conversation.php');
710                         require_once('object/Item.php');
711
712                         $conv = new Conversation($mode, $preview);
713
714                         // get all the topmost parents
715                         // this shouldn't be needed, as we should have only them in our array
716                         // But for now, this array respects the old style, just in case
717
718                         $threads = array();
719                         foreach($items as $item) {
720
721                                 if($arr_blocked) {
722                                         $blocked = false;
723                                         foreach($arr_blocked as $b) {
724
725                                                 if($b && link_compare($item['author-link'],$b)) {
726                                                         $blocked = true;
727                                                         break;
728                                                 }
729                                         }
730                                         if($blocked)
731                                                 continue;
732                                 }
733
734
735
736                                 // Can we put this after the visibility check?
737                                 like_puller($a,$item,$alike,'like');
738                                 like_puller($a,$item,$dlike,'dislike');
739
740                                 // Only add what is visible
741                                 if($item['network'] === NETWORK_MAIL && local_user() != $item['uid']) {
742                                         continue;
743                                 }
744                                 if(! visible_activity($item)) {
745                                         continue;
746                                 }
747
748                                 call_hooks('display_item', $arr);
749
750                                 $item['pagedrop'] = $page_dropping;
751
752                                 if($item['id'] == $item['parent']) {
753                                         $item_object = new Item($item);
754                                         $conv->add_thread($item_object);
755                                 }
756                         }
757
758                         $threads = $conv->get_template_data($alike, $dlike);
759
760                         if(!$threads) {
761                                 logger('[ERROR] conversation : Failed to get template data.', LOGGER_DEBUG);
762                                 $threads = array();
763                         }
764                 }
765         }
766
767         $o = replace_macros($page_template, array(
768                 '$baseurl' => $a->get_baseurl($ssl_state),
769                 '$return_path' => $a->query_string,
770                 '$live_update' => $live_update_div,
771                 '$remove' => t('remove'),
772                 '$mode' => $mode,
773                 '$user' => $a->user,
774                 '$threads' => $threads,
775                 '$dropping' => ($page_dropping && feature_enabled(local_user(),'multi_delete') ? t('Delete Selected Items') : False),
776         ));
777
778         return $o;
779 }}
780
781 function best_link_url($item,&$sparkle,$ssl_state = false) {
782
783         $a = get_app();
784
785         $best_url = '';
786         $sparkle  = false;
787
788         $clean_url = normalise_link($item['author-link']);
789
790         if((local_user()) && (local_user() == $item['uid'])) {
791                 if(isset($a->contacts) && x($a->contacts,$clean_url)) {
792                         if($a->contacts[$clean_url]['network'] === NETWORK_DFRN) {
793                                 $best_url = $a->get_baseurl($ssl_state) . '/redir/' . $a->contacts[$clean_url]['id'];
794                                 $sparkle = true;
795                         }
796                         else
797                                 $best_url = $a->contacts[$clean_url]['url'];
798                 }
799         }
800         if(! $best_url) {
801                 if(strlen($item['author-link']))
802                         $best_url = $item['author-link'];
803                 else
804                         $best_url = $item['url'];
805         }
806
807         return $best_url;
808 }
809
810
811 if(! function_exists('item_photo_menu')){
812 function item_photo_menu($item){
813         $a = get_app();
814
815         $ssl_state = false;
816
817         if(local_user()) {
818                 $ssl_state = true;
819                  if(! count($a->contacts))
820                         load_contact_links(local_user());
821         }
822         $sub_link="";
823         $poke_link="";
824         $contact_url="";
825         $pm_url="";
826         $status_link="";
827         $photos_link="";
828         $posts_link="";
829
830         if((local_user()) && local_user() == $item['uid'] && $item['parent'] == $item['id'] && (! $item['self'])) {
831                 $sub_link = 'javascript:dosubthread(' . $item['id'] . '); return false;';
832         }
833
834         $sparkle = false;
835         $profile_link = best_link_url($item,$sparkle,$ssl_state);
836         if($profile_link === 'mailbox')
837                 $profile_link = '';
838
839         if($sparkle) {
840                 $cid = intval(basename($profile_link));
841                 $status_link = $profile_link . "?url=status";
842                 $photos_link = $profile_link . "?url=photos";
843                 $profile_link = $profile_link . "?url=profile";
844                 $pm_url = $a->get_baseurl($ssl_state) . '/message/new/' . $cid;
845                 $zurl = '';
846         }
847         else {
848                 $profile_link = zrl($profile_link);
849                 if(local_user() && local_user() == $item['uid'] && link_compare($item['url'],$item['author-link'])) {
850                         $cid = $item['contact-id'];
851                 }
852                 else {
853                         $cid = 0;
854                 }
855         }
856         if(($cid) && (! $item['self'])) {
857                 $poke_link = $a->get_baseurl($ssl_state) . '/poke/?f=&c=' . $cid;
858                 $contact_url = $a->get_baseurl($ssl_state) . '/contacts/' . $cid;
859                 $posts_link = $a->get_baseurl($ssl_state) . '/network/0?nets=all&cid=' . $cid;
860
861                 $clean_url = normalise_link($item['author-link']);
862
863                 if((local_user()) && (local_user() == $item['uid'])) {
864                         if(isset($a->contacts) && x($a->contacts,$clean_url)) {
865                                 if($a->contacts[$clean_url]['network'] === NETWORK_DIASPORA) {
866                                         $pm_url = $a->get_baseurl($ssl_state) . '/message/new/' . $cid;
867                                 }
868                         }
869                 }
870
871         }
872
873         $menu = Array(
874                 t("Follow Thread") => $sub_link,
875                 t("View Status") => $status_link,
876                 t("View Profile") => $profile_link,
877                 t("View Photos") => $photos_link,
878                 t("Network Posts") => $posts_link,
879                 t("Edit Contact") => $contact_url,
880                 t("Send PM") => $pm_url,
881                 t("Poke") => $poke_link
882         );
883
884
885         $args = array('item' => $item, 'menu' => $menu);
886
887         call_hooks('item_photo_menu', $args);
888
889         $menu = $args['menu'];
890
891         $o = "";
892         foreach($menu as $k=>$v){
893                 if(strpos($v,'javascript:') === 0) {
894                         $v = substr($v,11);
895                         $o .= "<li><a href=\"#\" onclick=\"$v\">$k</a></li>\n";
896                 }
897                 elseif ($v!="") $o .= "<li><a href=\"$v\">$k</a></li>\n";
898         }
899         return $o;
900 }}
901
902 if(! function_exists('like_puller')) {
903 function like_puller($a,$item,&$arr,$mode) {
904
905         $url = '';
906         $sparkle = '';
907         $verb = (($mode === 'like') ? ACTIVITY_LIKE : ACTIVITY_DISLIKE);
908
909         if((activity_match($item['verb'],$verb)) && ($item['id'] != $item['parent'])) {
910                 $url = $item['author-link'];
911                 if((local_user()) && (local_user() == $item['uid']) && ($item['network'] === NETWORK_DFRN) && (! $item['self']) && (link_compare($item['author-link'],$item['url']))) {
912                         $url = $a->get_baseurl(true) . '/redir/' . $item['contact-id'];
913                         $sparkle = ' class="sparkle" ';
914                 }
915                 else
916                         $url = zrl($url);
917
918                 if(! $item['thr-parent'])
919                         $item['thr-parent'] = $item['parent-uri'];
920
921                 if(! ((isset($arr[$item['thr-parent'] . '-l'])) && (is_array($arr[$item['thr-parent'] . '-l']))))
922                         $arr[$item['thr-parent'] . '-l'] = array();
923                 if(! isset($arr[$item['thr-parent']]))
924                         $arr[$item['thr-parent']] = 1;
925                 else
926                         $arr[$item['thr-parent']] ++;
927                 $arr[$item['thr-parent'] . '-l'][] = '<a href="'. $url . '"'. $sparkle .'>' . $item['author-name'] . '</a>';
928         }
929         return;
930 }}
931
932 // Format the like/dislike text for a profile item
933 // $cnt = number of people who like/dislike the item
934 // $arr = array of pre-linked names of likers/dislikers
935 // $type = one of 'like, 'dislike'
936 // $id  = item id
937 // returns formatted text
938
939 if(! function_exists('format_like')) {
940 function format_like($cnt,$arr,$type,$id) {
941         $o = '';
942         if($cnt == 1)
943                 $o .= (($type === 'like') ? sprintf( t('%s likes this.'), $arr[0]) : sprintf( t('%s doesn\'t like this.'), $arr[0])) . EOL ;
944         else {
945                 $spanatts = "class=\"fakelink\" onclick=\"openClose('{$type}list-$id');\"";
946                 switch($type) {
947                         case 'like':
948                                 $phrase = sprintf( t('<span  %1$s>%2$d people</span> like this'), $spanatts, $cnt);
949                                 break;
950                         case 'dislike':
951                                 $phrase = sprintf( t('<span  %1$s>%2$d people</span> don\'t like this'), $spanatts, $cnt);
952                                 break;
953                 }
954                 $phrase .= EOL ;
955                 $o .= replace_macros(get_markup_template('voting_fakelink.tpl'), array(
956                         '$phrase' => $phrase,
957                         '$type' => $type,
958                         '$id' => $id
959                 ));
960
961                 $total = count($arr);
962                 if($total >= MAX_LIKERS)
963                         $arr = array_slice($arr, 0, MAX_LIKERS - 1);
964                 if($total < MAX_LIKERS) {
965                         $last = t('and') . ' ' . $arr[count($arr)-1];
966                         $arr2 = array_slice($arr, 0, -1);
967                         $str = implode(', ', $arr2) . ' ' . $last;
968                 }
969                 if($total >= MAX_LIKERS) {
970                         $str = implode(', ', $arr);
971                         $str .= sprintf( t(', and %d other people'), $total - MAX_LIKERS );
972                 }
973                 $str = (($type === 'like') ? sprintf( t('%s like this.'), $str) : sprintf( t('%s don\'t like this.'), $str));
974                 $o .= "\t" . '<div class="wall-item-' . $type . '-expanded" id="' . $type . 'list-' . $id . '" style="display: none;" >' . $str . '</div>';
975         }
976         return $o;
977 }}
978
979
980 function status_editor($a,$x, $notes_cid = 0, $popup=false) {
981
982         $o = '';
983
984         $geotag = (($x['allow_location']) ? replace_macros(get_markup_template('jot_geotag.tpl'), array()) : '');
985
986 /*      $plaintext = false;
987         if( local_user() && (intval(get_pconfig(local_user(),'system','plaintext')) || !feature_enabled(local_user(),'richtext')) )
988                 $plaintext = true;*/
989         $plaintext = true;
990         if( local_user() && feature_enabled(local_user(),'richtext') )
991                 $plaintext = false;
992
993         $tpl = get_markup_template('jot-header.tpl');
994         $a->page['htmlhead'] .= replace_macros($tpl, array(
995                 '$newpost' => 'true',
996                 '$baseurl' => $a->get_baseurl(true),
997                 '$editselect' => (($plaintext) ? 'none' : '/(profile-jot-text|prvmail-text)/'),
998                 '$geotag' => $geotag,
999                 '$nickname' => $x['nickname'],
1000                 '$ispublic' => t('Visible to <strong>everybody</strong>'),
1001                 '$linkurl' => t('Please enter a link URL:'),
1002                 '$vidurl' => t("Please enter a video link/URL:"),
1003                 '$audurl' => t("Please enter an audio link/URL:"),
1004                 '$term' => t('Tag term:'),
1005                 '$fileas' => t('Save to Folder:'),
1006                 '$whereareu' => t('Where are you right now?'),
1007                 '$delitems' => t('Delete item(s)?')
1008         ));
1009
1010
1011         $tpl = get_markup_template('jot-end.tpl');
1012         $a->page['end'] .= replace_macros($tpl, array(
1013                 '$newpost' => 'true',
1014                 '$baseurl' => $a->get_baseurl(true),
1015                 '$editselect' => (($plaintext) ? 'none' : '/(profile-jot-text|prvmail-text)/'),
1016                 '$geotag' => $geotag,
1017                 '$nickname' => $x['nickname'],
1018                 '$ispublic' => t('Visible to <strong>everybody</strong>'),
1019                 '$linkurl' => t('Please enter a link URL:'),
1020                 '$vidurl' => t("Please enter a video link/URL:"),
1021                 '$audurl' => t("Please enter an audio link/URL:"),
1022                 '$term' => t('Tag term:'),
1023                 '$fileas' => t('Save to Folder:'),
1024                 '$whereareu' => t('Where are you right now?')
1025         ));
1026
1027
1028         $jotplugins = '';
1029         $jotnets = '';
1030
1031         $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
1032
1033         $mail_enabled = false;
1034         $pubmail_enabled = false;
1035
1036         if(($x['is_owner']) && (! $mail_disabled)) {
1037                 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d AND `server` != '' LIMIT 1",
1038                         intval(local_user())
1039                 );
1040                 if(count($r)) {
1041                         $mail_enabled = true;
1042                         if(intval($r[0]['pubmail']))
1043                                 $pubmail_enabled = true;
1044                 }
1045         }
1046
1047         if (!$a->user['hidewall']) {
1048                 if($mail_enabled) {
1049                         $selected = (($pubmail_enabled) ? ' checked="checked" ' : '');
1050                         $jotnets .= '<div class="profile-jot-net"><input type="checkbox" name="pubmail_enable"' . $selected . ' value="1" /> ' . t("Post to Email") . '</div>';
1051                 }
1052
1053                 call_hooks('jot_networks', $jotnets);
1054         } else
1055                 $jotnets .= sprintf(t('Connectors disabled, since "%s" is enabled.'),
1056                                     t('Hide your profile details from unknown viewers?'));
1057
1058         call_hooks('jot_tool', $jotplugins);
1059
1060         if($notes_cid)
1061                 $jotnets .= '<input type="hidden" name="contact_allow[]" value="' . $notes_cid .'" />';
1062
1063
1064         // Private/public post links for the non-JS ACL form
1065         $private_post = 1;
1066         if($_REQUEST['public'])
1067                 $private_post = 0;
1068
1069         $query_str = $a->query_string;
1070         if(strpos($query_str, 'public=1') !== false)
1071                 $query_str = str_replace(array('?public=1', '&public=1'), array('', ''), $query_str);
1072
1073         // I think $a->query_string may never have ? in it, but I could be wrong
1074         // It looks like it's from the index.php?q=[etc] rewrite that the web
1075         // server does, which converts any ? to &, e.g. suggest&ignore=61 for suggest?ignore=61
1076         if(strpos($query_str, '?') === false)
1077                 $public_post_link = '?public=1';
1078         else
1079                 $public_post_link = '&public=1';
1080
1081
1082
1083 //      $tpl = replace_macros($tpl,array('$jotplugins' => $jotplugins));
1084         $tpl = get_markup_template("jot.tpl");
1085
1086         $o .= replace_macros($tpl,array(
1087                 '$return_path' => $query_str,
1088                 '$action' =>  $a->get_baseurl(true) . '/item',
1089                 '$share' => (x($x,'button') ? $x['button'] : t('Share')),
1090                 '$upload' => t('Upload photo'),
1091                 '$shortupload' => t('upload photo'),
1092                 '$attach' => t('Attach file'),
1093                 '$shortattach' => t('attach file'),
1094                 '$weblink' => t('Insert web link'),
1095                 '$shortweblink' => t('web link'),
1096                 '$video' => t('Insert video link'),
1097                 '$shortvideo' => t('video link'),
1098                 '$audio' => t('Insert audio link'),
1099                 '$shortaudio' => t('audio link'),
1100                 '$setloc' => t('Set your location'),
1101                 '$shortsetloc' => t('set location'),
1102                 '$noloc' => t('Clear browser location'),
1103                 '$shortnoloc' => t('clear location'),
1104                 '$title' => $x['title'],
1105                 '$placeholdertitle' => t('Set title'),
1106                 '$category' => $x['category'],
1107                 '$placeholdercategory' => (feature_enabled(local_user(),'categories') ? t('Categories (comma-separated list)') : ''),
1108                 '$wait' => t('Please wait'),
1109                 '$permset' => t('Permission settings'),
1110                 '$shortpermset' => t('permissions'),
1111                 '$ptyp' => (($notes_cid) ? 'note' : 'wall'),
1112                 '$content' => $x['content'],
1113                 '$post_id' => $x['post_id'],
1114                 '$baseurl' => $a->get_baseurl(true),
1115                 '$defloc' => $x['default_location'],
1116                 '$visitor' => $x['visitor'],
1117                 '$pvisit' => (($notes_cid) ? 'none' : $x['visitor']),
1118                 '$emailcc' => t('CC: email addresses'),
1119                 '$public' => t('Public post'),
1120                 '$jotnets' => $jotnets,
1121                 '$emtitle' => t('Example: bob@example.com, mary@example.com'),
1122                 '$lockstate' => $x['lockstate'],
1123                 '$bang' => $x['bang'],
1124                 '$profile_uid' => $x['profile_uid'],
1125                 '$preview' => ((feature_enabled($x['profile_uid'],'preview')) ? t('Preview') : ''),
1126                 '$jotplugins' => $jotplugins,
1127                 '$sourceapp' => t($a->sourcename),
1128                 '$cancel' => t('Cancel'),
1129                 '$rand_num' => random_digits(12),
1130
1131                 // ACL permissions box
1132                 '$acl' => $x['acl'],
1133                 '$acl_data' => $x['acl_data'],
1134                 '$group_perms' => t('Post to Groups'),
1135                 '$contact_perms' => t('Post to Contacts'),
1136                 '$private' => t('Private post'),
1137                 '$is_private' => $private_post,
1138                 '$public_link' => $public_post_link,
1139         ));
1140
1141
1142         if ($popup==true){
1143                 $o = '<div id="jot-popup" style="display: none;">'.$o.'</div>';
1144
1145         }
1146
1147         return $o;
1148 }
1149
1150
1151 function get_item_children($arr, $parent) {
1152         $children = array();
1153         $a = get_app();
1154         foreach($arr as $item) {
1155                 if($item['id'] != $item['parent']) {
1156                         if(get_config('system','thread_allow') && $a->theme_thread_allow) {
1157                                 // Fallback to parent-uri if thr-parent is not set
1158                                 $thr_parent = $item['thr-parent'];
1159                                 if($thr_parent == '')
1160                                         $thr_parent = $item['parent-uri'];
1161
1162                                 if($thr_parent == $parent['uri']) {
1163                                         $item['children'] = get_item_children($arr, $item);
1164                                         $children[] = $item;
1165                                 }
1166                         }
1167                         else if($item['parent'] == $parent['id']) {
1168                                 $children[] = $item;
1169                         }
1170                 }
1171         }
1172         return $children;
1173 }
1174
1175 function sort_item_children($items) {
1176         $result = $items;
1177         usort($result,'sort_thr_created_rev');
1178         foreach($result as $k => $i) {
1179                 if(count($result[$k]['children'])) {
1180                         $result[$k]['children'] = sort_item_children($result[$k]['children']);
1181                 }
1182         }
1183         return $result;
1184 }
1185
1186 function add_children_to_list($children, &$arr) {
1187         foreach($children as $y) {
1188                 $arr[] = $y;
1189                 if(count($y['children']))
1190                         add_children_to_list($y['children'], $arr);
1191         }
1192 }
1193
1194 function conv_sort($arr,$order) {
1195
1196         if((!(is_array($arr) && count($arr))))
1197                 return array();
1198
1199         $parents = array();
1200         $children = array();
1201
1202         foreach($arr as $x)
1203                 if($x['id'] == $x['parent'])
1204                                 $parents[] = $x;
1205
1206         if(stristr($order,'created'))
1207                 usort($parents,'sort_thr_created');
1208         elseif(stristr($order,'commented'))
1209                 usort($parents,'sort_thr_commented');
1210
1211         if(count($parents))
1212                 foreach($parents as $i=>$_x)
1213                         $parents[$i]['children'] = get_item_children($arr, $_x);
1214
1215         /*foreach($arr as $x) {
1216                 if($x['id'] != $x['parent']) {
1217                         $p = find_thread_parent_index($parents,$x);
1218                         if($p !== false)
1219                                 $parents[$p]['children'][] = $x;
1220                 }
1221         }*/
1222         if(count($parents)) {
1223                 foreach($parents as $k => $v) {
1224                         if(count($parents[$k]['children'])) {
1225                                 $parents[$k]['children'] = sort_item_children($parents[$k]['children']);
1226                                 /*$y = $parents[$k]['children'];
1227                                 usort($y,'sort_thr_created_rev');
1228                                 $parents[$k]['children'] = $y;*/
1229                         }
1230                 }
1231         }
1232
1233         $ret = array();
1234         if(count($parents)) {
1235                 foreach($parents as $x) {
1236                         $ret[] = $x;
1237                         if(count($x['children']))
1238                                 add_children_to_list($x['children'], $ret);
1239                                 /*foreach($x['children'] as $y)
1240                                         $ret[] = $y;*/
1241                 }
1242         }
1243
1244         return $ret;
1245 }
1246
1247
1248 function sort_thr_created($a,$b) {
1249         return strcmp($b['created'],$a['created']);
1250 }
1251
1252 function sort_thr_created_rev($a,$b) {
1253         return strcmp($a['created'],$b['created']);
1254 }
1255
1256 function sort_thr_commented($a,$b) {
1257         return strcmp($b['commented'],$a['commented']);
1258 }
1259
1260 function find_thread_parent_index($arr,$x) {
1261         foreach($arr as $k => $v)
1262                 if($v['id'] == $x['parent'])
1263                         return $k;
1264         return false;
1265 }
1266
1267 function render_location_google($item) {
1268         $location = (($item['location']) ? '<a target="map" title="' . $item['location'] . '" href="http://maps.google.com/?q=' . urlencode($item['location']) . '">' . $item['location'] . '</a>' : '');
1269         $coord = (($item['coord']) ? '<a target="map" title="' . $item['coord'] . '" href="http://maps.google.com/?q=' . urlencode($item['coord']) . '">' . $item['coord'] . '</a>' : '');
1270         if($coord) {
1271                 if($location)
1272                         $location .= '<br /><span class="smalltext">(' . $coord . ')</span>';
1273                 else
1274                         $location = '<span class="smalltext">' . $coord . '</span>';
1275         }
1276         return $location;
1277 }