2010-07-02 01:48:07 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if(! function_exists('profile_load')) {
|
2010-07-20 04:09:58 +02:00
|
|
|
function profile_load(&$a, $username, $profile = 0) {
|
2010-07-02 01:48:07 +02:00
|
|
|
|
|
|
|
if(remote_user()) {
|
|
|
|
$r = q("SELECT `profile-id` FROM `contact` WHERE `id` = %d LIMIT 1",
|
|
|
|
intval($_SESSION['visitor_id']));
|
|
|
|
if(count($r))
|
|
|
|
$profile = $r[0]['profile-id'];
|
|
|
|
}
|
|
|
|
|
2010-09-18 03:26:20 +02:00
|
|
|
$r = null;
|
|
|
|
|
2010-07-02 01:48:07 +02:00
|
|
|
if($profile) {
|
|
|
|
$profile_int = intval($profile);
|
2010-09-18 03:26:20 +02:00
|
|
|
$r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `user`.* FROM `profile`
|
|
|
|
LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
|
|
|
|
WHERE `user`.`nickname` = '%s' AND `profile`.`id` = %d LIMIT 1",
|
|
|
|
dbesc($username),
|
|
|
|
intval($profile_int)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if(! count($r)) {
|
|
|
|
$r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `user`.* FROM `profile`
|
|
|
|
LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
|
|
|
|
WHERE `user`.`nickname` = '%s' AND `profile`.`is-default` = 1 LIMIT 1",
|
|
|
|
dbesc($username)
|
|
|
|
);
|
2010-07-02 01:48:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if(($r === false) || (! count($r))) {
|
2010-09-09 05:14:17 +02:00
|
|
|
notice( t('No profile') . EOL );
|
2010-07-02 01:48:07 +02:00
|
|
|
$a->error = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$a->profile = $r[0];
|
|
|
|
|
|
|
|
$a->page['template'] = 'profile';
|
|
|
|
|
|
|
|
$a->page['title'] = $a->profile['name'];
|
2010-08-16 14:23:26 +02:00
|
|
|
$_SESSION['theme'] = $a->profile['theme'];
|
2010-07-02 01:48:07 +02:00
|
|
|
|
|
|
|
return;
|
|
|
|
}}
|
|
|
|
|
|
|
|
function profile_init(&$a) {
|
|
|
|
|
|
|
|
if($a->argc > 1)
|
|
|
|
$which = $a->argv[1];
|
|
|
|
else {
|
2010-09-09 05:14:17 +02:00
|
|
|
notice( t('No profile') . EOL );
|
2010-07-02 01:48:07 +02:00
|
|
|
$a->error = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-07-29 06:02:36 +02:00
|
|
|
$profile = 0;
|
2010-09-27 02:24:20 +02:00
|
|
|
if((local_user()) && ($a->argc > 2) && ($a->argv[2] === 'view')) {
|
2010-07-29 06:02:36 +02:00
|
|
|
$which = $a->user['nickname'];
|
|
|
|
$profile = $a->argv[1];
|
|
|
|
}
|
|
|
|
profile_load($a,$which,$profile);
|
2010-08-19 13:59:31 +02:00
|
|
|
$a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . $a->get_baseurl() . '/dfrn_poll/' . $which .'" />' . "\r\n" ;
|
2010-08-11 01:54:36 +02:00
|
|
|
|
2010-08-19 13:59:31 +02:00
|
|
|
$a->page['htmlhead'] .= '<meta name="dfrn-template" content="' . $a->get_baseurl() . "/profile/%s" . '" />' . "\r\n" ;
|
|
|
|
$a->page['htmlhead'] .= '<meta name="dfrn-global-visibility" content="' . (($a->profile['net-publish']) ? 'true' : 'false') . '" />' . "\r\n" ;
|
|
|
|
|
2010-07-02 01:48:07 +02:00
|
|
|
|
|
|
|
$dfrn_pages = array('request', 'confirm', 'notify', 'poll');
|
|
|
|
foreach($dfrn_pages as $dfrn)
|
|
|
|
$a->page['htmlhead'] .= "<link rel=\"dfrn-{$dfrn}\" href=\"".$a->get_baseurl()."/dfrn_{$dfrn}/{$which}\" />\r\n";
|
2010-07-08 16:03:25 +02:00
|
|
|
|
2010-07-02 01:48:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-21 04:34:44 +02:00
|
|
|
function profile_content(&$a, $update = 0) {
|
|
|
|
|
|
|
|
|
2010-07-02 01:48:07 +02:00
|
|
|
require_once("include/bbcode.php");
|
|
|
|
require_once('include/security.php');
|
|
|
|
|
2010-07-12 08:10:52 +02:00
|
|
|
$groups = array();
|
|
|
|
|
2010-07-11 04:43:55 +02:00
|
|
|
$tab = 'posts';
|
|
|
|
|
|
|
|
|
2010-08-20 02:23:13 +02:00
|
|
|
if($update) {
|
|
|
|
// Ensure we've got a profile owner if updating.
|
2010-09-21 04:34:44 +02:00
|
|
|
$a->profile['profile_uid'] = $update;
|
2010-08-20 02:23:13 +02:00
|
|
|
}
|
|
|
|
else {
|
2010-10-18 23:34:59 +02:00
|
|
|
if($a->profile['profile_uid'] == local_user())
|
2010-09-19 06:29:22 +02:00
|
|
|
$o .= '<script> $(document).ready(function() { $(\'#nav-home-link\').addClass(\'nav-selected\'); });</script>';
|
2010-07-28 14:01:52 +02:00
|
|
|
}
|
2010-07-26 07:51:45 +02:00
|
|
|
|
2010-08-20 02:23:13 +02:00
|
|
|
$contact = null;
|
|
|
|
$remote_contact = false;
|
|
|
|
|
2010-07-12 08:10:52 +02:00
|
|
|
if(remote_user()) {
|
2010-07-06 06:39:55 +02:00
|
|
|
$contact_id = $_SESSION['visitor_id'];
|
2010-07-12 08:10:52 +02:00
|
|
|
$groups = init_groups_visitor($contact_id);
|
2010-08-14 16:55:18 +02:00
|
|
|
$r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
|
|
|
intval($contact_id),
|
2010-08-20 02:23:13 +02:00
|
|
|
intval($a->profile['profile_uid'])
|
2010-08-14 16:55:18 +02:00
|
|
|
);
|
2010-08-20 02:23:13 +02:00
|
|
|
if(count($r)) {
|
2010-08-14 16:55:18 +02:00
|
|
|
$contact = $r[0];
|
2010-08-20 02:23:13 +02:00
|
|
|
$remote_contact = true;
|
|
|
|
}
|
2010-07-12 08:10:52 +02:00
|
|
|
}
|
2010-08-20 02:23:13 +02:00
|
|
|
|
|
|
|
if(! $remote_contact) {
|
2010-08-19 13:59:31 +02:00
|
|
|
if(local_user()) {
|
|
|
|
$contact_id = $_SESSION['cid'];
|
|
|
|
$contact = $a->contact;
|
|
|
|
}
|
2010-07-06 06:39:55 +02:00
|
|
|
}
|
|
|
|
|
2010-08-20 02:23:13 +02:00
|
|
|
if(! $update) {
|
2010-07-25 00:21:33 +02:00
|
|
|
if(x($_GET,'tab'))
|
|
|
|
$tab = notags(trim($_GET['tab']));
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2010-09-23 03:00:19 +02:00
|
|
|
$tpl = load_view_file('view/profile_tabs.tpl');
|
2010-07-13 03:00:58 +02:00
|
|
|
|
2010-07-02 01:48:07 +02:00
|
|
|
$o .= replace_macros($tpl,array(
|
2010-08-06 06:15:24 +02:00
|
|
|
'$url' => $a->get_baseurl() . '/' . $a->cmd,
|
|
|
|
'$phototab' => $a->get_baseurl() . '/photos/' . $a->profile['nickname']
|
2010-07-02 01:48:07 +02:00
|
|
|
));
|
|
|
|
|
2010-07-24 15:56:02 +02:00
|
|
|
|
2010-09-27 02:24:20 +02:00
|
|
|
if($tab === 'profile') {
|
2010-09-23 06:32:44 +02:00
|
|
|
$lang = get_config('system','language');
|
2010-09-23 03:00:19 +02:00
|
|
|
if($lang && file_exists("view/$lang/profile_advanced.php"))
|
|
|
|
require_once("view/$lang/profile_advanced.php");
|
|
|
|
else
|
|
|
|
require_once('view/profile_advanced.php');
|
2010-07-25 00:21:33 +02:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2010-10-18 09:43:49 +02:00
|
|
|
$celeb = ((($a->profile['page-flags'] == PAGE_SOAPBOX) || ($a->profile['page-flags'] == PAGE_COMMUNITY)) ? true : false);
|
2010-07-25 00:21:33 +02:00
|
|
|
if(can_write_wall($a,$a->profile['profile_uid'])) {
|
2010-09-23 03:00:19 +02:00
|
|
|
$tpl = load_view_file('view/jot-header.tpl');
|
2010-07-25 00:21:33 +02:00
|
|
|
|
|
|
|
$a->page['htmlhead'] .= replace_macros($tpl, array('$baseurl' => $a->get_baseurl()));
|
|
|
|
require_once('view/acl_selectors.php');
|
|
|
|
|
2010-09-23 03:00:19 +02:00
|
|
|
$tpl = load_view_file("view/jot.tpl");
|
2010-08-08 08:54:22 +02:00
|
|
|
if(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-25 00:21:33 +02:00
|
|
|
$o .= replace_macros($tpl,array(
|
|
|
|
'$baseurl' => $a->get_baseurl(),
|
2010-08-22 01:31:46 +02:00
|
|
|
'$defloc' => (($_SESSION['uid'] == $a->profile['profile_uid']) ? $a->user['default-location'] : ''),
|
2010-07-25 00:21:33 +02:00
|
|
|
'$return_path' => $a->cmd,
|
|
|
|
'$visitor' => (($_SESSION['uid'] == $a->profile['profile_uid']) ? 'block' : 'none'),
|
2010-08-08 08:54:22 +02:00
|
|
|
'$lockstate' => $lockstate,
|
2010-09-17 12:43:03 +02:00
|
|
|
'$bang' => '',
|
2010-10-18 09:43:49 +02:00
|
|
|
'$acl' => (($_SESSION['uid'] == $a->profile['profile_uid']) ? populate_acl($a->user, $celeb) : ''),
|
2010-07-25 00:21:33 +02:00
|
|
|
'$profile_uid' => $a->profile['profile_uid']
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2010-09-21 04:34:44 +02:00
|
|
|
// This is ugly, but we can't pass the profile_uid through the session to the ajax updater,
|
|
|
|
// because browser prefetching might change it on us. We have to deliver it with the page.
|
|
|
|
|
2010-09-27 02:24:20 +02:00
|
|
|
if($tab === 'posts' && (! $a->pager['start'])) {
|
2010-09-21 07:27:33 +02:00
|
|
|
$o .= '<div id="live-profile"></div>' . "\r\n";
|
|
|
|
$o .= "<script> var profile_uid = " . $a->profile['profile_uid'] . "; </script>\r\n";
|
|
|
|
}
|
|
|
|
|
2010-07-25 00:21:33 +02:00
|
|
|
}
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2010-07-17 16:03:06 +02:00
|
|
|
// TODO alter registration and settings and profile to update contact table when names and photos change.
|
2010-07-12 08:10:52 +02:00
|
|
|
|
2010-07-17 16:03:06 +02:00
|
|
|
// default permissions - anonymous user
|
2010-07-12 08:10:52 +02:00
|
|
|
|
|
|
|
$sql_extra = " AND `allow_cid` = '' AND `allow_gid` = '' AND `deny_cid` = '' AND `deny_gid` = '' ";
|
|
|
|
|
2010-08-20 02:23:13 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2010-07-12 08:10:52 +02:00
|
|
|
// Profile owner - everything is visible
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2010-09-09 05:14:17 +02:00
|
|
|
if(local_user() && ($_SESSION['uid'] == $a->profile['profile_uid'])) {
|
2010-07-12 08:10:52 +02:00
|
|
|
$sql_extra = '';
|
2010-07-20 14:21:19 +02:00
|
|
|
|
|
|
|
// Oh - while we're here... reset the Unseen messages
|
|
|
|
|
|
|
|
$r = q("UPDATE `item` SET `unseen` = 0
|
|
|
|
WHERE `type` != 'remote' AND `unseen` = 1 AND `uid` = %d",
|
|
|
|
intval($_SESSION['uid'])
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2010-07-12 08:10:52 +02:00
|
|
|
// authenticated visitor - here lie dragons
|
2010-08-20 02:23:13 +02:00
|
|
|
// If $remotecontact is true, we know that not only is this a remotely authenticated
|
|
|
|
// person, but that it is *our* contact, which is important in multi-user mode.
|
|
|
|
|
|
|
|
elseif($remote_contact) {
|
2010-07-12 08:10:52 +02:00
|
|
|
$gs = '<<>>'; // should be impossible to match
|
|
|
|
if(count($groups)) {
|
|
|
|
foreach($groups as $g)
|
2010-07-13 11:00:53 +02:00
|
|
|
$gs .= '|<' . intval($g) . '>';
|
2010-07-12 08:10:52 +02:00
|
|
|
}
|
|
|
|
$sql_extra = sprintf(
|
|
|
|
" AND ( `allow_cid` = '' OR `allow_cid` REGEXP '<%d>' )
|
2010-07-19 08:23:18 +02:00
|
|
|
AND ( `deny_cid` = '' OR NOT `deny_cid` REGEXP '<%d>' )
|
|
|
|
AND ( `allow_gid` = '' OR `allow_gid` REGEXP '%s' )
|
|
|
|
AND ( `deny_gid` = '' OR NOT `deny_gid` REGEXP '%s') ",
|
2010-07-12 08:10:52 +02:00
|
|
|
|
2010-07-13 08:08:07 +02:00
|
|
|
intval($_SESSION['visitor_id']),
|
|
|
|
intval($_SESSION['visitor_id']),
|
2010-07-13 11:00:53 +02:00
|
|
|
dbesc($gs),
|
|
|
|
dbesc($gs)
|
2010-07-02 01:48:07 +02:00
|
|
|
);
|
2010-07-12 08:10:52 +02:00
|
|
|
}
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2010-07-12 08:10:52 +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-08-13 09:43:44 +02:00
|
|
|
AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
|
2010-09-17 12:10:19 +02:00
|
|
|
AND `item`.`parent` IN ( SELECT `parent` FROM `item` WHERE `id` = `parent` AND `wall` = 1 )
|
2010-07-12 08:10:52 +02:00
|
|
|
$sql_extra ",
|
2010-08-20 02:23:13 +02:00
|
|
|
intval($a->profile['profile_uid'])
|
2010-07-06 06:39:55 +02:00
|
|
|
|
2010-07-12 08:10:52 +02:00
|
|
|
);
|
2010-07-06 06:39:55 +02:00
|
|
|
|
2010-07-12 08:10:52 +02:00
|
|
|
if(count($r))
|
|
|
|
$a->set_pager_total($r[0]['total']);
|
2010-07-17 16:03:06 +02:00
|
|
|
|
2010-07-12 08:10:52 +02:00
|
|
|
$r = q("SELECT `item`.*, `item`.`id` AS `item_id`,
|
2010-10-18 09:43:49 +02:00
|
|
|
`contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`network`, `contact`.`rel`,
|
|
|
|
`contact`.`thumb`, `contact`.`self`,
|
2010-07-12 08:10:52 +02:00
|
|
|
`contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
|
|
|
|
FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
|
|
|
|
WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
|
2010-08-13 09:43:44 +02:00
|
|
|
AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
|
2010-09-17 12:10:19 +02:00
|
|
|
AND `item`.`parent` IN ( SELECT `parent` FROM `item` WHERE `id` = `parent` AND `wall` = 1 )
|
2010-07-12 08:10:52 +02:00
|
|
|
$sql_extra
|
2010-09-17 12:10:19 +02:00
|
|
|
ORDER BY `parent` DESC, `gravity` ASC, `id` ASC LIMIT %d ,%d ",
|
2010-08-20 02:23:13 +02:00
|
|
|
intval($a->profile['profile_uid']),
|
2010-07-12 08:10:52 +02:00
|
|
|
intval($a->pager['start']),
|
|
|
|
intval($a->pager['itemspage'])
|
|
|
|
|
|
|
|
);
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2010-07-06 06:39:55 +02:00
|
|
|
|
2010-09-23 03:00:19 +02:00
|
|
|
$cmnt_tpl = load_view_file('view/comment_item.tpl');
|
2010-07-12 08:10:52 +02:00
|
|
|
|
2010-09-23 03:00:19 +02:00
|
|
|
$like_tpl = load_view_file('view/like.tpl');
|
2010-09-17 12:10:19 +02:00
|
|
|
|
2010-09-23 03:00:19 +02:00
|
|
|
$tpl = load_view_file('view/wall_item.tpl');
|
2010-07-17 08:14:37 +02:00
|
|
|
|
2010-09-23 03:00:19 +02:00
|
|
|
$droptpl = load_view_file('view/wall_item_drop.tpl');
|
|
|
|
$fakedrop = load_view_file('view/wall_fake_drop.tpl');
|
2010-09-21 06:26:18 +02:00
|
|
|
|
2010-07-27 02:01:37 +02:00
|
|
|
if($update)
|
|
|
|
$return_url = $_SESSION['return_url'];
|
|
|
|
else
|
|
|
|
$return_url = $_SESSION['return_url'] = $a->cmd;
|
2010-07-17 08:14:37 +02:00
|
|
|
|
2010-09-17 12:10:19 +02:00
|
|
|
$alike = array();
|
|
|
|
$dlike = array();
|
|
|
|
|
2010-07-12 08:10:52 +02:00
|
|
|
if(count($r)) {
|
2010-09-17 12:10:19 +02:00
|
|
|
|
|
|
|
foreach($r as $item) {
|
|
|
|
|
2010-09-28 04:48:45 +02:00
|
|
|
$sparkle = '';
|
|
|
|
|
2010-09-17 12:10:19 +02:00
|
|
|
if(($item['verb'] == ACTIVITY_LIKE) && ($item['id'] != $item['parent'])) {
|
|
|
|
$url = $item['url'];
|
2010-10-18 09:43:49 +02:00
|
|
|
if(($item['network'] === 'dfrn') && (! $item['self'])) {
|
2010-09-17 12:10:19 +02:00
|
|
|
$url = $a->get_baseurl() . '/redir/' . $item['contact-id'];
|
2010-09-28 04:48:45 +02:00
|
|
|
$sparkle = ' class="sparkle" ';
|
|
|
|
}
|
2010-09-17 12:10:19 +02:00
|
|
|
if(! is_array($alike[$item['parent'] . '-l']))
|
|
|
|
$alike[$item['parent'] . '-l'] = array();
|
|
|
|
$alike[$item['parent']] ++;
|
2010-09-28 04:48:45 +02:00
|
|
|
$alike[$item['parent'] . '-l'][] = '<a href="'. $url . '"'. $sparkle .'>' . $item['name'] . '</a>';
|
2010-09-17 12:10:19 +02:00
|
|
|
}
|
|
|
|
if(($item['verb'] == ACTIVITY_DISLIKE) && ($item['id'] != $item['parent'])) {
|
|
|
|
$url = $item['url'];
|
2010-10-18 09:43:49 +02:00
|
|
|
if(($item['network'] === 'dfrn') && (! $item['self'])) {
|
2010-09-17 12:10:19 +02:00
|
|
|
$url = $a->get_baseurl() . '/redir/' . $item['contact-id'];
|
2010-09-28 04:48:45 +02:00
|
|
|
$sparkle = ' class="sparkle" ';
|
|
|
|
}
|
2010-09-17 12:10:19 +02:00
|
|
|
if(! is_array($dlike[$item['parent'] . '-l']))
|
|
|
|
$dlike[$item['parent'] . '-l'] = array();
|
|
|
|
$dlike[$item['parent']] ++;
|
2010-09-28 04:48:45 +02:00
|
|
|
$dlike[$item['parent'] . '-l'][] = '<a href="'. $url . '"'. $sparkle .'>' . $item['name'] . '</a>';
|
2010-09-17 12:10:19 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-17 08:14:37 +02:00
|
|
|
foreach($r as $item) {
|
2010-09-17 12:10:19 +02:00
|
|
|
|
2010-09-28 04:48:45 +02:00
|
|
|
$sparkle = '';
|
2010-07-12 09:49:06 +02:00
|
|
|
$comment = '';
|
2010-09-17 12:10:19 +02:00
|
|
|
$likebuttons = '';
|
|
|
|
|
2010-07-17 08:14:37 +02:00
|
|
|
$template = $tpl;
|
2010-07-17 16:03:06 +02:00
|
|
|
|
|
|
|
$redirect_url = $a->get_baseurl() . '/redir/' . $item['cid'] ;
|
2010-09-17 12:10:19 +02:00
|
|
|
|
|
|
|
if((($item['verb'] == ACTIVITY_LIKE) || ($item['verb'] == ACTIVITY_DISLIKE)) && ($item['id'] != $item['parent']))
|
|
|
|
continue;
|
2010-07-25 08:20:20 +02:00
|
|
|
|
2010-10-18 23:34:59 +02:00
|
|
|
$lock = (($item['uid'] == local_user()) && (strlen($item['allow_cid']) || strlen($item['allow_gid'])
|
2010-09-29 07:12:27 +02:00
|
|
|
|| 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-08-20 02:23:13 +02:00
|
|
|
if(can_write_wall($a,$a->profile['profile_uid'])) {
|
2010-09-17 12:10:19 +02:00
|
|
|
if($item['id'] == $item['parent']) {
|
|
|
|
$likebuttons = replace_macros($like_tpl,array('$id' => $item['id']));
|
|
|
|
}
|
2010-07-17 08:14:37 +02:00
|
|
|
if($item['last-child']) {
|
|
|
|
$comment = replace_macros($cmnt_tpl,array(
|
2010-07-25 08:20:20 +02:00
|
|
|
'$return_path' => $_SESSION['return_url'],
|
2010-07-26 07:51:45 +02:00
|
|
|
'$type' => 'wall-comment',
|
2010-07-17 08:14:37 +02:00
|
|
|
'$id' => $item['item_id'],
|
|
|
|
'$parent' => $item['parent'],
|
2010-08-20 02:23:13 +02:00
|
|
|
'$profile_uid' => $a->profile['profile_uid'],
|
2010-08-14 16:55:18 +02:00
|
|
|
'$mylink' => $contact['url'],
|
2010-09-28 04:48:45 +02:00
|
|
|
'$mytitle' => t('This is you'),
|
2010-08-14 16:55:18 +02:00
|
|
|
'$myphoto' => $contact['thumb'],
|
2010-07-17 16:03:06 +02:00
|
|
|
'$ww' => ''
|
2010-07-12 09:49:06 +02:00
|
|
|
));
|
|
|
|
}
|
2010-07-12 08:10:52 +02:00
|
|
|
}
|
2010-07-17 08:14:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
$profile_url = $item['url'];
|
|
|
|
|
2010-07-17 16:03:06 +02:00
|
|
|
// This is my profile but I'm not the author of this post/comment. If it's somebody that's a fan or mutual friend,
|
|
|
|
// I can go directly to their profile as an authenticated guest.
|
|
|
|
|
2010-08-19 13:59:31 +02:00
|
|
|
if(local_user() && ($item['contact-uid'] == $_SESSION['uid'])
|
2010-10-18 09:43:49 +02:00
|
|
|
&& ($item['network'] === 'dfrn') && (! $item['self'] )) {
|
2010-07-17 16:03:06 +02:00
|
|
|
$profile_url = $redirect_url;
|
2010-09-28 04:48:45 +02:00
|
|
|
$sparkle = ' sparkle';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
$sparkle = '';
|
2010-07-17 16:03:06 +02:00
|
|
|
|
|
|
|
// We received this post via a remote feed. It's either a wall-to-wall or a remote comment. The author is
|
|
|
|
// known to us and is reflected in the contact-id for this item. We can use the contact url or redirect rather than
|
|
|
|
// use the link in the feed. This is different than on the network page where we may not know the author.
|
|
|
|
|
2010-07-19 08:23:18 +02:00
|
|
|
$profile_name = ((strlen($item['author-name'])) ? $item['author-name'] : $item['name']);
|
|
|
|
$profile_avatar = ((strlen($item['author-avatar'])) ? $item['author-avatar'] : $item['thumb']);
|
2010-07-17 16:03:06 +02:00
|
|
|
$profile_link = $profile_url;
|
2010-07-17 08:14:37 +02:00
|
|
|
|
2010-07-26 07:51:45 +02:00
|
|
|
$drop = '';
|
2010-09-21 06:26:18 +02:00
|
|
|
$dropping = false;
|
2010-07-26 07:51:45 +02:00
|
|
|
|
|
|
|
if(($item['contact-id'] == $_SESSION['visitor_id']) || ($item['uid'] == $_SESSION['uid']))
|
2010-09-21 06:26:18 +02:00
|
|
|
$dropping = true;
|
|
|
|
|
|
|
|
$drop = replace_macros((($dropping)? $droptpl : $fakedrop), array('$id' => $item['id']));
|
2010-07-26 07:51:45 +02:00
|
|
|
|
|
|
|
|
2010-09-17 12:10:19 +02:00
|
|
|
$like = (($alike[$item['id']]) ? format_like($alike[$item['id']],$alike[$item['id'] . '-l'],'like',$item['id']) : '');
|
|
|
|
$dislike = (($dlike[$item['id']]) ? format_like($dlike[$item['id']],$dlike[$item['id'] . '-l'],'dislike',$item['id']) : '');
|
|
|
|
|
|
|
|
|
2010-07-17 08:14:37 +02:00
|
|
|
$o .= replace_macros($template,array(
|
2010-07-17 16:03:06 +02:00
|
|
|
'$id' => $item['item_id'],
|
|
|
|
'$profile_url' => $profile_link,
|
|
|
|
'$name' => $profile_name,
|
|
|
|
'$thumb' => $profile_avatar,
|
2010-09-28 04:48:45 +02:00
|
|
|
'$sparkle' => $sparkle,
|
2010-07-28 04:27:14 +02:00
|
|
|
'$title' => $item['title'],
|
2010-07-17 16:03:06 +02:00
|
|
|
'$body' => bbcode($item['body']),
|
|
|
|
'$ago' => relative_date($item['created']),
|
2010-09-29 07:12:27 +02:00
|
|
|
'$lock' => $lock,
|
2010-08-19 13:59:31 +02:00
|
|
|
'$location' => (($item['location']) ? '<a target="map" href="http://maps.google.com/?q=' . urlencode($item['location']) . '">' . $item['location'] . '</a>' : ''),
|
2010-07-24 14:52:29 +02:00
|
|
|
'$indent' => (($item['parent'] != $item['item_id']) ? ' comment' : ''),
|
2010-07-26 07:51:45 +02:00
|
|
|
'$drop' => $drop,
|
2010-09-17 12:10:19 +02:00
|
|
|
'$like' => $like,
|
|
|
|
'$vote' => $likebuttons,
|
|
|
|
'$dislike' => $dislike,
|
2010-07-17 16:03:06 +02:00
|
|
|
'$comment' => $comment
|
|
|
|
));
|
2010-08-09 02:08:39 +02:00
|
|
|
|
2010-07-02 01:48:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-25 00:21:33 +02:00
|
|
|
if($update) {
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2010-07-12 08:10:52 +02:00
|
|
|
$o .= paginate($a);
|
|
|
|
|
2010-07-02 01:48:07 +02:00
|
|
|
return $o;
|
|
|
|
}
|