]> git.mxchange.org Git - friendica.git/blob - include/conversation.php
Opps ...
[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)
104                 || activity_match($item['verb'],ACTIVITY_DISLIKE)
105                 || activity_match($item['verb'],ACTIVITY_ATTEND)
106                 || activity_match($item['verb'],ACTIVITY_ATTENDNO)
107                 || activity_match($item['verb'],ACTIVITY_ATTENDMAYBE)){
108
109                 $r = q("SELECT * from `item`,`contact` WHERE
110                                 `item`.`contact-id`=`contact`.`id` AND `item`.`uri`='%s';",
111                                  dbesc($item['parent-uri']));
112                 if (!dbm::is_result($r)) return;
113                 $obj=$r[0];
114
115                 $author  = '[url=' . $item['author-link'] . ']' . $item['author-name'] . '[/url]';
116                 $objauthor =  '[url=' . $obj['author-link'] . ']' . $obj['author-name'] . '[/url]';
117
118                 switch($obj['verb']){
119                         case ACTIVITY_POST:
120                                 switch ($obj['object-type']){
121                                         case ACTIVITY_OBJ_EVENT:
122                                                 $post_type = t('event');
123                                                 break;
124                                         default:
125                                                 $post_type = t('status');
126                                 }
127                                 break;
128                         default:
129                                 if ($obj['resource-id']){
130                                         $post_type = t('photo');
131                                         $m=array(); preg_match("/\[url=([^]]*)\]/", $obj['body'], $m);
132                                         $rr['plink'] = $m[1];
133                                 } else {
134                                         $post_type = t('status');
135                                 }
136                 }
137
138                 $plink = '[url=' . $obj['plink'] . ']' . $post_type . '[/url]';
139
140                 if (activity_match($item['verb'],ACTIVITY_LIKE)) {
141                         $bodyverb = t('%1$s likes %2$s\'s %3$s');
142                 }
143                 elseif (activity_match($item['verb'],ACTIVITY_DISLIKE)) {
144                         $bodyverb = t('%1$s doesn\'t like %2$s\'s %3$s');
145                 }
146                 elseif (activity_match($item['verb'],ACTIVITY_ATTEND)) {
147                         $bodyverb = t('%1$s attends %2$s\'s %3$s');
148                 }
149                 elseif (activity_match($item['verb'],ACTIVITY_ATTENDNO)) {
150                         $bodyverb = t('%1$s doesn\'t attend %2$s\'s %3$s');
151                 }
152                 elseif (activity_match($item['verb'],ACTIVITY_ATTENDMAYBE)) {
153                         $bodyverb = t('%1$s attends maybe %2$s\'s %3$s');
154                 }
155                 $item['body'] = sprintf($bodyverb, $author, $objauthor, $plink);
156
157         }
158         if (activity_match($item['verb'],ACTIVITY_FRIEND)) {
159
160                 if ($item['object-type']=="" || $item['object-type']!== ACTIVITY_OBJ_PERSON) return;
161
162                 $Aname = $item['author-name'];
163                 $Alink = $item['author-link'];
164
165                 $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
166
167                 $obj = parse_xml_string($xmlhead.$item['object']);
168                 $links = parse_xml_string($xmlhead."<links>".unxmlify($obj->link)."</links>");
169
170                 $Bname = $obj->title;
171                 $Blink = ""; $Bphoto = "";
172                 foreach ($links->link as $l){
173                         $atts = $l->attributes();
174                         switch($atts['rel']){
175                                 case "alternate": $Blink = $atts['href'];
176                                 case "photo": $Bphoto = $atts['href'];
177                         }
178
179                 }
180
181                 $A = '[url=' . zrl($Alink) . ']' . $Aname . '[/url]';
182                 $B = '[url=' . zrl($Blink) . ']' . $Bname . '[/url]';
183                 if ($Bphoto!="") $Bphoto = '[url=' . zrl($Blink) . '][img]' . $Bphoto . '[/img][/url]';
184
185                 $item['body'] = sprintf( t('%1$s is now friends with %2$s'), $A, $B)."\n\n\n".$Bphoto;
186
187         }
188         if (stristr($item['verb'],ACTIVITY_POKE)) {
189                 $verb = urldecode(substr($item['verb'],strpos($item['verb'],'#')+1));
190                 if (! $verb)
191                         return;
192                 if ($item['object-type']=="" || $item['object-type']!== ACTIVITY_OBJ_PERSON) return;
193
194                 $Aname = $item['author-name'];
195                 $Alink = $item['author-link'];
196
197                 $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
198
199                 $obj = parse_xml_string($xmlhead.$item['object']);
200                 $links = parse_xml_string($xmlhead."<links>".unxmlify($obj->link)."</links>");
201
202                 $Bname = $obj->title;
203                 $Blink = ""; $Bphoto = "";
204                 foreach ($links->link as $l){
205                         $atts = $l->attributes();
206                         switch($atts['rel']){
207                                 case "alternate": $Blink = $atts['href'];
208                                 case "photo": $Bphoto = $atts['href'];
209                         }
210
211                 }
212
213                 $A = '[url=' . zrl($Alink) . ']' . $Aname . '[/url]';
214                 $B = '[url=' . zrl($Blink) . ']' . $Bname . '[/url]';
215                 if ($Bphoto!="") $Bphoto = '[url=' . zrl($Blink) . '][img=80x80]' . $Bphoto . '[/img][/url]';
216
217                 // we can't have a translation string with three positions but no distinguishable text
218                 // So here is the translate string.
219                 $txt = t('%1$s poked %2$s');
220
221                 // now translate the verb
222                 $poked_t = trim(sprintf($txt, "",""));
223                 $txt = str_replace( $poked_t, t($verb), $txt);
224
225                 // then do the sprintf on the translation string
226
227                 $item['body'] = sprintf($txt, $A, $B). "\n\n\n" . $Bphoto;
228
229         }
230         if (stristr($item['verb'],ACTIVITY_MOOD)) {
231                 $verb = urldecode(substr($item['verb'],strpos($item['verb'],'#')+1));
232                 if (! $verb)
233                         return;
234
235                 $Aname = $item['author-name'];
236                 $Alink = $item['author-link'];
237                 $A = '[url=' . zrl($Alink) . ']' . $Aname . '[/url]';
238
239                 $txt = t('%1$s is currently %2$s');
240
241                 $item['body'] = sprintf($txt, $A, t($verb));
242         }
243
244         if (activity_match($item['verb'],ACTIVITY_TAG)) {
245                 $r = q("SELECT * from `item`,`contact` WHERE
246                 `item`.`contact-id`=`contact`.`id` AND `item`.`uri`='%s';",
247                  dbesc($item['parent-uri']));
248                 if (!dbm::is_result($r)) return;
249                 $obj=$r[0];
250
251                 $author  = '[url=' . zrl($item['author-link']) . ']' . $item['author-name'] . '[/url]';
252                 $objauthor =  '[url=' . zrl($obj['author-link']) . ']' . $obj['author-name'] . '[/url]';
253
254                 switch($obj['verb']){
255                         case ACTIVITY_POST:
256                                 switch ($obj['object-type']){
257                                         case ACTIVITY_OBJ_EVENT:
258                                                 $post_type = t('event');
259                                                 break;
260                                         default:
261                                                 $post_type = t('status');
262                                 }
263                                 break;
264                         default:
265                                 if ($obj['resource-id']){
266                                         $post_type = t('photo');
267                                         $m=array(); preg_match("/\[url=([^]]*)\]/", $obj['body'], $m);
268                                         $rr['plink'] = $m[1];
269                                 } else {
270                                         $post_type = t('status');
271                                 }
272                 }
273                 $plink = '[url=' . $obj['plink'] . ']' . $post_type . '[/url]';
274
275                 $parsedobj = parse_xml_string($xmlhead.$item['object']);
276
277                 $tag = sprintf('#[url=%s]%s[/url]', $parsedobj->id, $parsedobj->content);
278                 $item['body'] = sprintf( t('%1$s tagged %2$s\'s %3$s with %4$s'), $author, $objauthor, $plink, $tag );
279
280         }
281         if (activity_match($item['verb'],ACTIVITY_FAVORITE)){
282
283                 if ($item['object-type']== "")
284                         return;
285
286                 $Aname = $item['author-name'];
287                 $Alink = $item['author-link'];
288
289                 $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
290
291                 $obj = parse_xml_string($xmlhead.$item['object']);
292                 if (strlen($obj->id)) {
293                         $r = q("select * from item where uri = '%s' and uid = %d limit 1",
294                                         dbesc($obj->id),
295                                         intval($item['uid'])
296                         );
297                         if (dbm::is_result($r) && $r[0]['plink']) {
298                                 $target = $r[0];
299                                 $Bname = $target['author-name'];
300                                 $Blink = $target['author-link'];
301                                 $A = '[url=' . zrl($Alink) . ']' . $Aname . '[/url]';
302                                 $B = '[url=' . zrl($Blink) . ']' . $Bname . '[/url]';
303                                 $P = '[url=' . $target['plink'] . ']' . t('post/item') . '[/url]';
304                                 $item['body'] = sprintf( t('%1$s marked %2$s\'s %3$s as favorite'), $A, $B, $P)."\n";
305
306                         }
307                 }
308         }
309         $matches = null;
310         if (preg_match_all('/@\[url=(.*?)\]/is',$item['body'],$matches,PREG_SET_ORDER)) {
311                 foreach ($matches as $mtch) {
312                         if (! strpos($mtch[1],'zrl='))
313                                 $item['body'] = str_replace($mtch[0],'@[url=' . zrl($mtch[1]). ']',$item['body']);
314                 }
315         }
316
317         // add zrl's to public images
318         $photo_pattern = "/\[url=(.*?)\/photos\/(.*?)\/image\/(.*?)\]\[img(.*?)\]h(.*?)\[\/img\]\[\/url\]/is";
319         if (preg_match($photo_pattern,$item['body'])) {
320                 $photo_replace = '[url=' . zrl('$1' . '/photos/' . '$2' . '/image/' . '$3' ,true) . '][img' . '$4' . ']h' . '$5'  . '[/img][/url]';
321                 $item['body'] = bb_tag_preg_replace($photo_pattern, $photo_replace, 'url', $item['body']);
322         }
323
324         // add sparkle links to appropriate permalinks
325
326         $x = stristr($item['plink'],'/display/');
327         if ($x) {
328                 $sparkle = false;
329                 $y = best_link_url($item,$sparkle,true);
330
331                 if (strstr($y,'/redir/')) {
332                         $item['plink'] = $y . '?f=&url=' . $item['plink'];
333                 }
334         }
335
336
337
338 }
339
340 /**
341  * Count the total of comments on this item and its desendants
342  */
343 function count_descendants($item) {
344         $total = count($item['children']);
345
346         if ($total > 0) {
347                 foreach ($item['children'] as $child) {
348                         if (! visible_activity($child))
349                                 $total --;
350                         $total += count_descendants($child);
351                 }
352         }
353
354         return $total;
355 }
356
357 function visible_activity($item) {
358
359         // likes (etc.) can apply to other things besides posts. Check if they are post children,
360         // in which case we handle them specially
361
362         $hidden_activities = array(ACTIVITY_LIKE, ACTIVITY_DISLIKE, ACTIVITY_ATTEND, ACTIVITY_ATTENDNO, ACTIVITY_ATTENDMAYBE);
363         foreach ($hidden_activities as $act) {
364                 if (activity_match($item['verb'],$act)) {
365                         return false;
366                 }
367         }
368
369         if (activity_match($item['verb'],ACTIVITY_FOLLOW) && $item['object-type'] === ACTIVITY_OBJ_NOTE) {
370                 if (! (($item['self']) && ($item['uid'] == local_user()))) {
371                         return false;
372                 }
373         }
374
375         return true;
376 }
377
378 /**
379  * @brief SQL query for items
380  */
381 function item_query() {
382
383         return "SELECT ".item_fieldlists()." FROM `item` ".
384                 item_joins()." WHERE ".item_condition();
385 }
386
387 /**
388  * @brief List of all data fields that are needed for displaying items
389  */
390 function item_fieldlists() {
391
392 /*
393 These Fields are not added below (yet). They are here to for bug search.
394 `item`.`type`,
395 `item`.`extid`,
396 `item`.`received`,
397 `item`.`changed`,
398 `item`.`moderated`,
399 `item`.`target-type`,
400 `item`.`target`,
401 `item`.`resource-id`,
402 `item`.`tag`,
403 `item`.`inform`,
404 `item`.`pubmail`,
405 `item`.`visible`,
406 `item`.`spam`,
407 `item`.`bookmark`,
408 `item`.`unseen`,
409 `item`.`deleted`,
410 `item`.`origin`,
411 `item`.`forum_mode`,
412 `item`.`last-child`,
413 `item`.`mention`,
414 `item`.`global`,
415 `item`.`gcontact-id`,
416 `item`.`shadow`,
417 */
418
419         return "`item`.`author-id`, `item`.`author-link`, `item`.`author-name`, `item`.`author-avatar`,
420                 `item`.`owner-id`, `item`.`owner-link`, `item`.`owner-name`, `item`.`owner-avatar`,
421                 `item`.`contact-id`, `item`.`uid`, `item`.`id`, `item`.`parent`,
422                 `item`.`uri`, `item`.`thr-parent`, `item`.`parent-uri`,
423                 `item`.`commented`, `item`.`created`, `item`.`edited`,
424                 `item`.`verb`, `item`.`object-type`, `item`.`postopts`, `item`.`plink`,
425                 `item`.`guid`, `item`.`wall`, `item`.`private`, `item`.`starred`,
426                 `item`.`title`, `item`.`body`, `item`.`file`, `item`.`event-id`,
427                 `item`.`location`, `item`.`coord`, `item`.`app`, `item`.`attach`,
428                 `item`.`rendered-hash`, `item`.`rendered-html`, `item`.`object`,
429                 `item`.`allow_cid`, `item`.`allow_gid`, `item`.`deny_cid`, `item`.`deny_gid`,
430                 `item`.`id` AS `item_id`, `item`.`network` AS `item_network`,
431
432                 `author`.`thumb` AS `author-thumb`, `owner`.`thumb` AS `owner-thumb`,
433
434                 `contact`.`network`, `contact`.`url`, `contact`.`name`, `contact`.`writable`,
435                 `contact`.`self`, `contact`.`id` AS `cid`, `contact`.`alias`";
436 }
437
438 /**
439  * @brief SQL join for contacts that are needed for displaying items
440  */
441 function item_joins() {
442
443         return "STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND
444                 (NOT `contact`.`blocked` OR `contact`.`pending`)
445                 LEFT JOIN `contact` AS `author` ON `author`.`id`=`item`.`author-id`
446                 LEFT JOIN `contact` AS `owner` ON `owner`.`id`=`item`.`owner-id`";
447 }
448
449 /**
450  * @brief SQL condition for items that are needed for displaying items
451  */
452 function item_condition() {
453
454         return "`item`.`visible` AND NOT `item`.`deleted` AND NOT `item`.`moderated`";
455 }
456
457 /**
458  * "Render" a conversation or list of items for HTML display.
459  * There are two major forms of display:
460  *      - Sequential or unthreaded ("New Item View" or search results)
461  *      - conversation view
462  * The $mode parameter decides between the various renderings and also
463  * figures out how to determine page owner and other contextual items
464  * that are based on unique features of the calling module.
465  *
466  */
467
468 if (!function_exists('conversation')) {
469 function conversation(App $a, $items, $mode, $update, $preview = false) {
470
471         require_once('include/bbcode.php');
472         require_once('include/Contact.php');
473         require_once('mod/proxy.php');
474
475         $ssl_state = ((local_user()) ? true : false);
476
477         $profile_owner = 0;
478         $page_writeable = false;
479         $live_update_div = '';
480
481         $arr_blocked = null;
482
483         if (local_user()) {
484                 $str_blocked = get_pconfig(local_user(),'system','blocked');
485                 if ($str_blocked) {
486                         $arr_blocked = explode(',',$str_blocked);
487                         for ($x = 0; $x < count($arr_blocked); $x ++) {
488                                 $arr_blocked[$x] = trim($arr_blocked[$x]);
489                         }
490                 }
491
492         }
493
494         $previewing = (($preview) ? ' preview ' : '');
495
496         if ($mode === 'network') {
497                 $profile_owner = local_user();
498                 $page_writeable = true;
499                 if (!$update) {
500                         // The special div is needed for liveUpdate to kick in for this page.
501                         // We only launch liveUpdate if you aren't filtering in some incompatible
502                         // way and also you aren't writing a comment (discovered in javascript).
503
504                         $live_update_div = '<div id="live-network"></div>' . "\r\n"
505                                 . "<script> var profile_uid = " . $_SESSION['uid']
506                                 . "; var netargs = '" . substr($a->cmd,8)
507                                 . '?f='
508                                 . ((x($_GET,'cid'))    ? '&cid='    . $_GET['cid']    : '')
509                                 . ((x($_GET,'search')) ? '&search=' . $_GET['search'] : '')
510                                 . ((x($_GET,'star'))   ? '&star='   . $_GET['star']   : '')
511                                 . ((x($_GET,'order'))  ? '&order='  . $_GET['order']  : '')
512                                 . ((x($_GET,'bmark'))  ? '&bmark='  . $_GET['bmark']  : '')
513                                 . ((x($_GET,'liked'))  ? '&liked='  . $_GET['liked']  : '')
514                                 . ((x($_GET,'conv'))   ? '&conv='   . $_GET['conv']   : '')
515                                 . ((x($_GET,'spam'))   ? '&spam='   . $_GET['spam']   : '')
516                                 . ((x($_GET,'nets'))   ? '&nets='   . $_GET['nets']   : '')
517                                 . ((x($_GET,'cmin'))   ? '&cmin='   . $_GET['cmin']   : '')
518                                 . ((x($_GET,'cmax'))   ? '&cmax='   . $_GET['cmax']   : '')
519                                 . ((x($_GET,'file'))   ? '&file='   . $_GET['file']   : '')
520
521                                 . "'; var profile_page = " . $a->pager['page'] . "; </script>\r\n";
522                 }
523         }
524         else if ($mode === 'profile') {
525                 $profile_owner = $a->profile['profile_uid'];
526                 $page_writeable = can_write_wall($a,$profile_owner);
527
528                 if (!$update) {
529                         $tab = notags(trim($_GET['tab']));
530                         $tab = ( $tab ? $tab : 'posts' );
531                         if ($tab === 'posts') {
532                                 // This is ugly, but we can't pass the profile_uid through the session to the ajax updater,
533                                 // because browser prefetching might change it on us. We have to deliver it with the page.
534
535                                 $live_update_div = '<div id="live-profile"></div>' . "\r\n"
536                                         . "<script> var profile_uid = " . $a->profile['profile_uid']
537                                         . "; var netargs = '?f='; var profile_page = " . $a->pager['page'] . "; </script>\r\n";
538                         }
539                 }
540         }
541         else if ($mode === 'notes') {
542                 $profile_owner = local_user();
543                 $page_writeable = true;
544                 if (!$update) {
545                         $live_update_div = '<div id="live-notes"></div>' . "\r\n"
546                                 . "<script> var profile_uid = " . local_user()
547                                 . "; var netargs = '/?f='; var profile_page = " . $a->pager['page'] . "; </script>\r\n";
548                 }
549         }
550         else if ($mode === 'display') {
551                 $profile_owner = $a->profile['uid'];
552                 $page_writeable = can_write_wall($a,$profile_owner);
553                 if (!$update) {
554                         $live_update_div = '<div id="live-display"></div>' . "\r\n"
555                                 . "<script> var profile_uid = " . $_SESSION['uid'] . ";"
556                                 . " var profile_page = 1; </script>";
557                 }
558         }
559         else if ($mode === 'community') {
560                 $profile_owner = 0;
561                 $page_writeable = false;
562                 if (!$update) {
563                         $live_update_div = '<div id="live-community"></div>' . "\r\n"
564                                 . "<script> var profile_uid = -1; var netargs = '/?f='; var profile_page = " . $a->pager['page'] . "; </script>\r\n";
565                 }
566         }
567         else if ($mode === 'search') {
568                 $live_update_div = '<div id="live-search"></div>' . "\r\n";
569         }
570
571         $page_dropping = ((local_user() && local_user() == $profile_owner) ? true : false);
572
573
574         if ($update)
575                 $return_url = $_SESSION['return_url'];
576         else
577                 $return_url = $_SESSION['return_url'] = $a->query_string;
578
579         $cb = array('items' => $items, 'mode' => $mode, 'update' => $update, 'preview' => $preview);
580         call_hooks('conversation_start',$cb);
581
582         $items = $cb['items'];
583
584         $cmnt_tpl    = get_markup_template('comment_item.tpl');
585         $hide_comments_tpl = get_markup_template('hide_comments.tpl');
586
587         $conv_responses = array(
588                 'like' => array('title' => t('Likes','title')), 'dislike' => array('title' => t('Dislikes','title')),
589                 'attendyes' => array('title' => t('Attending','title')), 'attendno' => array('title' => t('Not attending','title')), 'attendmaybe' => array('title' => t('Might attend','title'))
590         );
591
592         // array with html for each thread (parent+comments)
593         $threads = array();
594         $threadsid = -1;
595
596         $page_template = get_markup_template("conversation.tpl");
597
598         if ($items && count($items)) {
599
600                 if ($mode === 'network-new' || $mode === 'search' || $mode === 'community') {
601
602                         // "New Item View" on network page or search page results
603                         // - just loop through the items and format them minimally for display
604
605 //                      $tpl = get_markup_template('search_item.tpl');
606                         $tpl = 'search_item.tpl';
607
608                         foreach ($items as $item) {
609
610                                 if ($arr_blocked) {
611                                         $blocked = false;
612                                         foreach ($arr_blocked as $b) {
613                                                 if ($b && link_compare($item['author-link'],$b)) {
614                                                         $blocked = true;
615                                                         break;
616                                                 }
617                                         }
618                                         if ($blocked)
619                                                 continue;
620                                 }
621
622
623                                 $threadsid++;
624
625                                 $comment     = '';
626                                 $owner_url   = '';
627                                 $owner_name  = '';
628                                 $sparkle     = '';
629
630                                 if ($mode === 'search' || $mode === 'community') {
631                                         if (((activity_match($item['verb'],ACTIVITY_LIKE)) || (activity_match($item['verb'],ACTIVITY_DISLIKE)))
632                                                 && ($item['id'] != $item['parent']))
633                                                 continue;
634                                         $nickname = $item['nickname'];
635                                 }
636                                 else
637                                         $nickname = $a->user['nickname'];
638
639                                 // prevent private email from leaking.
640                                 if ($item['network'] === NETWORK_MAIL && local_user() != $item['uid'])
641                                                 continue;
642
643                                 $profile_name   = ((strlen($item['author-name']))   ? $item['author-name']   : $item['name']);
644                                 if ($item['author-link'] && (! $item['author-name']))
645                                         $profile_name = $item['author-link'];
646
647
648
649                                 $tags=array();
650                                 $hashtags = array();
651                                 $mentions = array();
652
653                                 $taglist = q("SELECT `type`, `term`, `url` FROM `term` WHERE `otype` = %d AND `oid` = %d AND `type` IN (%d, %d) ORDER BY `tid`",
654                                                 intval(TERM_OBJ_POST), intval($item['id']), intval(TERM_HASHTAG), intval(TERM_MENTION));
655
656                                 foreach ($taglist as $tag) {
657
658                                         if ($tag["url"] == "")
659                                                 $tag["url"] = $searchpath.strtolower($tag["term"]);
660
661                                         if ($tag["type"] == TERM_HASHTAG) {
662                                                 $hashtags[] = "#<a href=\"".$tag["url"]."\" target=\"_blank\">".$tag["term"]."</a>";
663                                                 $prefix = "#";
664                                         } elseif ($tag["type"] == TERM_MENTION) {
665                                                 $mentions[] = "@<a href=\"".$tag["url"]."\" target=\"_blank\">".$tag["term"]."</a>";
666                                                 $prefix = "@";
667                                         }
668                                         $tags[] = $prefix."<a href=\"".$tag["url"]."\" target=\"_blank\">".$tag["term"]."</a>";
669                                 }
670
671                                 $sp = false;
672                                 $profile_link = best_link_url($item,$sp);
673                                 if ($profile_link === 'mailbox')
674                                         $profile_link = '';
675                                 if ($sp)
676                                         $sparkle = ' sparkle';
677                                 else
678                                         $profile_link = zrl($profile_link);
679
680                                 if (!isset($item['author-thumb']) OR ($item['author-thumb'] == "")) {
681                                         $author_contact = get_contact_details_by_url($item['author-link'], $profile_owner);
682                                         if ($author_contact["thumb"])
683                                                 $item['author-thumb'] = $author_contact["thumb"];
684                                         else
685                                                 $item['author-thumb'] = $item['author-avatar'];
686                                 }
687
688                                 if (!isset($item['owner-thumb']) OR ($item['owner-thumb'] == "")) {
689                                         $owner_contact = get_contact_details_by_url($item['owner-link'], $profile_owner);
690                                         if ($owner_contact["thumb"])
691                                                 $item['owner-thumb'] = $owner_contact["thumb"];
692                                         else
693                                                 $item['owner-thumb'] = $item['owner-avatar'];
694                                 }
695
696                                 $locate = array('location' => $item['location'], 'coord' => $item['coord'], 'html' => '');
697                                 call_hooks('render_location',$locate);
698
699                                 $location = ((strlen($locate['html'])) ? $locate['html'] : render_location_dummy($locate));
700
701                                 localize_item($item);
702                                 if ($mode === 'network-new')
703                                         $dropping = true;
704                                 else
705                                         $dropping = false;
706
707
708                                 $drop = array(
709                                         'dropping' => $dropping,
710                                         'pagedrop' => $page_dropping,
711                                         'select' => t('Select'),
712                                         'delete' => t('Delete'),
713                                 );
714
715                                 $star = false;
716                                 $isstarred = "unstarred";
717
718                                 $lock = false;
719                                 $likebuttons = false;
720                                 $shareable = false;
721
722                                 $body = prepare_body($item,true, $preview);
723
724
725                                 list($categories, $folders) = get_cats_and_terms($item);
726
727                                 if ($a->theme['template_engine'] === 'internal') {
728                                         $profile_name_e = template_escape($profile_name);
729                                         $item['title_e'] = template_escape($item['title']);
730                                         $body_e = template_escape($body);
731                                         $tags_e = template_escape($tags);
732                                         $hashtags_e = template_escape($hashtags);
733                                         $mentions_e = template_escape($mentions);
734                                         $location_e = template_escape($location);
735                                         $owner_name_e = template_escape($owner_name);
736                                 }
737                                 else {
738                                         $profile_name_e = $profile_name;
739                                         $item['title_e'] = $item['title'];
740                                         $body_e = $body;
741                                         $tags_e = $tags;
742                                         $hashtags_e = $hashtags;
743                                         $mentions_e = $mentions;
744                                         $location_e = $location;
745                                         $owner_name_e = $owner_name;
746                                 }
747
748                                 if ($item['item_network'] == "")
749                                         $item['item_network'] = $item['network'];
750
751                                 $tmp_item = array(
752                                         'template' => $tpl,
753                                         'id' => (($preview) ? 'P0' : $item['item_id']),
754                                         'network' => $item['item_network'],
755                                         'network_name' => network_to_name($item['item_network'], $profile_link),
756                                         'linktitle' => sprintf( t('View %s\'s profile @ %s'), $profile_name, ((strlen($item['author-link'])) ? $item['author-link'] : $item['url'])),
757                                         'profile_url' => $profile_link,
758                                         'item_photo_menu' => item_photo_menu($item),
759                                         'name' => $profile_name_e,
760                                         'sparkle' => $sparkle,
761                                         'lock' => $lock,
762                                         'thumb' => App::remove_baseurl(proxy_url($item['author-thumb'], false, PROXY_SIZE_THUMB)),
763                                         'title' => $item['title_e'],
764                                         'body' => $body_e,
765                                         'tags' => $tags_e,
766                                         'hashtags' => $hashtags_e,
767                                         'mentions' => $mentions_e,
768                                         'txt_cats' => t('Categories:'),
769                                         'txt_folders' => t('Filed under:'),
770                                         'has_cats' => ((count($categories)) ? 'true' : ''),
771                                         'has_folders' => ((count($folders)) ? 'true' : ''),
772                                         'categories' => $categories,
773                                         'folders' => $folders,
774                                         'text' => strip_tags($body_e),
775                                         'localtime' => datetime_convert('UTC', date_default_timezone_get(), $item['created'], 'r'),
776                                         'ago' => (($item['app']) ? sprintf( t('%s from %s'),relative_date($item['created']),$item['app']) : relative_date($item['created'])),
777                                         'location' => $location_e,
778                                         'indent' => '',
779                                         'owner_name' => $owner_name_e,
780                                         'owner_url' => $owner_url,
781                                         'owner_photo' => App::remove_baseurl(proxy_url($item['owner-thumb'], false, PROXY_SIZE_THUMB)),
782                                         'plink' => get_plink($item),
783                                         'edpost' => false,
784                                         'isstarred' => $isstarred,
785                                         'star' => $star,
786                                         'drop' => $drop,
787                                         'vote' => $likebuttons,
788                                         'like' => '',
789                                         'dislike' => '',
790                                         'comment' => '',
791                                         //'conv' => (($preview) ? '' : array('href'=> 'display/' . $nickname . '/' . $item['id'], 'title'=> t('View in context'))),
792                                         'conv' => (($preview) ? '' : array('href'=> 'display/'.$item['guid'], 'title'=> t('View in context'))),
793                                         'previewing' => $previewing,
794                                         'wait' => t('Please wait'),
795                                         'thread_level' => 1,
796                                 );
797
798                                 $arr = array('item' => $item, 'output' => $tmp_item);
799                                 call_hooks('display_item', $arr);
800
801                                 $threads[$threadsid]['id'] = $item['item_id'];
802                                 $threads[$threadsid]['network'] = $item['item_network'];
803                                 $threads[$threadsid]['items'] = array($arr['output']);
804
805                         }
806                 }
807                 else
808                 {
809                         // Normal View
810                         $page_template = get_markup_template("threaded_conversation.tpl");
811
812                         require_once('object/Conversation.php');
813                         require_once('object/Item.php');
814
815                         $conv = new Conversation($mode, $preview);
816
817                         // get all the topmost parents
818                         // this shouldn't be needed, as we should have only them in our array
819                         // But for now, this array respects the old style, just in case
820
821                         $threads = array();
822                         foreach ($items as $item) {
823
824                                 if ($arr_blocked) {
825                                         $blocked = false;
826                                         foreach ($arr_blocked as $b) {
827
828                                                 if ($b && link_compare($item['author-link'],$b)) {
829                                                         $blocked = true;
830                                                         break;
831                                                 }
832                                         }
833                                         if ($blocked)
834                                                 continue;
835                                 }
836
837
838
839                                 // Can we put this after the visibility check?
840                                 builtin_activity_puller($item, $conv_responses);
841
842                                 // Only add what is visible
843                                 if ($item['network'] === NETWORK_MAIL && local_user() != $item['uid']) {
844                                         continue;
845                                 }
846                                 if (! visible_activity($item)) {
847                                         continue;
848                                 }
849
850                                 call_hooks('display_item', $arr);
851
852                                 $item['pagedrop'] = $page_dropping;
853
854                                 if ($item['id'] == $item['parent']) {
855                                         $item_object = new Item($item);
856                                         $conv->add_thread($item_object);
857                                 }
858                         }
859
860                         $threads = $conv->get_template_data($conv_responses);
861
862                         if (!$threads) {
863                                 logger('[ERROR] conversation : Failed to get template data.', LOGGER_DEBUG);
864                                 $threads = array();
865                         }
866                 }
867         }
868
869         $o = replace_macros($page_template, array(
870                 '$baseurl' => App::get_baseurl($ssl_state),
871                 '$return_path' => $a->query_string,
872                 '$live_update' => $live_update_div,
873                 '$remove' => t('remove'),
874                 '$mode' => $mode,
875                 '$user' => $a->user,
876                 '$threads' => $threads,
877                 '$dropping' => ($page_dropping && feature_enabled(local_user(),'multi_delete') ? t('Delete Selected Items') : False),
878         ));
879
880         return $o;
881 }}
882
883 function best_link_url($item,&$sparkle,$ssl_state = false) {
884
885         $best_url = '';
886         $sparkle  = false;
887
888         $clean_url = normalise_link($item['author-link']);
889
890         if (local_user()) {
891                 $r = q("SELECT `id` FROM `contact` WHERE `network` = '%s' AND `uid` = %d AND `nurl` = '%s' AND NOT `pending` LIMIT 1",
892                         dbesc(NETWORK_DFRN), intval(local_user()), dbesc(normalise_link($clean_url)));
893                 if ($r) {
894                         $best_url = 'redir/'.$r[0]['id'];
895                         $sparkle = true;
896                 }
897         }
898         if (! $best_url) {
899                 if (strlen($item['author-link']))
900                         $best_url = $item['author-link'];
901                 else
902                         $best_url = $item['url'];
903         }
904
905         return $best_url;
906 }
907
908
909 if (! function_exists('item_photo_menu')) {
910 function item_photo_menu($item)
911 {
912         $ssl_state = false;
913
914         if (local_user()) {
915                 $ssl_state = true;
916         }
917
918         $sub_link = '';
919         $poke_link = '';
920         $contact_url = '';
921         $pm_url = '';
922         $status_link = '';
923         $photos_link = '';
924         $posts_link = '';
925         $network = '';
926
927         if ((local_user()) && local_user() == $item['uid'] && $item['parent'] == $item['id'] && (! $item['self'])) {
928                 $sub_link = 'javascript:dosubthread(' . $item['id'] . '); return false;';
929         }
930
931         $sparkle = false;
932         $profile_link = best_link_url($item, $sparkle, $ssl_state);
933         if ($profile_link === 'mailbox') {
934                 $profile_link = '';
935         }
936
937         $cid = 0;
938         $network = '';
939         $rel = 0;
940         $r = q("SELECT `id`, `network`, `rel` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' LIMIT 1",
941                 intval(local_user()), dbesc(normalise_link($item['author-link'])));
942         if ($r) {
943                 $cid = $r[0]['id'];
944                 $network = $r[0]['network'];
945                 $rel = $r[0]['rel'];
946         }
947
948         if ($sparkle) {
949                 $status_link = $profile_link . '?url=status';
950                 $photos_link = $profile_link . '?url=photos';
951                 $profile_link = $profile_link . '?url=profile';
952                 $zurl = '';
953         } else {
954                 $profile_link = zrl($profile_link);
955         }
956
957         if ($cid && !$item['self']) {
958                 $poke_link = 'poke/?f=&c=' . $cid;
959                 $contact_url = 'contacts/' . $cid;
960                 $posts_link = 'contacts/' . $cid . '/posts';
961
962                 if (in_array($network, array(NETWORK_DFRN, NETWORK_DIASPORA))) {
963                         $pm_url = 'message/new/' . $cid;
964                 }
965         }
966
967         if (local_user()) {
968                 $menu = Array(
969                         t('Follow Thread') => $sub_link,
970                         t('View Status') => $status_link,
971                         t('View Profile') => $profile_link,
972                         t('View Photos') => $photos_link,
973                         t('Network Posts') => $posts_link,
974                         t('View Contact') => $contact_url,
975                         t('Send PM') => $pm_url
976                 );
977
978                 if ($network == NETWORK_DFRN) {
979                         $menu[t("Poke")] = $poke_link;
980                 }
981
982                 if ((($cid == 0) OR ($rel == CONTACT_IS_FOLLOWER)) AND
983                         in_array($item['network'], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA))) {
984                         $menu[t('Connect/Follow')] = 'follow?url=' . urlencode($item['author-link']);
985                 }
986         } else {
987                 $menu = array(t('View Profile') => $item['author-link']);
988         }
989
990         $args = array('item' => $item, 'menu' => $menu);
991
992         call_hooks('item_photo_menu', $args);
993
994         $menu = $args['menu'];
995
996         $o = '';
997         foreach ($menu as $k => $v) {
998                 if (strpos($v, 'javascript:') === 0) {
999                         $v = substr($v, 11);
1000                         $o .= '<li role="menuitem"><a onclick="' . $v . '">' . $k . '</a></li>' . PHP_EOL;
1001                 } elseif ($v!='') {
1002                         $o .= '<li role="menuitem"><a href="' . $v . '">' . $k . '</a></li>' . PHP_EOL;
1003                 }
1004         }
1005         return $o;
1006 }}
1007
1008 /**
1009  * @brief Checks item to see if it is one of the builtin activities (like/dislike, event attendance, consensus items, etc.)
1010  * Increments the count of each matching activity and adds a link to the author as needed.
1011  *
1012  * @param array $item
1013  * @param array &$conv_responses (already created with builtin activity structure)
1014  * @return void
1015  */
1016 if (! function_exists('builtin_activity_puller')) {
1017 function builtin_activity_puller($item, &$conv_responses) {
1018         foreach ($conv_responses as $mode => $v) {
1019                 $url = '';
1020                 $sparkle = '';
1021
1022                 switch($mode) {
1023                         case 'like':
1024                                 $verb = ACTIVITY_LIKE;
1025                                 break;
1026                         case 'dislike':
1027                                 $verb = ACTIVITY_DISLIKE;
1028                                 break;
1029                         case 'attendyes':
1030                                 $verb = ACTIVITY_ATTEND;
1031                                 break;
1032                         case 'attendno':
1033                                 $verb = ACTIVITY_ATTENDNO;
1034                                 break;
1035                         case 'attendmaybe':
1036                                 $verb = ACTIVITY_ATTENDMAYBE;
1037                                 break;
1038                         default:
1039                                 return;
1040                                 break;
1041                 }
1042
1043                 if ((activity_match($item['verb'], $verb)) && ($item['id'] != $item['parent'])) {
1044                         $url = $item['author-link'];
1045                         if ((local_user()) && (local_user() == $item['uid']) && ($item['network'] === NETWORK_DFRN) && (! $item['self']) && (link_compare($item['author-link'],$item['url']))) {
1046                                 $url = 'redir/' . $item['contact-id'];
1047                                 $sparkle = ' class="sparkle" ';
1048                         }
1049                         else
1050                                 $url = zrl($url);
1051
1052                         $url = '<a href="'. $url . '"'. $sparkle .'>' . htmlentities($item['author-name']) . '</a>';
1053
1054                         if (! $item['thr-parent'])
1055                                 $item['thr-parent'] = $item['parent-uri'];
1056
1057                         if (! ((isset($conv_responses[$mode][$item['thr-parent'] . '-l']))
1058                                 && (is_array($conv_responses[$mode][$item['thr-parent'] . '-l']))))
1059                                 $conv_responses[$mode][$item['thr-parent'] . '-l'] = array();
1060
1061                         // only list each unique author once
1062                         if (in_array($url,$conv_responses[$mode][$item['thr-parent'] . '-l']))
1063                                 continue;
1064
1065                         if (! isset($conv_responses[$mode][$item['thr-parent']]))
1066                                 $conv_responses[$mode][$item['thr-parent']] = 1;
1067                         else
1068                                 $conv_responses[$mode][$item['thr-parent']] ++;
1069
1070                         if (public_contact() == $item['author-id']) {
1071                                 $conv_responses[$mode][$item['thr-parent'] . '-self'] = 1;
1072                         }
1073
1074                         $conv_responses[$mode][$item['thr-parent'] . '-l'][] = $url;
1075
1076                         // there can only be one activity verb per item so if we found anything, we can stop looking
1077                         return;
1078                 }
1079         }
1080 }}
1081
1082 // Format the vote text for a profile item
1083 // $cnt = number of people who vote the item
1084 // $arr = array of pre-linked names of likers/dislikers
1085 // $type = one of 'like, 'dislike', 'attendyes', 'attendno', 'attendmaybe'
1086 // $id  = item id
1087 // returns formatted text
1088
1089 if (! function_exists('format_like')) {
1090 function format_like($cnt,$arr,$type,$id) {
1091         $o = '';
1092         $expanded = '';
1093
1094         if ($cnt == 1) {
1095                 $likers = $arr[0];
1096
1097                 // Phrase if there is only one liker. In other cases it will be uses for the expanded
1098                 // list which show all likers
1099                 switch($type) {
1100                         case 'like' :
1101                                 $phrase = sprintf( t('%s likes this.'), $likers);
1102                                 break;
1103                         case 'dislike' :
1104                                 $phrase = sprintf( t('%s doesn\'t like this.'), $likers);
1105                                 break;
1106                         case 'attendyes' :
1107                                 $phrase = sprintf( t('%s attends.'), $likers);
1108                                 break;
1109                         case 'attendno' :
1110                                 $phrase = sprintf( t('%s doesn\'t attend.'), $likers);
1111                                 break;
1112                         case 'attendmaybe' :
1113                                 $phrase = sprintf( t('%s attends maybe.'), $likers);
1114                                 break;
1115                 }
1116         }
1117
1118         if ($cnt > 1) {
1119                 $total = count($arr);
1120                 if ($total >= MAX_LIKERS)
1121                         $arr = array_slice($arr, 0, MAX_LIKERS - 1);
1122                 if ($total < MAX_LIKERS) {
1123                         $last = t('and') . ' ' . $arr[count($arr)-1];
1124                         $arr2 = array_slice($arr, 0, -1);
1125                         $str = implode(', ', $arr2) . ' ' . $last;
1126                 }
1127                 if ($total >= MAX_LIKERS) {
1128                         $str = implode(', ', $arr);
1129                         $str .= sprintf( t(', and %d other people'), $total - MAX_LIKERS );
1130                 }
1131
1132                 $likers = $str;
1133
1134                 $spanatts = "class=\"fakelink\" onclick=\"openClose('{$type}list-$id');\"";
1135
1136                 switch($type) {
1137                         case 'like':
1138                                 $phrase = sprintf( t('<span  %1$s>%2$d people</span> like this'), $spanatts, $cnt);
1139                                 $explikers = sprintf( t('%s like this.'), $likers);
1140                                 break;
1141                         case 'dislike':
1142                                 $phrase = sprintf( t('<span  %1$s>%2$d people</span> don\'t like this'), $spanatts, $cnt);
1143                                 $explikers = sprintf( t('%s don\'t like this.'), $likers);
1144                                 break;
1145                         case 'attendyes':
1146                                 $phrase = sprintf( t('<span  %1$s>%2$d people</span> attend'), $spanatts, $cnt);
1147                                 $explikers = sprintf( t('%s attend.'), $likers);
1148                                 break;
1149                         case 'attendno':
1150                                 $phrase = sprintf( t('<span  %1$s>%2$d people</span> don\'t attend'), $spanatts, $cnt);
1151                                 $explikers = sprintf( t('%s don\'t attend.'), $likers);
1152                                 break;
1153                         case 'attendmaybe':
1154                                 $phrase = sprintf( t('<span  %1$s>%2$d people</span> attend maybe'), $spanatts, $cnt);
1155                                 $explikers = sprintf( t('%s anttend maybe.'), $likers);
1156                                 break;
1157                 }
1158
1159                 $expanded .= "\t" . '<div class="wall-item-' . $type . '-expanded" id="' . $type . 'list-' . $id . '" style="display: none;" >' . $explikers . EOL . '</div>';
1160         }
1161
1162         $phrase .= EOL ;
1163         $o .= replace_macros(get_markup_template('voting_fakelink.tpl'), array(
1164                 '$phrase' => $phrase,
1165                 '$type' => $type,
1166                 '$id' => $id
1167         ));
1168         $o .= $expanded;
1169
1170         return $o;
1171 }}
1172
1173
1174 function status_editor($a,$x, $notes_cid = 0, $popup=false) {
1175         $o = '';
1176
1177         $geotag = (($x['allow_location']) ? replace_macros(get_markup_template('jot_geotag.tpl'), array()) : '');
1178
1179         $tpl = get_markup_template('jot-header.tpl');
1180         $a->page['htmlhead'] .= replace_macros($tpl, array(
1181                 '$newpost' => 'true',
1182                 '$baseurl' => App::get_baseurl(true),
1183                 '$geotag' => $geotag,
1184                 '$nickname' => $x['nickname'],
1185                 '$ispublic' => t('Visible to <strong>everybody</strong>'),
1186                 '$linkurl' => t('Please enter a link URL:'),
1187                 '$vidurl' => t("Please enter a video link/URL:"),
1188                 '$audurl' => t("Please enter an audio link/URL:"),
1189                 '$term' => t('Tag term:'),
1190                 '$fileas' => t('Save to Folder:'),
1191                 '$whereareu' => t('Where are you right now?'),
1192                 '$delitems' => t('Delete item(s)?')
1193         ));
1194
1195         $tpl = get_markup_template('jot-end.tpl');
1196         $a->page['end'] .= replace_macros($tpl, array(
1197                 '$newpost' => 'true',
1198                 '$baseurl' => App::get_baseurl(true),
1199                 '$geotag' => $geotag,
1200                 '$nickname' => $x['nickname'],
1201                 '$ispublic' => t('Visible to <strong>everybody</strong>'),
1202                 '$linkurl' => t('Please enter a link URL:'),
1203                 '$vidurl' => t("Please enter a video link/URL:"),
1204                 '$audurl' => t("Please enter an audio link/URL:"),
1205                 '$term' => t('Tag term:'),
1206                 '$fileas' => t('Save to Folder:'),
1207                 '$whereareu' => t('Where are you right now?')
1208         ));
1209
1210         $jotplugins = '';
1211         call_hooks('jot_tool', $jotplugins);
1212
1213         // Private/public post links for the non-JS ACL form
1214         $private_post = 1;
1215         if ($_REQUEST['public'])
1216                 $private_post = 0;
1217
1218         $query_str = $a->query_string;
1219         if (strpos($query_str, 'public=1') !== false)
1220                 $query_str = str_replace(array('?public=1', '&public=1'), array('', ''), $query_str);
1221
1222         // I think $a->query_string may never have ? in it, but I could be wrong
1223         // It looks like it's from the index.php?q=[etc] rewrite that the web
1224         // server does, which converts any ? to &, e.g. suggest&ignore=61 for suggest?ignore=61
1225         if (strpos($query_str, '?') === false)
1226                 $public_post_link = '?public=1';
1227         else
1228                 $public_post_link = '&public=1';
1229
1230
1231
1232 //      $tpl = replace_macros($tpl,array('$jotplugins' => $jotplugins));
1233         $tpl = get_markup_template("jot.tpl");
1234
1235         $o .= replace_macros($tpl,array(
1236                 '$return_path' => $query_str,
1237                 '$action' =>  'item',
1238                 '$share' => (x($x,'button') ? $x['button'] : t('Share')),
1239                 '$upload' => t('Upload photo'),
1240                 '$shortupload' => t('upload photo'),
1241                 '$attach' => t('Attach file'),
1242                 '$shortattach' => t('attach file'),
1243                 '$weblink' => t('Insert web link'),
1244                 '$shortweblink' => t('web link'),
1245                 '$video' => t('Insert video link'),
1246                 '$shortvideo' => t('video link'),
1247                 '$audio' => t('Insert audio link'),
1248                 '$shortaudio' => t('audio link'),
1249                 '$setloc' => t('Set your location'),
1250                 '$shortsetloc' => t('set location'),
1251                 '$noloc' => t('Clear browser location'),
1252                 '$shortnoloc' => t('clear location'),
1253                 '$title' => $x['title'],
1254                 '$placeholdertitle' => t('Set title'),
1255                 '$category' => $x['category'],
1256                 '$placeholdercategory' => (feature_enabled(local_user(),'categories') ? t('Categories (comma-separated list)') : ''),
1257                 '$wait' => t('Please wait'),
1258                 '$permset' => t('Permission settings'),
1259                 '$shortpermset' => t('permissions'),
1260                 '$ptyp' => (($notes_cid) ? 'note' : 'wall'),
1261                 '$content' => $x['content'],
1262                 '$post_id' => $x['post_id'],
1263                 '$baseurl' => App::get_baseurl(true),
1264                 '$defloc' => $x['default_location'],
1265                 '$visitor' => $x['visitor'],
1266                 '$pvisit' => (($notes_cid) ? 'none' : $x['visitor']),
1267                 '$public' => t('Public post'),
1268                 '$jotnets' => $jotnets,
1269                 '$lockstate' => $x['lockstate'],
1270                 '$bang' => $x['bang'],
1271                 '$profile_uid' => $x['profile_uid'],
1272                 '$preview' => ((feature_enabled($x['profile_uid'],'preview')) ? t('Preview') : ''),
1273                 '$jotplugins' => $jotplugins,
1274                 '$notes_cid' => $notes_cid,
1275                 '$sourceapp' => t($a->sourcename),
1276                 '$cancel' => t('Cancel'),
1277                 '$rand_num' => random_digits(12),
1278
1279                 // ACL permissions box
1280                 '$acl' => $x['acl'],
1281                 '$acl_data' => $x['acl_data'],
1282                 '$group_perms' => t('Post to Groups'),
1283                 '$contact_perms' => t('Post to Contacts'),
1284                 '$private' => t('Private post'),
1285                 '$is_private' => $private_post,
1286                 '$public_link' => $public_post_link,
1287
1288                 //jot nav tab (used in some themes)
1289                 '$message' => t('Message'),
1290                 '$browser' => t('Browser'),
1291         ));
1292
1293
1294         if ($popup==true){
1295                 $o = '<div id="jot-popup" style="display: none;">'.$o.'</div>';
1296
1297         }
1298
1299         return $o;
1300 }
1301
1302
1303 function get_item_children($arr, $parent) {
1304         $children = array();
1305         $a = get_app();
1306         foreach ($arr as $item) {
1307                 if ($item['id'] != $item['parent']) {
1308                         if (get_config('system','thread_allow') && $a->theme_thread_allow) {
1309                                 // Fallback to parent-uri if thr-parent is not set
1310                                 $thr_parent = $item['thr-parent'];
1311                                 if ($thr_parent == '')
1312                                         $thr_parent = $item['parent-uri'];
1313
1314                                 if ($thr_parent == $parent['uri']) {
1315                                         $item['children'] = get_item_children($arr, $item);
1316                                         $children[] = $item;
1317                                 }
1318                         }
1319                         else if ($item['parent'] == $parent['id']) {
1320                                 $children[] = $item;
1321                         }
1322                 }
1323         }
1324         return $children;
1325 }
1326
1327 function sort_item_children($items) {
1328         $result = $items;
1329         usort($result,'sort_thr_created_rev');
1330         foreach ($result as $k => $i) {
1331                 if (count($result[$k]['children'])) {
1332                         $result[$k]['children'] = sort_item_children($result[$k]['children']);
1333                 }
1334         }
1335         return $result;
1336 }
1337
1338 function add_children_to_list($children, &$arr) {
1339         foreach ($children as $y) {
1340                 $arr[] = $y;
1341                 if (count($y['children']))
1342                         add_children_to_list($y['children'], $arr);
1343         }
1344 }
1345
1346 function conv_sort($arr,$order) {
1347
1348         if ((!(is_array($arr) && count($arr))))
1349                 return array();
1350
1351         $parents = array();
1352         $children = array();
1353         $newarr = array();
1354
1355         // This is a preparation for having two different items with the same uri in one thread
1356         // This will otherwise lead to an endless loop.
1357         foreach ($arr as $x)
1358                 if (!isset($newarr[$x['uri']]))
1359                         $newarr[$x['uri']] = $x;
1360
1361         $arr = $newarr;
1362
1363         foreach ($arr as $x)
1364                 if ($x['id'] == $x['parent'])
1365                                 $parents[] = $x;
1366
1367         if (stristr($order,'created'))
1368                 usort($parents,'sort_thr_created');
1369         elseif (stristr($order,'commented'))
1370                 usort($parents,'sort_thr_commented');
1371
1372         if (count($parents))
1373                 foreach ($parents as $i=>$_x)
1374                         $parents[$i]['children'] = get_item_children($arr, $_x);
1375
1376         /*foreach ($arr as $x) {
1377                 if ($x['id'] != $x['parent']) {
1378                         $p = find_thread_parent_index($parents,$x);
1379                         if ($p !== false)
1380                                 $parents[$p]['children'][] = $x;
1381                 }
1382         }*/
1383         if (count($parents)) {
1384                 foreach ($parents as $k => $v) {
1385                         if (count($parents[$k]['children'])) {
1386                                 $parents[$k]['children'] = sort_item_children($parents[$k]['children']);
1387                                 /*$y = $parents[$k]['children'];
1388                                 usort($y,'sort_thr_created_rev');
1389                                 $parents[$k]['children'] = $y;*/
1390                         }
1391                 }
1392         }
1393
1394         $ret = array();
1395         if (count($parents)) {
1396                 foreach ($parents as $x) {
1397                         $ret[] = $x;
1398                         if (count($x['children']))
1399                                 add_children_to_list($x['children'], $ret);
1400                                 /*foreach ($x['children'] as $y)
1401                                         $ret[] = $y;*/
1402                 }
1403         }
1404
1405         return $ret;
1406 }
1407
1408
1409 function sort_thr_created($a,$b) {
1410         return strcmp($b['created'],$a['created']);
1411 }
1412
1413 function sort_thr_created_rev($a,$b) {
1414         return strcmp($a['created'],$b['created']);
1415 }
1416
1417 function sort_thr_commented($a,$b) {
1418         return strcmp($b['commented'],$a['commented']);
1419 }
1420
1421 function find_thread_parent_index($arr,$x) {
1422         foreach ($arr as $k => $v) {
1423                 if ($v['id'] == $x['parent']) {
1424                         return $k;
1425                 }
1426         }
1427         return false;
1428 }
1429
1430 function render_location_dummy($item) {
1431         if ($item['location'] != "")
1432                 return $item['location'];
1433
1434         if ($item['coord'] != "")
1435                 return $item['coord'];
1436 }
1437
1438 function get_responses($conv_responses,$response_verbs,$ob,$item) {
1439         $ret = array();
1440         foreach ($response_verbs as $v) {
1441                 $ret[$v] = array();
1442                 $ret[$v]['count'] = ((x($conv_responses[$v],$item['uri'])) ? $conv_responses[$v][$item['uri']] : '');
1443                 $ret[$v]['list']  = ((x($conv_responses[$v],$item['uri'])) ? $conv_responses[$v][$item['uri'] . '-l'] : '');
1444                 $ret[$v]['self']  = ((x($conv_responses[$v],$item['uri'])) ? $conv_responses[$v][$item['uri'] . '-self'] : '0');
1445                 if (count($ret[$v]['list']) > MAX_LIKERS) {
1446                         $ret[$v]['list_part'] = array_slice($ret[$v]['list'], 0, MAX_LIKERS);
1447                         array_push($ret[$v]['list_part'], '<a href="#" data-toggle="modal" data-target="#' . $v . 'Modal-'
1448                                 . (($ob) ? $ob->get_id() : $item['id']) . '"><b>' . t('View all') . '</b></a>');
1449                 } else {
1450                         $ret[$v]['list_part'] = '';
1451                 }
1452                 $ret[$v]['button'] = get_response_button_text($v,$ret[$v]['count']);
1453                 $ret[$v]['title'] = $conv_responses[$v]['title'];
1454         }
1455
1456         $count = 0;
1457         foreach ($ret as $key) {
1458                 if ($key['count'] == true) {
1459                         $count++;
1460                 }
1461         }
1462         $ret['count'] = $count;
1463
1464         return $ret;
1465 }
1466
1467 function get_response_button_text($v,$count) {
1468         switch($v) {
1469                 case 'like':
1470                         return tt('Like','Likes',$count,'noun');
1471                         break;
1472                 case 'dislike':
1473                         return tt('Dislike','Dislikes',$count,'noun');
1474                         break;
1475                 case 'attendyes':
1476                         return tt('Attending','Attending',$count,'noun');
1477                         break;
1478                 case 'attendno':
1479                         return tt('Not Attending','Not Attending',$count,'noun');
1480                         break;
1481                 case 'attendmaybe':
1482                         return tt('Undecided','Undecided',$count,'noun');
1483                         break;
1484         }
1485 }