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