2010-07-17 02:16:50 +02:00
< ? php
function network_init ( & $a ) {
2011-01-20 23:25:44 +01:00
if ( ! local_user ()) {
2011-01-21 00:30:45 +01:00
notice ( t ( 'Permission denied.' ) . EOL );
2011-01-20 23:25:44 +01:00
return ;
}
2011-01-20 20:19:20 +01:00
2010-07-26 01:27:22 +02:00
require_once ( 'include/group.php' );
2010-11-01 00:38:22 +01:00
if ( ! x ( $a -> page , 'aside' ))
$a -> page [ 'aside' ] = '' ;
2011-01-20 02:56:36 +01:00
$a -> page [ 'aside' ] .= '<div id="network-new-link">' ;
if (( $a -> argc > 1 && $a -> argv [ 1 ] === 'new' ) || ( $a -> argc > 2 && $a -> argv [ 2 ] === 'new' ))
$a -> page [ 'aside' ] .= '<a href="' . $a -> get_baseurl () . '/' . str_replace ( '/new' , '' , $a -> cmd ) . '">' . t ( 'Normal View' ) . '</a>' ;
else
$a -> page [ 'aside' ] .= '<a href="' . $a -> get_baseurl () . '/' . $a -> cmd . '/new' . '">' . t ( 'New Item View' ) . '</a>' ;
$a -> page [ 'aside' ] .= '</div>' ;
2010-07-26 01:27:22 +02:00
$a -> page [ 'aside' ] .= group_side ( 'network' , 'network' );
2010-07-17 02:16:50 +02:00
}
2010-09-21 04:34:44 +02:00
function network_content ( & $a , $update = 0 ) {
2010-07-17 02:16:50 +02:00
if ( ! local_user ())
2011-01-20 23:25:44 +01:00
return login ( false );
2010-11-01 00:38:22 +01:00
$o = '' ;
2010-07-17 02:16:50 +02:00
require_once ( " include/bbcode.php " );
$contact_id = $a -> cid ;
2010-07-26 01:27:22 +02:00
$group = 0 ;
2010-07-20 14:21:19 +02:00
2011-02-02 05:23:58 +01:00
$nouveau = false ;
2011-02-17 09:52:26 +01:00
require_once ( 'include/acl_selectors.php' );
2011-02-02 05:23:58 +01:00
2011-02-17 09:40:35 +01:00
if (( $a -> argc > 2 ) && $a -> argv [ 2 ] === 'new' )
$nouveau = true ;
if ( $a -> argc > 1 ) {
if ( $a -> argv [ 1 ] === 'new' )
$nouveau = true ;
else {
$group = intval ( $a -> argv [ 1 ]);
2011-02-17 08:10:18 +01:00
$group_acl = array ( 'allow_gid' => '<' . $group . '>' );
2011-02-17 09:40:35 +01:00
}
2011-02-17 08:05:48 +01:00
}
2010-07-25 00:21:33 +02:00
if ( ! $update ) {
2010-09-19 06:11:18 +02:00
$o .= '<script> $(document).ready(function() { $(\'#nav-network-link\').addClass(\'nav-selected\'); });</script>' ;
2010-07-26 13:22:19 +02:00
$_SESSION [ 'return_url' ] = $a -> cmd ;
2010-10-20 05:52:05 +02:00
$geotag = (( $a -> user [ 'allow_location' ]) ? load_view_file ( 'view/jot_geotag.tpl' ) : '' );
2010-09-23 03:00:19 +02:00
$tpl = load_view_file ( 'view/jot-header.tpl' );
2010-07-17 02:16:50 +02:00
2010-10-20 05:52:05 +02:00
$a -> page [ 'htmlhead' ] .= replace_macros ( $tpl , array (
'$baseurl' => $a -> get_baseurl (),
2010-12-06 03:08:36 +01:00
'$geotag' => $geotag ,
2011-03-21 08:21:35 +01:00
'$nickname' => $a -> user [ 'nickname' ],
'$linkurl' => t ( 'Please enter a link URL:' ),
'$utubeurl' => t ( 'Please enter a YouTube link:' ),
'$vidurl' => t ( " Please enter a video \x28 .ogg \x29 link/URL: " ),
'$audurl' => t ( " Please enter an audio \x28 .ogg \x29 link/URL: " ),
'$whereareu' => t ( 'Where are you right now?' )
2010-10-20 05:52:05 +02:00
));
2010-07-25 00:21:33 +02:00
2010-09-23 03:00:19 +02:00
$tpl = load_view_file ( " view/jot.tpl " );
2010-09-17 12:43:03 +02:00
if (( $group ) || ( is_array ( $a -> user ) && (( strlen ( $a -> user [ 'allow_cid' ])) || ( strlen ( $a -> user [ 'allow_gid' ])) || ( strlen ( $a -> user [ 'deny_cid' ])) || ( strlen ( $a -> user [ 'deny_gid' ])))))
$lockstate = 'lock' ;
else
$lockstate = 'unlock' ;
2010-07-17 16:03:06 +02:00
2010-10-18 09:43:49 +02:00
$celeb = ((( $a -> user [ 'page-flags' ] == PAGE_SOAPBOX ) || ( $a -> user [ 'page-flags' ] == PAGE_COMMUNITY )) ? true : false );
2011-02-11 11:35:19 +01:00
$jotplugins = '' ;
$jotnets = '' ;
2011-02-06 10:08:12 +01:00
call_hooks ( 'jot_tool' , $jotplugins );
2011-02-11 11:35:19 +01:00
call_hooks ( 'jot_networks' , $jotnets );
2011-02-06 10:08:12 +01:00
$tpl = replace_macros ( $tpl , array ( '$jotplugins' => $jotplugins ));
2011-01-26 16:17:28 +01:00
2010-07-25 00:21:33 +02:00
$o .= replace_macros ( $tpl , array (
'$return_path' => $a -> cmd ,
2011-03-08 04:58:22 +01:00
'$action' => 'item' ,
'$share' => t ( 'Share' ),
'$upload' => t ( 'Upload photo' ),
'$weblink' => t ( 'Insert web link' ),
'$youtube' => t ( 'Insert YouTube video' ),
2011-03-17 05:14:22 +01:00
'$video' => t ( 'Insert Vorbis [.ogg] video' ),
'$audio' => t ( 'Insert Vorbis [.ogg] audio' ),
2011-03-08 04:58:22 +01:00
'$setloc' => t ( 'Set your location' ),
'$noloc' => t ( 'Clear browser location' ),
'$wait' => t ( 'Please wait' ),
'$permset' => t ( 'Permission settings' ),
'$content' => '' ,
'$post_id' => '' ,
2010-07-25 00:21:33 +02:00
'$baseurl' => $a -> get_baseurl (),
2010-08-22 01:31:46 +02:00
'$defloc' => $a -> user [ 'default-location' ],
2010-07-25 00:21:33 +02:00
'$visitor' => 'block' ,
2011-02-01 04:07:13 +01:00
'$emailcc' => t ( 'CC: email addresses' ),
2011-02-11 11:35:19 +01:00
'$jotnets' => $jotnets ,
2011-02-01 04:07:13 +01:00
'$emtitle' => t ( 'Example: bob@example.com, mary@example.com' ),
2010-09-17 12:43:03 +02:00
'$lockstate' => $lockstate ,
2010-10-18 09:43:49 +02:00
'$acl' => populate_acl ((( $group ) ? $group_acl : $a -> user ), $celeb ),
2010-09-17 12:43:03 +02:00
'$bang' => (( $group ) ? '!' : '' ),
2011-02-06 10:08:12 +01:00
'$profile_uid' => $_SESSION [ 'uid' ]
2010-07-25 00:21:33 +02:00
));
2010-07-17 02:16:50 +02:00
2010-07-26 01:27:22 +02:00
// The special div is needed for liveUpdate to kick in for this page.
// We only launch liveUpdate if you are on the front page, you aren't
// filtering by group and also you aren't writing a comment (the last
// criteria is discovered in javascript).
2010-09-21 07:27:33 +02:00
$o .= '<div id="live-network"></div>' . " \r \n " ;
2011-02-17 09:40:35 +01:00
$o .= " <script> var profile_uid = " . $_SESSION [ 'uid' ]
. " ; var netargs = ' " . substr ( $a -> cmd , 8 )
. " '; var profile_page = " . $a -> pager [ 'page' ] . " ; </script> \r \n " ;
2010-09-21 07:27:33 +02:00
2010-07-25 00:21:33 +02:00
}
2010-07-17 02:16:50 +02:00
2010-07-26 01:27:22 +02:00
// We aren't going to try and figure out at the item, group, and page level
// which items you've seen and which you haven't. You're looking at some
// subset of items, so just mark everything seen.
2010-07-25 00:21:33 +02:00
$r = q ( " UPDATE `item` SET `unseen` = 0
WHERE `unseen` = 1 AND `uid` = % d " ,
intval ( $_SESSION [ 'uid' ])
);
2010-07-17 02:16:50 +02:00
2010-07-26 01:27:22 +02:00
// We don't have to deal with ACL's on this page. You're looking at everything
// that belongs to you, hence you can see all of it. We will filter by group if
// desired.
2010-07-24 15:56:02 +02:00
2010-09-17 12:10:19 +02:00
$sql_extra = " AND `item`.`parent` IN ( SELECT `parent` FROM `item` WHERE `id` = `parent` ) " ;
2010-07-17 02:16:50 +02:00
2010-07-26 01:27:22 +02:00
if ( $group ) {
2010-08-11 10:48:43 +02:00
$r = q ( " SELECT `name`, `id` FROM `group` WHERE `id` = %d AND `uid` = %d LIMIT 1 " ,
2010-07-26 01:27:22 +02:00
intval ( $group ),
intval ( $_SESSION [ 'uid' ])
);
if ( ! count ( $r )) {
2011-02-17 08:10:18 +01:00
if ( $update )
killme ();
2010-08-12 00:40:18 +02:00
notice ( t ( 'No such group' ) . EOL );
2010-07-26 01:27:22 +02:00
goaway ( $a -> get_baseurl () . '/network' );
return ; // NOTREACHED
}
$contacts = expand_groups ( array ( $group ));
2011-01-03 22:53:26 +01:00
if (( is_array ( $contacts )) && count ( $contacts )) {
$contact_str = implode ( ',' , $contacts );
}
else {
$contact_str = ' 0 ' ;
notice ( t ( 'Group is empty' ));
}
2011-01-20 02:56:36 +01:00
2011-01-03 22:53:26 +01:00
$sql_extra = " AND `item`.`parent` IN ( SELECT `parent` FROM `item` WHERE `id` = `parent` AND `contact-id` IN ( $contact_str )) " ;
2011-02-28 11:56:46 +01:00
$o = '<h2>' . t ( 'Group: ' ) . $r [ 0 ][ 'name' ] . '</h2>' . $o ;
2010-07-26 01:27:22 +02:00
}
2010-07-17 02:16:50 +02:00
2011-01-17 01:40:09 +01:00
if (( ! $group ) && ( ! $update ))
$o .= get_birthdays ();
2010-07-17 02:16:50 +02:00
$r = q ( " SELECT COUNT(*) AS `total`
FROM `item` LEFT JOIN `contact` ON `contact` . `id` = `item` . `contact-id`
WHERE `item` . `uid` = % d AND `item` . `visible` = 1 AND `item` . `deleted` = 0
2010-07-19 15:58:03 +02:00
AND `contact` . `blocked` = 0 AND `contact` . `pending` = 0
2010-07-17 02:16:50 +02:00
$sql_extra " ,
intval ( $_SESSION [ 'uid' ])
);
2011-03-28 04:53:36 +02:00
if ( count ( $r )) {
2010-07-17 02:16:50 +02:00
$a -> set_pager_total ( $r [ 0 ][ 'total' ]);
2011-03-28 04:53:36 +02:00
$a -> set_pager_itemspage ( 40 );
}
2010-07-17 02:16:50 +02:00
2011-01-20 02:56:36 +01:00
if ( $nouveau ) {
$r = q ( " SELECT `item`.*, `item`.`id` AS `item_id`,
`contact` . `name` , `contact` . `photo` , `contact` . `url` , `contact` . `rel` ,
2011-01-20 03:31:04 +01:00
`contact` . `network` , `contact` . `thumb` , `contact` . `dfrn-id` , `contact` . `self` ,
2011-01-20 02:56:36 +01:00
`contact` . `id` AS `cid` , `contact` . `uid` AS `contact-uid`
FROM `item` , `contact`
WHERE `item` . `uid` = % d AND `item` . `visible` = 1 AND `item` . `deleted` = 0
AND `contact` . `id` = `item` . `contact-id`
AND `contact` . `blocked` = 0 AND `contact` . `pending` = 0
$sql_extra
ORDER BY `item` . `created` DESC LIMIT % d , % d " ,
intval ( $_SESSION [ 'uid' ]),
intval ( $a -> pager [ 'start' ]),
intval ( $a -> pager [ 'itemspage' ])
);
}
else {
2011-03-28 04:53:36 +02:00
$r = q ( " SELECT `item`.`id` AS `item_id`, `contact`.`uid` AS `contact_uid`
FROM `item` LEFT JOIN `contact` ON `contact` . `id` = `item` . `contact-id`
2011-01-20 02:56:36 +01:00
WHERE `item` . `uid` = % d AND `item` . `visible` = 1 AND `item` . `deleted` = 0
AND `contact` . `blocked` = 0 AND `contact` . `pending` = 0
2011-03-28 04:53:36 +02:00
AND `item` . `parent` = `item` . `id`
2011-01-20 02:56:36 +01:00
$sql_extra
2011-03-28 04:53:36 +02:00
ORDER BY `item` . `created` DESC LIMIT % d , % d " ,
2011-03-07 04:24:01 +01:00
intval ( local_user ()),
2011-01-20 02:56:36 +01:00
intval ( $a -> pager [ 'start' ]),
intval ( $a -> pager [ 'itemspage' ])
);
2011-03-28 04:53:36 +02:00
$parents_arr = array ();
$parents_str = '' ;
if ( count ( $r )) {
foreach ( $r as $rr )
$parents_arr [] = $rr [ 'item_id' ];
$parents_str = implode ( ', ' , $parents_arr );
$r = q ( " SELECT `item`.*, `item`.`id` AS `item_id`,
`contact` . `name` , `contact` . `photo` , `contact` . `url` , `contact` . `rel` ,
`contact` . `network` , `contact` . `thumb` , `contact` . `dfrn-id` , `contact` . `self` ,
`contact` . `id` AS `cid` , `contact` . `uid` AS `contact-uid`
FROM `item` , ( SELECT `p` . `id` , `p` . `created` FROM `item` AS `p` WHERE `p` . `parent` = `p` . `id` ) as `parentitem` , `contact`
WHERE `item` . `uid` = % d AND `item` . `visible` = 1 AND `item` . `deleted` = 0
AND `contact` . `id` = `item` . `contact-id`
AND `contact` . `blocked` = 0 AND `contact` . `pending` = 0
AND `item` . `parent` = `parentitem` . `id` AND `item` . `parent` IN ( % s )
$sql_extra
ORDER BY `parentitem` . `created` DESC , `item` . `gravity` ASC , `item` . `created` ASC " ,
intval ( local_user ()),
dbesc ( $parents_str )
);
}
2011-01-20 02:56:36 +01:00
}
2010-07-17 02:16:50 +02:00
2011-03-07 04:24:01 +01:00
$author_contacts = extract_item_authors ( $r , local_user ());
2010-07-17 02:16:50 +02:00
2010-09-23 03:00:19 +02:00
$cmnt_tpl = load_view_file ( 'view/comment_item.tpl' );
$like_tpl = load_view_file ( 'view/like.tpl' );
2011-03-17 06:04:00 +01:00
$noshare_tpl = load_view_file ( 'view/like_noshare.tpl' );
2010-09-23 03:00:19 +02:00
$tpl = load_view_file ( 'view/wall_item.tpl' );
$wallwall = load_view_file ( 'view/wallwall_item.tpl' );
2010-07-17 02:16:50 +02:00
2010-09-17 12:10:19 +02:00
$alike = array ();
$dlike = array ();
2010-07-17 02:16:50 +02:00
if ( count ( $r )) {
2010-09-17 12:10:19 +02:00
2011-01-20 02:56:36 +01:00
if ( $nouveau ) {
$tpl = load_view_file ( 'view/search_item.tpl' );
$droptpl = load_view_file ( 'view/wall_fake_drop.tpl' );
foreach ( $r as $item ) {
$comment = '' ;
$owner_url = '' ;
$owner_photo = '' ;
$owner_name = '' ;
$sparkle = '' ;
$profile_name = (( strlen ( $item [ 'author-name' ])) ? $item [ 'author-name' ] : $item [ 'name' ]);
$profile_avatar = (( strlen ( $item [ 'author-avatar' ])) ? $item [ 'author-avatar' ] : $item [ 'thumb' ]);
$profile_link = (( strlen ( $item [ 'author-link' ])) ? $item [ 'author-link' ] : $item [ 'url' ]);
2011-03-05 06:27:38 +01:00
$redirect_url = $a -> get_baseurl () . '/redir/' . $item [ 'cid' ] ;
2011-03-07 04:43:03 +01:00
if ( strlen ( $item [ 'author-link' ])) {
2011-03-07 04:48:46 +01:00
if ( link_compare ( $item [ 'author-link' ], $item [ 'url' ]) && ( $item [ 'network' ] === 'dfrn' ) && ( ! $item [ 'self' ])) {
2011-03-07 04:24:01 +01:00
$profile_link = $redirect_url ;
$sparkle = ' sparkle' ;
}
elseif ( isset ( $author_contacts [ $item [ 'author-link' ]])) {
$profile_link = $a -> get_baseurl () . '/redir/' . $author_contacts [ $item [ 'author-link' ]];
$sparkle = ' sparkle' ;
}
2011-03-03 01:19:38 +01:00
}
2011-01-20 02:56:36 +01:00
2011-03-08 16:50:10 +01:00
$location = (( $item [ 'location' ]) ? '<a target="map" title="' . $item [ 'location' ] . '" href="http://maps.google.com/?q=' . urlencode ( $item [ 'location' ]) . '">' . $item [ 'location' ] . '</a>' : '' );
$coord = (( $item [ 'coord' ]) ? '<a target="map" title="' . $item [ 'coord' ] . '" href="http://maps.google.com/?q=' . urlencode ( $item [ 'coord' ]) . '">' . $item [ 'coord' ] . '</a>' : '' );
2011-01-20 02:56:36 +01:00
if ( $coord ) {
if ( $location )
$location .= '<br /><span class="smalltext">(' . $coord . ')</span>' ;
else
$location = '<span class="smalltext">' . $coord . '</span>' ;
}
$drop = replace_macros ( $droptpl , array ( '$id' => $item [ 'id' ]));
$lock = '<div class="wall-item-lock"></div>' ;
$o .= replace_macros ( $tpl , array (
'$id' => $item [ 'item_id' ],
2011-03-01 04:44:47 +01:00
'$linktitle' => t ( 'View $name\'s profile' ),
2011-01-20 02:56:36 +01:00
'$profile_url' => $profile_link ,
'$name' => $profile_name ,
'$sparkle' => $sparkle ,
'$lock' => $lock ,
'$thumb' => $profile_avatar ,
'$title' => $item [ 'title' ],
2011-01-25 14:26:12 +01:00
'$body' => smilies ( bbcode ( $item [ 'body' ])),
2011-01-20 02:56:36 +01:00
'$ago' => relative_date ( $item [ 'created' ]),
'$location' => $location ,
'$indent' => '' ,
'$owner_url' => $owner_url ,
'$owner_photo' => $owner_photo ,
'$owner_name' => $owner_name ,
'$drop' => $drop ,
2011-01-20 03:31:04 +01:00
'$conv' => '<a href="' . $a -> get_baseurl () . '/display/' . $a -> user [ 'nickname' ] . '/' . $item [ 'id' ] . '">' . t ( 'View in context' ) . '</a>'
2011-01-20 02:56:36 +01:00
));
}
$o .= paginate ( $a );
return $o ;
}
2011-03-28 05:37:44 +02:00
2011-03-28 04:53:36 +02:00
$comments = array ();
foreach ( $r as $rr ) {
if ( intval ( $rr [ 'gravity' ]) == 6 ) {
if ( ! x ( $comments , $rr [ 'parent' ]))
$comments [ $rr [ 'parent' ]] = 1 ;
else
$comments [ $rr [ 'parent' ]] += 1 ;
}
}
2011-01-20 02:56:36 +01:00
2010-11-01 00:38:22 +01:00
foreach ( $r as $item ) {
like_puller ( $a , $item , $alike , 'like' );
like_puller ( $a , $item , $dlike , 'dislike' );
2010-09-17 12:10:19 +02:00
}
2011-03-28 04:53:36 +02:00
$comments_collapsed = false ;
2011-03-28 05:37:44 +02:00
$blowhard = 0 ;
$blowhard_count = 0 ;
2010-07-17 08:14:37 +02:00
foreach ( $r as $item ) {
2010-07-17 02:16:50 +02:00
$comment = '' ;
2010-07-17 08:14:37 +02:00
$template = $tpl ;
$commentww = '' ;
2011-03-07 04:24:01 +01:00
$sparkle = '' ;
2010-10-30 22:25:37 +02:00
$owner_url = $owner_photo = $owner_name = '' ;
2010-11-22 02:36:01 +01:00
2011-03-07 04:24:01 +01:00
if ((( activity_match ( $item [ 'verb' ], ACTIVITY_LIKE )) || ( activity_match ( $item [ 'verb' ], ACTIVITY_DISLIKE ))) && ( $item [ 'id' ] != $item [ 'parent' ]))
continue ;
2010-11-22 02:36:01 +01:00
2011-03-28 04:53:36 +02:00
if ( $item [ 'id' ] == $item [ 'parent' ]) {
2011-03-28 05:37:44 +02:00
if ( $blowhard == $item [ 'cid' ] && ( ! $item [ 'self' ])) {
$blowhard_count ++ ;
if ( $blowhard_count == 3 ) {
$o .= '<div class="icollapse-wrapper fakelink" id="icollapse-wrapper-' . $item [ 'parent' ] . '" onclick="openClose(' . '\'icollapse-' . $item [ 'parent' ] . '\');" >' . t ( 'See more posts like this' ) . '</div>' . '<div class="icollapse" id="icollapse-' . $item [ 'parent' ] . '" style="display: none;" >' ;
}
}
else {
$blowhard = $item [ 'cid' ];
if ( $blowhard_count > 3 ) {
$blowhard_count = 0 ;
$o .= '</div>' ;
}
}
2011-03-28 04:53:36 +02:00
$comments_seen = 0 ;
$comments_collapsed = false ;
}
else
$comments_seen ++ ;
2010-07-17 16:03:06 +02:00
2011-03-28 04:53:36 +02:00
if (( $comments [ $item [ 'parent' ]] > 2 ) && ( $comments_seen <= ( $comments [ $item [ 'parent' ]] - 2 )) && ( $item [ 'gravity' ] == 6 )) {
if ( ! $comments_collapsed ) {
$o .= '<div class="ccollapse-wrapper fakelink" id="ccollapse-wrapper-' . $item [ 'parent' ] . '" onclick="openClose(' . '\'ccollapse-' . $item [ 'parent' ] . '\');" >' . sprintf ( t ( 'See all %d comments' ), $comments [ $item [ 'parent' ]]) . '</div>' ;
$o .= '<div class="ccollapse" id="ccollapse-' . $item [ 'parent' ] . '" style="display: none;" >' ;
$comments_collapsed = true ;
}
}
if (( $comments [ $item [ 'parent' ]] > 2 ) && ( $comments_seen == ( $comments [ $item [ 'parent' ]] - 1 ))) {
2011-03-28 05:37:44 +02:00
$o .= '</div>' ;
2011-03-28 04:53:36 +02:00
}
$redirect_url = $a -> get_baseurl () . '/redir/' . $item [ 'cid' ] ;
2010-12-08 05:47:53 +01:00
$lock = ((( $item [ 'private' ]) || (( $item [ 'uid' ] == local_user ()) && ( strlen ( $item [ 'allow_cid' ]) || strlen ( $item [ 'allow_gid' ])
|| strlen ( $item [ 'deny_cid' ]) || strlen ( $item [ 'deny_gid' ]))))
2010-09-30 07:11:26 +02:00
? '<div class="wall-item-lock"><img src="images/lock_icon.gif" class="lockview" alt="' . t ( 'Private Message' ) . '" onclick="lockview(event,' . $item [ 'id' ] . ');" /></div>'
2010-09-29 07:12:27 +02:00
: '<div class="wall-item-lock"></div>' );
2010-12-08 05:47:53 +01:00
2010-07-17 16:03:06 +02:00
// Top-level wall post not written by the wall owner (wall-to-wall)
// First figure out who owns it.
2010-09-28 04:48:45 +02:00
$osparkle = '' ;
2010-07-17 08:14:37 +02:00
if (( $item [ 'parent' ] == $item [ 'item_id' ]) && ( ! $item [ 'self' ])) {
2010-09-17 12:10:19 +02:00
2010-09-27 02:24:20 +02:00
if ( $item [ 'type' ] === 'wall' ) {
2010-07-17 16:03:06 +02:00
// I do. Put me on the left of the wall-to-wall notice.
2010-07-17 08:14:37 +02:00
$owner_url = $a -> contact [ 'url' ];
$owner_photo = $a -> contact [ 'thumb' ];
$owner_name = $a -> contact [ 'name' ];
$template = $wallwall ;
$commentww = 'ww' ;
}
2010-10-25 05:39:24 +02:00
if (( $item [ 'type' ] === 'remote' ) && ( strlen ( $item [ 'owner-link' ])) && ( $item [ 'owner-link' ] != $item [ 'author-link' ])) {
2010-07-17 16:03:06 +02:00
// Could be anybody.
2010-07-17 08:14:37 +02:00
$owner_url = $item [ 'owner-link' ];
$owner_photo = $item [ 'owner-avatar' ];
$owner_name = $item [ 'owner-name' ];
$template = $wallwall ;
2010-07-17 16:03:06 +02:00
$commentww = 'ww' ;
// If it is our contact, use a friendly redirect link
2011-01-20 04:51:34 +01:00
if (( link_compare ( $item [ 'owner-link' ], $item [ 'url' ]))
2010-10-18 09:43:49 +02:00
&& ( $item [ 'network' ] === 'dfrn' )) {
2010-07-17 16:03:06 +02:00
$owner_url = $redirect_url ;
2010-09-28 04:48:45 +02:00
$osparkle = ' sparkle' ;
}
2010-07-17 08:14:37 +02:00
}
}
2010-07-17 02:16:50 +02:00
2010-07-25 08:20:20 +02:00
if ( $update )
$return_url = $_SESSION [ 'return_url' ];
else
$return_url = $_SESSION [ 'return_url' ] = $a -> cmd ;
2010-09-17 12:10:19 +02:00
$likebuttons = '' ;
if ( $item [ 'id' ] == $item [ 'parent' ]) {
2011-03-17 06:04:00 +01:00
$likebuttons = replace_macros ((( $item [ 'private' ]) ? $noshare_tpl : $like_tpl ), array (
2011-03-09 03:53:52 +01:00
'$id' => $item [ 'id' ],
'$likethis' => t ( " I like this \x28 toggle \x29 " ),
'$nolike' => t ( " I don't like this \x28 toggle \x29 " ),
2011-03-17 03:36:59 +01:00
'$share' => t ( 'Share' ),
2011-03-09 03:53:52 +01:00
'$wait' => t ( 'Please wait' )
));
2010-09-17 12:10:19 +02:00
}
2010-07-25 08:20:20 +02:00
2010-07-17 08:14:37 +02:00
if ( $item [ 'last-child' ]) {
2010-07-17 02:16:50 +02:00
$comment = replace_macros ( $cmnt_tpl , array (
2011-02-17 06:17:49 +01:00
'$return_path' => '' ,
2011-02-17 08:05:48 +01:00
'$jsreload' => '' , // $_SESSION['return_url'],
2010-07-26 07:51:45 +02:00
'$type' => 'net-comment' ,
2010-07-17 08:14:37 +02:00
'$id' => $item [ 'item_id' ],
'$parent' => $item [ 'parent' ],
'$profile_uid' => $_SESSION [ 'uid' ],
2010-08-11 06:22:36 +02:00
'$mylink' => $a -> contact [ 'url' ],
2010-09-28 04:58:37 +02:00
'$mytitle' => t ( 'This is you' ),
2010-08-11 06:22:36 +02:00
'$myphoto' => $a -> contact [ 'thumb' ],
2010-07-17 08:14:37 +02:00
'$ww' => $commentww
2010-07-17 02:16:50 +02:00
));
}
2011-03-18 08:30:34 +01:00
$edpost = '' ;
if (( $item [ 'id' ] == $item [ 'parent' ]) && ( intval ( $item [ 'wall' ]) == 1 ))
$edpost = '<a class="editpost" href="' . $a -> get_baseurl () . '/editpost/' . $item [ 'id' ] . '" title="' . t ( 'Edit' ) . '"><img src="images/pencil.gif" /></a>' ;
2011-02-24 11:46:06 +01:00
$drop = replace_macros ( load_view_file ( 'view/wall_item_drop.tpl' ), array ( '$id' => $item [ 'id' ], '$delete' => t ( 'Delete' )));
2010-07-26 07:51:45 +02:00
2010-07-17 02:16:50 +02:00
$photo = $item [ 'photo' ];
$thumb = $item [ 'thumb' ];
2010-07-17 08:14:37 +02:00
2010-07-17 16:03:06 +02:00
// Post was remotely authored.
2011-01-20 04:51:34 +01:00
$diff_author = (( link_compare ( $item [ 'url' ], $item [ 'author-link' ])) ? false : true );
2010-11-22 02:44:59 +01:00
$profile_name = ((( strlen ( $item [ 'author-name' ])) && $diff_author ) ? $item [ 'author-name' ] : $item [ 'name' ]);
$profile_avatar = ((( strlen ( $item [ 'author-avatar' ])) && $diff_author ) ? $item [ 'author-avatar' ] : $thumb );
2011-03-07 04:43:03 +01:00
if ( strlen ( $item [ 'author-link' ])) {
$profile_link = $item [ 'author-link' ];
2011-03-07 04:48:46 +01:00
if ( link_compare ( $item [ 'author-link' ], $item [ 'url' ]) && ( $item [ 'network' ] === 'dfrn' ) && ( ! $item [ 'self' ])) {
2010-07-17 16:03:06 +02:00
$profile_link = $redirect_url ;
2010-09-28 04:48:45 +02:00
$sparkle = ' sparkle' ;
}
2011-03-07 04:24:01 +01:00
elseif ( isset ( $author_contacts [ $item [ 'author-link' ]])) {
$profile_link = $a -> get_baseurl () . '/redir/' . $author_contacts [ $item [ 'author-link' ]];
$sparkle = ' sparkle' ;
2010-09-28 04:48:45 +02:00
}
2010-07-17 16:03:06 +02:00
}
2011-03-07 04:24:01 +01:00
else
$profile_link = $item [ 'url' ];
2010-09-17 12:10:19 +02:00
2010-11-01 00:38:22 +01:00
$like = (( x ( $alike , $item [ 'id' ])) ? format_like ( $alike [ $item [ 'id' ]], $alike [ $item [ 'id' ] . '-l' ], 'like' , $item [ 'id' ]) : '' );
$dislike = (( x ( $dlike , $item [ 'id' ])) ? format_like ( $dlike [ $item [ 'id' ]], $dlike [ $item [ 'id' ] . '-l' ], 'dislike' , $item [ 'id' ]) : '' );
2010-09-17 12:10:19 +02:00
2011-03-08 16:50:10 +01:00
$location = (( $item [ 'location' ]) ? '<a target="map" title="' . $item [ 'location' ] . '" href="http://maps.google.com/?q=' . urlencode ( $item [ 'location' ]) . '">' . $item [ 'location' ] . '</a>' : '' );
$coord = (( $item [ 'coord' ]) ? '<a target="map" title="' . $item [ 'coord' ] . '" href="http://maps.google.com/?q=' . urlencode ( $item [ 'coord' ]) . '">' . $item [ 'coord' ] . '</a>' : '' );
2010-10-20 05:52:05 +02:00
if ( $coord ) {
if ( $location )
$location .= '<br /><span class="smalltext">(' . $coord . ')</span>' ;
else
$location = '<span class="smalltext">' . $coord . '</span>' ;
}
2010-09-17 12:10:19 +02:00
2010-12-08 01:27:30 +01:00
$indent = (( $item [ 'parent' ] != $item [ 'item_id' ]) ? ' comment' : '' );
if ( strcmp ( datetime_convert ( 'UTC' , 'UTC' , $item [ 'created' ]), datetime_convert ( 'UTC' , 'UTC' , 'now - 12 hours' )) > 0 )
$indent .= ' shiny' ;
2010-07-17 16:03:06 +02:00
// Build the HTML
2010-07-17 02:16:50 +02:00
2010-12-26 02:46:25 +01:00
$tmp_item = replace_macros ( $template , array (
2010-07-17 02:16:50 +02:00
'$id' => $item [ 'item_id' ],
2011-02-24 11:32:46 +01:00
'$linktitle' => t ( 'View $name\'s profile' ),
'$olinktitle' => t ( 'View $owner_name\'s profile' ),
'$to' => t ( 'to' ),
'$wall' => t ( 'Wall-to-Wall' ),
'$vwall' => t ( 'via Wall-To-Wall:' ),
2010-07-17 02:16:50 +02:00
'$profile_url' => $profile_link ,
'$name' => $profile_name ,
'$thumb' => $profile_avatar ,
2010-09-28 04:48:45 +02:00
'$osparkle' => $osparkle ,
'$sparkle' => $sparkle ,
2010-07-28 04:27:14 +02:00
'$title' => $item [ 'title' ],
2010-12-09 02:05:51 +01:00
'$body' => smilies ( bbcode ( $item [ 'body' ])),
2010-07-17 02:16:50 +02:00
'$ago' => relative_date ( $item [ 'created' ]),
2010-09-29 07:12:27 +02:00
'$lock' => $lock ,
2010-10-20 05:52:05 +02:00
'$location' => $location ,
2010-12-08 01:27:30 +01:00
'$indent' => $indent ,
2010-07-17 02:16:50 +02:00
'$owner_url' => $owner_url ,
'$owner_photo' => $owner_photo ,
'$owner_name' => $owner_name ,
2011-02-16 11:07:11 +01:00
'$plink' => get_plink ( $item ),
2011-03-18 08:30:34 +01:00
'$edpost' => $edpost ,
2010-07-26 07:51:45 +02:00
'$drop' => $drop ,
2010-09-17 12:10:19 +02:00
'$vote' => $likebuttons ,
'$like' => $like ,
'$dislike' => $dislike ,
2010-07-17 02:16:50 +02:00
'$comment' => $comment
));
2010-12-26 02:46:25 +01:00
$arr = array ( 'item' => $item , 'output' => $tmp_item );
call_hooks ( 'display_item' , $arr );
$o .= $arr [ 'output' ];
2010-07-17 02:16:50 +02:00
}
}
2010-07-25 00:21:33 +02:00
2011-01-23 23:56:14 +01:00
if ( ! $update ) {
2010-07-25 00:21:33 +02:00
$o .= paginate ( $a );
2011-01-23 23:56:14 +01:00
$o .= '<div class="cc-license">' . t ( 'Shared content is covered by the <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0</a> license.' ) . '</div>' ;
}
2010-07-25 00:21:33 +02:00
2010-07-17 02:16:50 +02:00
return $o ;
}