3 require_once("include/bbcode.php");
6 // Note: the code in 'item_extract_images' and 'item_redir_and_replace_images'
7 // is identical to the code in mod/message.php for 'item_extract_images' and
8 // 'item_redir_and_replace_images'
9 if(! function_exists('item_extract_images')) {
10 function item_extract_images($body) {
12 $saved_image = array();
17 $img_start = strpos($orig_body, '[img');
18 $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
19 $img_end = ($img_start !== false ? strpos(substr($orig_body, $img_start), '[/img]') : false);
20 while(($img_st_close !== false) && ($img_end !== false)) {
22 $img_st_close++; // make it point to AFTER the closing bracket
23 $img_end += $img_start;
25 if(! strcmp(substr($orig_body, $img_start + $img_st_close, 5), 'data:')) {
26 // This is an embedded image
28 $saved_image[$cnt] = substr($orig_body, $img_start + $img_st_close, $img_end - ($img_start + $img_st_close));
29 $new_body = $new_body . substr($orig_body, 0, $img_start) . '[!#saved_image' . $cnt . '#!]';
34 $new_body = $new_body . substr($orig_body, 0, $img_end + strlen('[/img]'));
36 $orig_body = substr($orig_body, $img_end + strlen('[/img]'));
38 if($orig_body === false) // in case the body ends on a closing image tag
41 $img_start = strpos($orig_body, '[img');
42 $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
43 $img_end = ($img_start !== false ? strpos(substr($orig_body, $img_start), '[/img]') : false);
46 $new_body = $new_body . $orig_body;
48 return array('body' => $new_body, 'images' => $saved_image);
51 if(! function_exists('item_redir_and_replace_images')) {
52 function item_redir_and_replace_images($body, $images, $cid) {
58 $pos = get_bb_tag_pos($origbody, 'url', 1);
59 while($pos !== false && $cnt < 1000) {
61 $search = '/\[url\=(.*?)\]\[!#saved_image([0-9]*)#!\]\[\/url\]' . '/is';
62 $replace = '[url=' . z_path() . '/redir/' . $cid
63 . '?f=1&url=' . '$1' . '][!#saved_image' . '$2' .'#!][/url]';
65 $newbody .= substr($origbody, 0, $pos['start']['open']);
66 $subject = substr($origbody, $pos['start']['open'], $pos['end']['close'] - $pos['start']['open']);
67 $origbody = substr($origbody, $pos['end']['close']);
68 if($origbody === false)
71 $subject = preg_replace($search, $replace, $subject);
75 $pos = get_bb_tag_pos($origbody, 'url', 1);
77 $newbody .= $origbody;
80 foreach($images as $image) {
81 // We're depending on the property of 'foreach' (specified on the PHP website) that
82 // it loops over the array starting from the first element and going sequentially
83 // to the last element
84 $newbody = str_replace('[!#saved_image' . $cnt . '#!]', '[img]' . $image . '[/img]', $newbody);
93 * Render actions localized
95 function localize_item(&$item){
97 $extracted = item_extract_images($item['body']);
98 if($extracted['images'])
99 $item['body'] = item_redir_and_replace_images($extracted['body'], $extracted['images'], $item['contact-id']);
101 $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
102 if (activity_match($item['verb'],ACTIVITY_LIKE) || activity_match($item['verb'],ACTIVITY_DISLIKE)){
104 $r = q("SELECT * from `item`,`contact` WHERE
105 `item`.`contact-id`=`contact`.`id` AND `item`.`uri`='%s';",
106 dbesc($item['parent-uri']));
107 if(count($r)==0) return;
110 $author = '[url=' . $item['author-link'] . ']' . $item['author-name'] . '[/url]';
111 $objauthor = '[url=' . $obj['author-link'] . ']' . $obj['author-name'] . '[/url]';
113 switch($obj['verb']){
115 switch ($obj['object-type']){
116 case ACTIVITY_OBJ_EVENT:
117 $post_type = t('event');
120 $post_type = t('status');
124 if($obj['resource-id']){
125 $post_type = t('photo');
126 $m=array(); preg_match("/\[url=([^]]*)\]/", $obj['body'], $m);
127 $rr['plink'] = $m[1];
129 $post_type = t('status');
133 $plink = '[url=' . $obj['plink'] . ']' . $post_type . '[/url]';
135 if(activity_match($item['verb'],ACTIVITY_LIKE)) {
136 $bodyverb = t('%1$s likes %2$s\'s %3$s');
138 elseif(activity_match($item['verb'],ACTIVITY_DISLIKE)) {
139 $bodyverb = t('%1$s doesn\'t like %2$s\'s %3$s');
141 $item['body'] = sprintf($bodyverb, $author, $objauthor, $plink);
144 if (activity_match($item['verb'],ACTIVITY_FRIEND)) {
146 if ($item['object-type']=="" || $item['object-type']!== ACTIVITY_OBJ_PERSON) return;
148 $Aname = $item['author-name'];
149 $Alink = $item['author-link'];
151 $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
153 $obj = parse_xml_string($xmlhead.$item['object']);
154 $links = parse_xml_string($xmlhead."<links>".unxmlify($obj->link)."</links>");
156 $Bname = $obj->title;
157 $Blink = ""; $Bphoto = "";
158 foreach ($links->link as $l){
159 $atts = $l->attributes();
160 switch($atts['rel']){
161 case "alternate": $Blink = $atts['href'];
162 case "photo": $Bphoto = $atts['href'];
167 $A = '[url=' . zrl($Alink) . ']' . $Aname . '[/url]';
168 $B = '[url=' . zrl($Blink) . ']' . $Bname . '[/url]';
169 if ($Bphoto!="") $Bphoto = '[url=' . zrl($Blink) . '][img]' . $Bphoto . '[/img][/url]';
171 $item['body'] = sprintf( t('%1$s is now friends with %2$s'), $A, $B)."\n\n\n".$Bphoto;
174 if (stristr($item['verb'],ACTIVITY_POKE)) {
175 $verb = urldecode(substr($item['verb'],strpos($item['verb'],'#')+1));
178 if ($item['object-type']=="" || $item['object-type']!== ACTIVITY_OBJ_PERSON) return;
180 $Aname = $item['author-name'];
181 $Alink = $item['author-link'];
183 $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
185 $obj = parse_xml_string($xmlhead.$item['object']);
186 $links = parse_xml_string($xmlhead."<links>".unxmlify($obj->link)."</links>");
188 $Bname = $obj->title;
189 $Blink = ""; $Bphoto = "";
190 foreach ($links->link as $l){
191 $atts = $l->attributes();
192 switch($atts['rel']){
193 case "alternate": $Blink = $atts['href'];
194 case "photo": $Bphoto = $atts['href'];
199 $A = '[url=' . zrl($Alink) . ']' . $Aname . '[/url]';
200 $B = '[url=' . zrl($Blink) . ']' . $Bname . '[/url]';
201 if ($Bphoto!="") $Bphoto = '[url=' . zrl($Blink) . '][img=80x80]' . $Bphoto . '[/img][/url]';
203 // we can't have a translation string with three positions but no distinguishable text
204 // So here is the translate string.
206 $txt = t('%1$s poked %2$s');
208 // now translate the verb
210 $txt = str_replace( t('poked'), t($verb), $txt);
212 // then do the sprintf on the translation string
214 $item['body'] = sprintf($txt, $A, $B). "\n\n\n" . $Bphoto;
217 if (stristr($item['verb'],ACTIVITY_MOOD)) {
218 $verb = urldecode(substr($item['verb'],strpos($item['verb'],'#')+1));
222 $Aname = $item['author-name'];
223 $Alink = $item['author-link'];
224 $A = '[url=' . zrl($Alink) . ']' . $Aname . '[/url]';
226 $txt = t('%1$s is currently %2$s');
228 $item['body'] = sprintf($txt, $A, t($verb));
231 if (activity_match($item['verb'],ACTIVITY_TAG)) {
232 $r = q("SELECT * from `item`,`contact` WHERE
233 `item`.`contact-id`=`contact`.`id` AND `item`.`uri`='%s';",
234 dbesc($item['parent-uri']));
235 if(count($r)==0) return;
238 $author = '[url=' . zrl($item['author-link']) . ']' . $item['author-name'] . '[/url]';
239 $objauthor = '[url=' . zrl($obj['author-link']) . ']' . $obj['author-name'] . '[/url]';
241 switch($obj['verb']){
243 switch ($obj['object-type']){
244 case ACTIVITY_OBJ_EVENT:
245 $post_type = t('event');
248 $post_type = t('status');
252 if($obj['resource-id']){
253 $post_type = t('photo');
254 $m=array(); preg_match("/\[url=([^]]*)\]/", $obj['body'], $m);
255 $rr['plink'] = $m[1];
257 $post_type = t('status');
260 $plink = '[url=' . $obj['plink'] . ']' . $post_type . '[/url]';
262 $parsedobj = parse_xml_string($xmlhead.$item['object']);
264 $tag = sprintf('#[url=%s]%s[/url]', $parsedobj->id, $parsedobj->content);
265 $item['body'] = sprintf( t('%1$s tagged %2$s\'s %3$s with %4$s'), $author, $objauthor, $plink, $tag );
268 if (activity_match($item['verb'],ACTIVITY_FAVORITE)){
270 if ($item['object-type']== "")
273 $Aname = $item['author-name'];
274 $Alink = $item['author-link'];
276 $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
278 $obj = parse_xml_string($xmlhead.$item['object']);
279 if(strlen($obj->id)) {
280 $r = q("select * from item where uri = '%s' and uid = %d limit 1",
284 if(count($r) && $r[0]['plink']) {
286 $Bname = $target['author-name'];
287 $Blink = $target['author-link'];
288 $A = '[url=' . zrl($Alink) . ']' . $Aname . '[/url]';
289 $B = '[url=' . zrl($Blink) . ']' . $Bname . '[/url]';
290 $P = '[url=' . $target['plink'] . ']' . t('post/item') . '[/url]';
291 $item['body'] = sprintf( t('%1$s marked %2$s\'s %3$s as favorite'), $A, $B, $P)."\n";
297 if(preg_match_all('/@\[url=(.*?)\]/is',$item['body'],$matches,PREG_SET_ORDER)) {
298 foreach($matches as $mtch) {
299 if(! strpos($mtch[1],'zrl='))
300 $item['body'] = str_replace($mtch[0],'@[url=' . zrl($mtch[1]). ']',$item['body']);
304 // add zrl's to public images
305 $photo_pattern = "/\[url=(.*?)\/photos\/(.*?)\/image\/(.*?)\]\[img(.*?)\]h(.*?)\[\/img\]\[\/url\]/is";
306 if(preg_match($photo_pattern,$item['body'])) {
307 $photo_replace = '[url=' . zrl('$1' . '/photos/' . '$2' . '/image/' . '$3' ,true) . '][img' . '$4' . ']h' . '$5' . '[/img][/url]';
308 $item['body'] = bb_tag_preg_replace($photo_pattern, $photo_replace, 'url', $item['body']);
311 // add sparkle links to appropriate permalinks
313 $x = stristr($item['plink'],'/display/');
316 $y = best_link_url($item,$sparkle,true);
317 if(strstr($y,'/redir/'))
318 $item['plink'] = $y . '?f=&url=' . $item['plink'];
326 * Count the total of comments on this item and its desendants
328 function count_descendants($item) {
329 $total = count($item['children']);
332 foreach($item['children'] as $child) {
333 if(! visible_activity($child))
335 $total += count_descendants($child);
342 function visible_activity($item) {
344 if(activity_match($child['verb'],ACTIVITY_LIKE) || activity_match($child['verb'],ACTIVITY_DISLIKE))
347 if(activity_match($item['verb'],ACTIVITY_FOLLOW) && $item['object-type'] === ACTIVITY_OBJ_NOTE && $item['uid'] != local_user())
355 * Recursively prepare a thread for HTML
358 function prepare_threads_body($a, $items, $cmnt_tpl, $page_writeable, $mode, $profile_owner, $alike, $dlike, $previewing, $thread_level=1) {
361 $wall_template = 'wall_thread.tpl';
362 // $wallwall_template = 'wallwall_thread.tpl';
364 $nb_items = count($items);
366 $total_children = $nb_items;
368 foreach($items as $item) {
369 if($item['network'] === NETWORK_MAIL && local_user() != $item['uid']) {
370 // Don't count it as a visible item
374 if(! visible_activity($item)) {
380 foreach($items as $item) {
381 // prevent private email reply to public conversation from leaking.
382 if($item['network'] === NETWORK_MAIL && local_user() != $item['uid']) {
386 if(! visible_activity($item)) {
393 $template = $wall_template;
396 $owner_url = $owner_photo = $owner_name = '';
400 $isstarred = "unstarred";
401 $photo = $item['photo'];
402 $thumb = $item['thumb'];
406 $lastcollapsed = false;
407 $firstcollapsed = false;
408 $total_children += count_descendants($item);
410 $toplevelpost = (($item['id'] == $item['parent']) ? true : false);
413 if($item['uid'] == local_user())
415 elseif(is_array($_SESSION['remote'])) {
416 foreach($_SESSION['remote'] as $visitor) {
417 if($visitor['cid'] == $item['contact-id']) {
425 $item_writeable = (($item['writable'] || $item['self']) ? true : false);
427 // This will allow us to comment on wall-to-wall items owned by our friends
428 // and community forums even if somebody else wrote the post.
430 if($visiting && $mode == 'profile')
431 $item_writeable = true;
433 $show_comment_box = ((($page_writeable) && ($item_writeable)) ? true : false);
434 $lock = ((($item['private'] == 1) || (($item['uid'] == local_user()) && (strlen($item['allow_cid']) || strlen($item['allow_gid'])
435 || strlen($item['deny_cid']) || strlen($item['deny_gid']))))
436 ? t('Private Message')
438 $redirect_url = $a->get_baseurl($ssl_state) . '/redir/' . $item['cid'] ;
439 $shareable = ((($profile_owner == local_user()) && ($item['private'] != 1)) ? true : false);
440 if(local_user() && link_compare($a->contact['url'],$item['author-link']))
441 $edpost = array($a->get_baseurl($ssl_state)."/editpost/".$item['id'], t("Edit"));
446 'dropping' => $dropping,
447 'select' => t('Select'),
448 'delete' => t('Delete'),
451 $filer = (($profile_owner == local_user()) ? t("save to folder") : false);
453 $diff_author = ((link_compare($item['url'],$item['author-link'])) ? false : true);
454 $profile_name = (((strlen($item['author-name'])) && $diff_author) ? $item['author-name'] : $item['name']);
455 if($item['author-link'] && (! $item['author-name']))
456 $profile_name = $item['author-link'];
459 $profile_link = best_link_url($item,$sp);
460 if($profile_link === 'mailbox')
463 $sparkle = ' sparkle';
465 $profile_link = zrl($profile_link);
467 $normalised = normalise_link((strlen($item['author-link'])) ? $item['author-link'] : $item['url']);
468 if(($normalised != 'mailbox') && (x($a->contacts,$normalised)))
469 $profile_avatar = $a->contacts[$normalised]['thumb'];
471 $profile_avatar = (((strlen($item['author-avatar'])) && $diff_author) ? $item['author-avatar'] : $a->get_cached_avatar_image($thumb));
473 $locate = array('location' => $item['location'], 'coord' => $item['coord'], 'html' => '');
474 call_hooks('render_location',$locate);
475 $location = ((strlen($locate['html'])) ? $locate['html'] : render_location_google($locate));
480 foreach(explode(',',$item['tag']) as $tag){
493 $like = ((x($alike,$item['uri'])) ? format_like($alike[$item['uri']],$alike[$item['uri'] . '-l'],'like',$item['uri']) : '');
494 $dislike = ((x($dlike,$item['uri'])) ? format_like($dlike[$item['uri']],$dlike[$item['uri'] . '-l'],'dislike',$item['uri']) : '');
497 if((! $item['self']) && ($mode !== 'profile')) {
500 // On the network page, I am the owner. On the display page it will be the profile owner.
501 // This will have been stored in $a->page_contact by our calling page.
502 // Put this person as the wall owner of the wall-to-wall notice.
504 $owner_url = zrl($a->page_contact['url']);
505 $owner_photo = $a->page_contact['thumb'];
506 $owner_name = $a->page_contact['name'];
509 else if($item['owner-link']) {
511 $owner_linkmatch = (($item['owner-link']) && link_compare($item['owner-link'],$item['author-link']));
512 $alias_linkmatch = (($item['alias']) && link_compare($item['alias'],$item['author-link']));
513 $owner_namematch = (($item['owner-name']) && $item['owner-name'] == $item['author-name']);
514 if((! $owner_linkmatch) && (! $alias_linkmatch) && (! $owner_namematch)) {
516 // The author url doesn't match the owner (typically the contact)
517 // and also doesn't match the contact alias.
518 // The name match is a hack to catch several weird cases where URLs are
519 // all over the park. It can be tricked, but this prevents you from
520 // seeing "Bob Smith to Bob Smith via Wall-to-wall" and you know darn
521 // well that it's the same Bob Smith.
523 // But it could be somebody else with the same name. It just isn't highly likely.
526 $owner_url = $item['owner-link'];
527 $owner_photo = $item['owner-avatar'];
528 $owner_name = $item['owner-name'];
530 // If it is our contact, use a friendly redirect link
531 if((link_compare($item['owner-link'],$item['url']))
532 && ($item['network'] === NETWORK_DFRN)) {
533 $owner_url = $redirect_url;
534 $osparkle = ' sparkle';
537 $owner_url = zrl($owner_url);
541 if($profile_owner == local_user()) {
542 $isstarred = (($item['starred']) ? "starred" : "unstarred");
545 'do' => t("add star"),
546 'undo' => t("remove star"),
547 'toggle' => t("toggle star status"),
548 'classdo' => (($item['starred']) ? "hidden" : ""),
549 'classundo' => (($item['starred']) ? "" : "hidden"),
550 'starred' => t('starred'),
551 'tagger' => t("add tag"),
558 if(($nb_items > 2) || ($thread_level > 2)) {
559 if($items_seen == 1) {
560 $firstcollapsed = true;
562 if($thread_level > 2) {
563 if($items_seen == $nb_items)
564 $lastcollapsed = true;
566 else if($items_seen == ($nb_items - 2)) {
567 $lastcollapsed = true;
572 if(intval(get_config('system','thread_allow')) && $a->theme_thread_allow) {
573 $comments_threaded = true;
576 $comments_threaded = false;
579 if($page_writeable) {
581 'like' => array( t("I like this \x28toggle\x29"), t("like")),
582 'dislike' => array( t("I don't like this \x28toggle\x29"), t("dislike")),
584 if ($shareable) $buttons['share'] = array( t('Share this'), t('share'));
587 if($show_comment_box) {
588 $qc = $qcomment = null;
590 if(in_array('qcomment',$a->plugins)) {
591 $qc = ((local_user()) ? get_pconfig(local_user(),'qcomment','words') : null);
592 $qcomment = (($qc) ? explode("\n",$qc) : null);
594 $comment = replace_macros($cmnt_tpl,array(
595 '$return_path' => '',
596 '$threaded' => $comments_threaded,
597 '$jsreload' => (($mode === 'display') ? $_SESSION['return_url'] : ''),
598 '$type' => (($mode === 'profile') ? 'wall-comment' : 'net-comment'),
599 '$id' => $item['item_id'],
600 '$parent' => $item['item_id'],
601 '$qcomment' => $qcomment,
602 '$profile_uid' => $profile_owner,
603 '$mylink' => $a->contact['url'],
604 '$mytitle' => t('This is you'),
605 '$myphoto' => $a->contact['thumb'],
606 '$comment' => t('Comment'),
607 '$submit' => t('Submit'),
608 '$edbold' => t('Bold'),
609 '$editalic' => t('Italic'),
610 '$eduline' => t('Underline'),
611 '$edquote' => t('Quote'),
612 '$edcode' => t('Code'),
613 '$edimg' => t('Image'),
614 '$edurl' => t('Link'),
615 '$edvideo' => t('Video'),
616 '$preview' => t('Preview'),
617 '$indent' => $indent,
618 '$sourceapp' => t($a->sourcename),
619 '$ww' => (($mode === 'network') ? $commentww : '')
624 if(strcmp(datetime_convert('UTC','UTC',$item['created']),datetime_convert('UTC','UTC','now - 12 hours')) > 0)
628 localize_item($item);
630 $body = prepare_body($item,true);
632 list($categories,$folders) = get_cats_and_terms($item);
635 // collapse comments in template. I don't like this much...
636 'comment_firstcollapsed' => $firstcollapsed,
637 'comment_lastcollapsed' => $lastcollapsed,
638 // template to use to render item (wall, walltowall, search)
639 'template' => $template,
641 'type' => implode("",array_slice(explode("/",$item['verb']),-1)),
642 'tags' => template_escape($tags),
643 'hashtags' => template_escape($hashtags),
644 'mentions' => template_escape($mentions),
645 'txt_cats' => t('Categories:'),
646 'txt_folders' => t('Filed under:'),
647 'has_cats' => ((count($categories)) ? 'true' : ''),
648 'has_folders' => ((count($folders)) ? 'true' : ''),
649 'categories' => $categories,
650 'folders' => $folders,
651 'body' => template_escape($body),
652 'text' => strip_tags(template_escape($body)),
653 'id' => $item['item_id'],
654 'linktitle' => sprintf( t('View %s\'s profile @ %s'), $profile_name, ((strlen($item['author-link'])) ? $item['author-link'] : $item['url'])),
655 'olinktitle' => sprintf( t('View %s\'s profile @ %s'), $owner_name, ((strlen($item['owner-link'])) ? $item['owner-link'] : $item['url'])),
657 'wall' => t('Wall-to-Wall'),
658 'vwall' => t('via Wall-To-Wall:'),
659 'profile_url' => $profile_link,
660 'item_photo_menu' => item_photo_menu($item),
661 'name' => template_escape($profile_name),
662 'thumb' => $profile_avatar,
663 'osparkle' => $osparkle,
664 'sparkle' => $sparkle,
665 'title' => template_escape($item['title']),
666 'localtime' => datetime_convert('UTC', date_default_timezone_get(), $item['created'], 'r'),
668 'ago' => (($item['app']) ? sprintf( t('%s from %s'),relative_date($item['created']),$item['app']) : relative_date($item['created'])),
670 'location' => template_escape($location),
672 'owner_url' => $owner_url,
673 'owner_photo' => $owner_photo,
674 'owner_name' => template_escape($owner_name),
675 'plink' => get_plink($item),
677 'isstarred' => $isstarred,
683 'dislike' => $dislike,
684 'comment' => $comment,
685 'previewing' => $previewing,
686 'wait' => t('Please wait'),
687 'thread_level' => $thread_level,
690 $arr = array('item' => $item, 'output' => $tmp_item);
691 call_hooks('display_item', $arr);
693 $item_result = $arr['output'];
694 if($firstcollapsed) {
695 $item_result['num_comments'] = sprintf( tt('%d comment','%d comments',$total_children),$total_children );
696 $item_result['hidden_comments_num'] = $total_children;
697 $item_result['hidden_comments_text'] = tt('comment', 'comments', $total_children);
698 $item_result['hide_text'] = t('show more');
701 $item_result['children'] = array();
702 if(count($item['children'])) {
703 $item_result['children'] = prepare_threads_body($a, $item['children'], $cmnt_tpl, $page_writeable, $mode, $profile_owner, $alike, $dlike, $previewing, ($thread_level + 1));
705 $item_result['private'] = $item['private'];
706 $item_result['toplevel'] = ($toplevelpost ? 'toplevel_item' : '');
709 * I don't like this very much...
711 if(get_config('system','thread_allow') && $a->theme_thread_allow) {
712 $item_result['flatten'] = false;
713 $item_result['threaded'] = true;
716 $item_result['flatten'] = true;
717 $item_result['threaded'] = false;
719 $item_result['comment'] = false;
723 $result[] = $item_result;
730 * "Render" a conversation or list of items for HTML display.
731 * There are two major forms of display:
732 * - Sequential or unthreaded ("New Item View" or search results)
733 * - conversation view
734 * The $mode parameter decides between the various renderings and also
735 * figures out how to determine page owner and other contextual items
736 * that are based on unique features of the calling module.
740 if(!function_exists('conversation')) {
741 function conversation(&$a, $items, $mode, $update, $preview = false) {
744 require_once('bbcode.php');
746 $ssl_state = ((local_user()) ? true : false);
749 $page_writeable = false;
751 $previewing = (($preview) ? ' preview ' : '');
753 if($mode === 'network') {
754 $profile_owner = local_user();
755 $page_writeable = true;
758 if($mode === 'profile') {
759 $profile_owner = $a->profile['profile_uid'];
760 $page_writeable = can_write_wall($a,$profile_owner);
763 if($mode === 'notes') {
764 $profile_owner = local_user();
765 $page_writeable = true;
768 if($mode === 'display') {
769 $profile_owner = $a->profile['uid'];
770 $page_writeable = can_write_wall($a,$profile_owner);
773 if($mode === 'community') {
775 $page_writeable = false;
778 $page_dropping = ((local_user() && local_user() == $profile_owner) ? true : false);
782 $return_url = $_SESSION['return_url'];
784 $return_url = $_SESSION['return_url'] = $a->query_string;
786 load_contact_links(local_user());
788 $cb = array('items' => $items, 'mode' => $mode, 'update' => $update, 'preview' => $preview);
789 call_hooks('conversation_start',$cb);
791 $items = $cb['items'];
793 $cmnt_tpl = get_markup_template('comment_item.tpl');
794 $hide_comments_tpl = get_markup_template('hide_comments.tpl');
800 // array with html for each thread (parent+comments)
804 $page_template = get_markup_template("conversation.tpl");
806 if($items && count($items)) {
808 if($mode === 'network-new' || $mode === 'search' || $mode === 'community') {
810 // "New Item View" on network page or search page results
811 // - just loop through the items and format them minimally for display
813 // $tpl = get_markup_template('search_item.tpl');
814 $tpl = 'search_item.tpl';
816 foreach($items as $item) {
825 if($mode === 'search' || $mode === 'community') {
826 if(((activity_match($item['verb'],ACTIVITY_LIKE)) || (activity_match($item['verb'],ACTIVITY_DISLIKE)))
827 && ($item['id'] != $item['parent']))
829 $nickname = $item['nickname'];
832 $nickname = $a->user['nickname'];
834 // prevent private email from leaking.
835 if($item['network'] === NETWORK_MAIL && local_user() != $item['uid'])
838 $profile_name = ((strlen($item['author-name'])) ? $item['author-name'] : $item['name']);
839 if($item['author-link'] && (! $item['author-name']))
840 $profile_name = $item['author-link'];
847 foreach(explode(',',$item['tag']) as $tag){
860 $profile_link = best_link_url($item,$sp);
861 if($profile_link === 'mailbox')
864 $sparkle = ' sparkle';
866 $profile_link = zrl($profile_link);
868 $normalised = normalise_link((strlen($item['author-link'])) ? $item['author-link'] : $item['url']);
869 if(($normalised != 'mailbox') && (x($a->contacts[$normalised])))
870 $profile_avatar = $a->contacts[$normalised]['thumb'];
872 $profile_avatar = ((strlen($item['author-avatar'])) ? $a->get_cached_avatar_image($item['author-avatar']) : $item['thumb']);
874 $locate = array('location' => $item['location'], 'coord' => $item['coord'], 'html' => '');
875 call_hooks('render_location',$locate);
877 $location = ((strlen($locate['html'])) ? $locate['html'] : render_location_google($locate));
879 localize_item($item);
880 if($mode === 'network-new')
887 'dropping' => $dropping,
888 'select' => t('Select'),
889 'delete' => t('Delete'),
893 $isstarred = "unstarred";
896 $likebuttons = false;
899 $body = prepare_body($item,true);
902 list($categories, $folders) = get_cats_and_terms($item);
903 //$tmp_item = replace_macros($tpl,array(
906 'id' => (($preview) ? 'P0' : $item['item_id']),
907 'linktitle' => sprintf( t('View %s\'s profile @ %s'), $profile_name, ((strlen($item['author-link'])) ? $item['author-link'] : $item['url'])),
908 'profile_url' => $profile_link,
909 'item_photo_menu' => item_photo_menu($item),
910 'name' => template_escape($profile_name),
911 'sparkle' => $sparkle,
913 'thumb' => $profile_avatar,
914 'title' => template_escape($item['title']),
915 'body' => template_escape($body),
916 'tags' => template_escape($tags),
917 'hashtags' => template_escape($hashtags),
918 'mentions' => template_escape($mentions),
919 'txt_cats' => t('Categories:'),
920 'txt_folders' => t('Filed under:'),
921 'has_cats' => ((count($categories)) ? 'true' : ''),
922 'has_folders' => ((count($folders)) ? 'true' : ''),
923 'categories' => $categories,
924 'folders' => $folders,
925 'text' => strip_tags(template_escape($body)),
926 'localtime' => datetime_convert('UTC', date_default_timezone_get(), $item['created'], 'r'),
927 'ago' => (($item['app']) ? sprintf( t('%s from %s'),relative_date($item['created']),$item['app']) : relative_date($item['created'])),
928 'location' => template_escape($location),
930 'owner_name' => template_escape($owner_name),
931 'owner_url' => $owner_url,
932 'owner_photo' => $owner_photo,
933 'plink' => get_plink($item),
935 'isstarred' => $isstarred,
938 'vote' => $likebuttons,
942 'conv' => (($preview) ? '' : array('href'=> $a->get_baseurl($ssl_state) . '/display/' . $nickname . '/' . $item['id'], 'title'=> t('View in context'))),
943 'previewing' => $previewing,
944 'wait' => t('Please wait'),
948 $arr = array('item' => $item, 'output' => $tmp_item);
949 call_hooks('display_item', $arr);
951 $threads[$threadsid]['id'] = $item['item_id'];
952 $threads[$threadsid]['items'] = array($arr['output']);
960 $page_template = get_markup_template("threaded_conversation.tpl");
962 require_once('object/Conversation.php');
963 require_once('object/Item.php');
965 $conv = new Conversation($mode, $preview);
967 // get all the topmost parents
968 // this shouldn't be needed, as we should have only them in our array
969 // But for now, this array respects the old style, just in case
972 foreach($items as $item) {
974 // Can we put this after the visibility check?
975 like_puller($a,$item,$alike,'like');
976 like_puller($a,$item,$dlike,'dislike');
978 // Only add what is visible
979 if($item['network'] === NETWORK_MAIL && local_user() != $item['uid']) {
982 if(! visible_activity($item)) {
986 if($item['id'] == $item['parent']) {
987 $item_object = new Item($item);
988 $conv->add_thread($item_object);
992 $threads = $conv->get_template_data($alike, $dlike);
994 logger('[ERROR] conversation : Failed to get template data.', LOGGER_DEBUG);
1000 $o = replace_macros($page_template, array(
1001 '$baseurl' => $a->get_baseurl($ssl_state),
1002 '$remove' => t('remove'),
1004 '$user' => $a->user,
1005 '$threads' => $threads,
1006 '$dropping' => ($page_dropping?t('Delete Selected Items'):False),
1012 function best_link_url($item,&$sparkle,$ssl_state = false) {
1019 $clean_url = normalise_link($item['author-link']);
1021 if((local_user()) && (local_user() == $item['uid'])) {
1022 if(isset($a->contacts) && x($a->contacts,$clean_url)) {
1023 if($a->contacts[$clean_url]['network'] === NETWORK_DFRN) {
1024 $best_url = $a->get_baseurl($ssl_state) . '/redir/' . $a->contacts[$clean_url]['id'];
1028 $best_url = $a->contacts[$clean_url]['url'];
1032 if(strlen($item['author-link']))
1033 $best_url = $item['author-link'];
1035 $best_url = $item['url'];
1042 if(! function_exists('item_photo_menu')){
1043 function item_photo_menu($item){
1050 if(! count($a->contacts))
1051 load_contact_links(local_user());
1061 $profile_link = best_link_url($item,$sparkle,$ssl_state);
1062 if($profile_link === 'mailbox')
1066 $cid = intval(basename($profile_link));
1067 $status_link = $profile_link . "?url=status";
1068 $photos_link = $profile_link . "?url=photos";
1069 $profile_link = $profile_link . "?url=profile";
1070 $pm_url = $a->get_baseurl($ssl_state) . '/message/new/' . $cid;
1074 $profile_link = zrl($profile_link);
1075 if(local_user() && local_user() == $item['uid'] && link_compare($item['url'],$item['author-link'])) {
1076 $cid = $item['contact-id'];
1082 if(($cid) && (! $item['self'])) {
1083 $poke_link = $a->get_baseurl($ssl_state) . '/poke/?f=&c=' . $cid;
1084 $contact_url = $a->get_baseurl($ssl_state) . '/contacts/' . $cid;
1085 $posts_link = $a->get_baseurl($ssl_state) . '/network/?cid=' . $cid;
1087 $clean_url = normalise_link($item['author-link']);
1089 if((local_user()) && (local_user() == $item['uid'])) {
1090 if(isset($a->contacts) && x($a->contacts,$clean_url)) {
1091 if($a->contacts[$clean_url]['network'] === NETWORK_DIASPORA) {
1092 $pm_url = $a->get_baseurl($ssl_state) . '/message/new/' . $cid;
1100 t("View Status") => $status_link,
1101 t("View Profile") => $profile_link,
1102 t("View Photos") => $photos_link,
1103 t("Network Posts") => $posts_link,
1104 t("Edit Contact") => $contact_url,
1105 t("Send PM") => $pm_url,
1106 t("Poke") => $poke_link
1110 $args = array('item' => $item, 'menu' => $menu);
1112 call_hooks('item_photo_menu', $args);
1114 $menu = $args['menu'];
1117 foreach($menu as $k=>$v){
1118 if ($v!="") $o .= "<li><a href=\"$v\">$k</a></li>\n";
1123 if(! function_exists('like_puller')) {
1124 function like_puller($a,$item,&$arr,$mode) {
1128 $verb = (($mode === 'like') ? ACTIVITY_LIKE : ACTIVITY_DISLIKE);
1130 if((activity_match($item['verb'],$verb)) && ($item['id'] != $item['parent'])) {
1131 $url = $item['author-link'];
1132 if((local_user()) && (local_user() == $item['uid']) && ($item['network'] === 'dfrn') && (! $item['self']) && (link_compare($item['author-link'],$item['url']))) {
1133 $url = $a->get_baseurl(true) . '/redir/' . $item['contact-id'];
1134 $sparkle = ' class="sparkle" ';
1139 if(! $item['thr-parent'])
1140 $item['thr-parent'] = $item['parent-uri'];
1142 if(! ((isset($arr[$item['thr-parent'] . '-l'])) && (is_array($arr[$item['thr-parent'] . '-l']))))
1143 $arr[$item['thr-parent'] . '-l'] = array();
1144 if(! isset($arr[$item['thr-parent']]))
1145 $arr[$item['thr-parent']] = 1;
1147 $arr[$item['thr-parent']] ++;
1148 $arr[$item['thr-parent'] . '-l'][] = '<a href="'. $url . '"'. $sparkle .'>' . $item['author-name'] . '</a>';
1153 // Format the like/dislike text for a profile item
1154 // $cnt = number of people who like/dislike the item
1155 // $arr = array of pre-linked names of likers/dislikers
1156 // $type = one of 'like, 'dislike'
1158 // returns formatted text
1160 if(! function_exists('format_like')) {
1161 function format_like($cnt,$arr,$type,$id) {
1164 $o .= (($type === 'like') ? sprintf( t('%s likes this.'), $arr[0]) : sprintf( t('%s doesn\'t like this.'), $arr[0])) . EOL ;
1166 $spanatts = 'class="fakelink" onclick="openClose(\'' . $type . 'list-' . $id . '\');"';
1167 $o .= (($type === 'like') ?
1168 sprintf( t('<span %1$s>%2$d people</span> like this.'), $spanatts, $cnt)
1170 sprintf( t('<span %1$s>%2$d people</span> don\'t like this.'), $spanatts, $cnt) );
1172 $total = count($arr);
1173 if($total >= MAX_LIKERS)
1174 $arr = array_slice($arr, 0, MAX_LIKERS - 1);
1175 if($total < MAX_LIKERS)
1176 $arr[count($arr)-1] = t('and') . ' ' . $arr[count($arr)-1];
1177 $str = implode(', ', $arr);
1178 if($total >= MAX_LIKERS)
1179 $str .= sprintf( t(', and %d other people'), $total - MAX_LIKERS );
1180 $str = (($type === 'like') ? sprintf( t('%s like this.'), $str) : sprintf( t('%s don\'t like this.'), $str));
1181 $o .= "\t" . '<div id="' . $type . 'list-' . $id . '" style="display: none;" >' . $str . '</div>';
1187 function status_editor($a,$x, $notes_cid = 0, $popup=false) {
1191 $geotag = (($x['allow_location']) ? get_markup_template('jot_geotag.tpl') : '');
1194 if(local_user() && intval(get_pconfig(local_user(),'system','plaintext')))
1197 $tpl = get_markup_template('jot-header.tpl');
1198 $a->page['htmlhead'] .= replace_macros($tpl, array(
1199 '$newpost' => 'true',
1200 '$baseurl' => $a->get_baseurl(true),
1201 '$editselect' => (($plaintext) ? 'none' : '/(profile-jot-text|prvmail-text)/'),
1202 '$geotag' => $geotag,
1203 '$nickname' => $x['nickname'],
1204 '$ispublic' => t('Visible to <strong>everybody</strong>'),
1205 '$linkurl' => t('Please enter a link URL:'),
1206 '$vidurl' => t("Please enter a video link/URL:"),
1207 '$audurl' => t("Please enter an audio link/URL:"),
1208 '$term' => t('Tag term:'),
1209 '$fileas' => t('Save to Folder:'),
1210 '$whereareu' => t('Where are you right now?')
1214 $tpl = get_markup_template('jot-end.tpl');
1215 $a->page['end'] .= replace_macros($tpl, array(
1216 '$newpost' => 'true',
1217 '$baseurl' => $a->get_baseurl(true),
1218 '$editselect' => (($plaintext) ? 'none' : '/(profile-jot-text|prvmail-text)/'),
1219 '$geotag' => $geotag,
1220 '$nickname' => $x['nickname'],
1221 '$ispublic' => t('Visible to <strong>everybody</strong>'),
1222 '$linkurl' => t('Please enter a link URL:'),
1223 '$vidurl' => t("Please enter a video link/URL:"),
1224 '$audurl' => t("Please enter an audio link/URL:"),
1225 '$term' => t('Tag term:'),
1226 '$fileas' => t('Save to Folder:'),
1227 '$whereareu' => t('Where are you right now?')
1231 $tpl = get_markup_template("jot.tpl");
1236 $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
1238 $mail_enabled = false;
1239 $pubmail_enabled = false;
1241 if(($x['is_owner']) && (! $mail_disabled)) {
1242 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d AND `server` != '' LIMIT 1",
1243 intval(local_user())
1246 $mail_enabled = true;
1247 if(intval($r[0]['pubmail']))
1248 $pubmail_enabled = true;
1253 $selected = (($pubmail_enabled) ? ' checked="checked" ' : '');
1254 $jotnets .= '<div class="profile-jot-net"><input type="checkbox" name="pubmail_enable"' . $selected . ' value="1" /> ' . t("Post to Email") . '</div>';
1257 call_hooks('jot_tool', $jotplugins);
1258 call_hooks('jot_networks', $jotnets);
1261 $jotnets .= '<input type="hidden" name="contact_allow[]" value="' . $notes_cid .'" />';
1263 $tpl = replace_macros($tpl,array('$jotplugins' => $jotplugins));
1265 $o .= replace_macros($tpl,array(
1266 '$return_path' => $a->query_string,
1267 '$action' => $a->get_baseurl(true) . '/item',
1268 '$share' => (x($x,'button') ? $x['button'] : t('Share')),
1269 '$upload' => t('Upload photo'),
1270 '$shortupload' => t('upload photo'),
1271 '$attach' => t('Attach file'),
1272 '$shortattach' => t('attach file'),
1273 '$weblink' => t('Insert web link'),
1274 '$shortweblink' => t('web link'),
1275 '$video' => t('Insert video link'),
1276 '$shortvideo' => t('video link'),
1277 '$audio' => t('Insert audio link'),
1278 '$shortaudio' => t('audio link'),
1279 '$setloc' => t('Set your location'),
1280 '$shortsetloc' => t('set location'),
1281 '$noloc' => t('Clear browser location'),
1282 '$shortnoloc' => t('clear location'),
1284 '$placeholdertitle' => t('Set title'),
1286 '$placeholdercategory' => t('Categories (comma-separated list)'),
1287 '$wait' => t('Please wait'),
1288 '$permset' => t('Permission settings'),
1289 '$shortpermset' => t('permissions'),
1290 '$ptyp' => (($notes_cid) ? 'note' : 'wall'),
1293 '$baseurl' => $a->get_baseurl(true),
1294 '$defloc' => $x['default_location'],
1295 '$visitor' => $x['visitor'],
1296 '$pvisit' => (($notes_cid) ? 'none' : $x['visitor']),
1297 '$emailcc' => t('CC: email addresses'),
1298 '$public' => t('Public post'),
1299 '$jotnets' => $jotnets,
1300 '$emtitle' => t('Example: bob@example.com, mary@example.com'),
1301 '$lockstate' => $x['lockstate'],
1302 '$acl' => $x['acl'],
1303 '$bang' => $x['bang'],
1304 '$profile_uid' => $x['profile_uid'],
1305 '$preview' => t('Preview'),
1306 '$sourceapp' => t($a->sourcename),
1307 '$cancel' => t('Cancel')
1312 $o = '<div id="jot-popup" style="display: none;">'.$o.'</div>';
1320 function get_item_children($arr, $parent) {
1321 $children = array();
1322 foreach($arr as $item) {
1323 if($item['id'] != $item['parent']) {
1324 if(get_config('system','thread_allow')) {
1325 // Fallback to parent-uri if thr-parent is not set
1326 $thr_parent = $item['thr-parent'];
1327 if($thr_parent == '')
1328 $thr_parent = $item['parent-uri'];
1330 if($thr_parent == $parent['uri']) {
1331 $item['children'] = get_item_children($arr, $item);
1332 $children[] = $item;
1335 else if($item['parent'] == $parent['id']) {
1336 $children[] = $item;
1343 function sort_item_children($items) {
1345 usort($result,'sort_thr_created_rev');
1346 foreach($result as $k => $i) {
1347 if(count($result[$k]['children'])) {
1348 $result[$k]['children'] = sort_item_children($result[$k]['children']);
1354 function add_children_to_list($children, &$arr) {
1355 foreach($children as $y) {
1357 if(count($y['children']))
1358 add_children_to_list($y['children'], $arr);
1362 function conv_sort($arr,$order) {
1364 if((!(is_array($arr) && count($arr))))
1368 $children = array();
1371 if($x['id'] == $x['parent'])
1374 if(stristr($order,'created'))
1375 usort($parents,'sort_thr_created');
1376 elseif(stristr($order,'commented'))
1377 usort($parents,'sort_thr_commented');
1380 foreach($parents as $i=>$_x)
1381 $parents[$i]['children'] = get_item_children($arr, $_x);
1383 /*foreach($arr as $x) {
1384 if($x['id'] != $x['parent']) {
1385 $p = find_thread_parent_index($parents,$x);
1387 $parents[$p]['children'][] = $x;
1390 if(count($parents)) {
1391 foreach($parents as $k => $v) {
1392 if(count($parents[$k]['children'])) {
1393 $parents[$k]['children'] = sort_item_children($parents[$k]['children']);
1394 /*$y = $parents[$k]['children'];
1395 usort($y,'sort_thr_created_rev');
1396 $parents[$k]['children'] = $y;*/
1402 if(count($parents)) {
1403 foreach($parents as $x) {
1405 if(count($x['children']))
1406 add_children_to_list($x['children'], $ret);
1407 /*foreach($x['children'] as $y)
1416 function sort_thr_created($a,$b) {
1417 return strcmp($b['created'],$a['created']);
1420 function sort_thr_created_rev($a,$b) {
1421 return strcmp($a['created'],$b['created']);
1424 function sort_thr_commented($a,$b) {
1425 return strcmp($b['commented'],$a['commented']);
1428 function find_thread_parent_index($arr,$x) {
1429 foreach($arr as $k => $v)
1430 if($v['id'] == $x['parent'])
1435 function render_location_google($item) {
1436 $location = (($item['location']) ? '<a target="map" title="' . $item['location'] . '" href="http://maps.google.com/?q=' . urlencode($item['location']) . '">' . $item['location'] . '</a>' : '');
1437 $coord = (($item['coord']) ? '<a target="map" title="' . $item['coord'] . '" href="http://maps.google.com/?q=' . urlencode($item['coord']) . '">' . $item['coord'] . '</a>' : '');
1440 $location .= '<br /><span class="smalltext">(' . $coord . ')</span>';
1442 $location = '<span class="smalltext">' . $coord . '</span>';