2010-07-01 19:48:07 -04:00
|
|
|
<?php
|
|
|
|
function edit_contact(&$a,$contact_id) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function contacts_post(&$a) {
|
|
|
|
|
|
|
|
|
|
|
|
if(($a->argc != 3) || (! local_user()))
|
|
|
|
return;
|
|
|
|
|
|
|
|
$contact_id = intval($a->argv[1]);
|
|
|
|
if(! $contact_id)
|
|
|
|
return;
|
|
|
|
|
|
|
|
$cmd = $a->argv[2];
|
|
|
|
|
|
|
|
$r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
|
|
|
intval($contact_id),
|
|
|
|
intval($_SESSION['uid'])
|
|
|
|
);
|
|
|
|
|
|
|
|
if(! count($r))
|
|
|
|
return;
|
|
|
|
$photo = str_replace('-4.jpg', '' , $r[0]['photo']);
|
|
|
|
$photos = q("SELECT `id` FROM `photo` WHERE `resource-id` = '%s' AND `uid` = %d",
|
|
|
|
dbesc($photo),
|
|
|
|
intval($_SESSION['uid'])
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
switch($cmd) {
|
|
|
|
case 'edit':
|
|
|
|
edit_contact($a,$contact_id);
|
|
|
|
break;
|
|
|
|
case 'block':
|
|
|
|
$r = q("UPDATE `contact` SET `blocked` = 1 WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
|
|
|
intval($contact_id),
|
|
|
|
intval($_SESSION['uid'])
|
|
|
|
);
|
|
|
|
if($r)
|
|
|
|
$_SESSION['sysmsg'] .= "Contact has been blocked." . EOL;
|
|
|
|
break;
|
|
|
|
case 'drop':
|
|
|
|
$r = q("DELETE FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
|
|
|
intval($contact_id),
|
|
|
|
intval($_SESSION['uid']));
|
|
|
|
if(count($photos)) {
|
|
|
|
foreach($photos as $p) {
|
|
|
|
q("DELETE FROM `photos` WHERE `id` = %d LIMIT 1",
|
|
|
|
$p['id']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if($intval($contact_id))
|
|
|
|
q("DELETE * FROM `item` WHERE `contact-id` = %d ",
|
|
|
|
intval($contact_id)
|
|
|
|
);
|
|
|
|
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function contacts_content(&$a) {
|
|
|
|
if(! local_user()) {
|
|
|
|
$_SESSION['sysmsg'] .= "Permission denied." . EOL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(($a->argc2 == 2) && ($a->argv[1] == 'all'))
|
|
|
|
$sql_extra = '';
|
|
|
|
else
|
|
|
|
$sql_extra = " AND `blocked` = 0 ";
|
|
|
|
|
|
|
|
$tpl = file_get_contents("view/contacts-top.tpl");
|
|
|
|
$o .= replace_macros($tpl,array(
|
|
|
|
'$hide_url' => ((strlen($sql_extra)) ? 'contacts/all' : 'contacts' ),
|
|
|
|
'$hide_text' => ((strlen($sql_extra)) ? 'Show Blocked Connections' : 'Hide Blocked Connections')
|
|
|
|
));
|
|
|
|
|
|
|
|
|
|
|
|
$r = q("SELECT * FROM `contact` WHERE `uid` = %d",
|
|
|
|
intval($_SESSION['uid']));
|
|
|
|
|
2010-07-02 21:37:43 -04:00
|
|
|
define ( 'DIRECTION_IN', 0);
|
|
|
|
define ( 'DIRECTION_OUT', 1);
|
|
|
|
define ( 'DIRECTION_BOTH', 2);
|
|
|
|
|
2010-07-01 19:48:07 -04:00
|
|
|
if(count($r)) {
|
|
|
|
|
|
|
|
$tpl = file_get_contents("view/contact_template.tpl");
|
|
|
|
|
|
|
|
foreach($r as $rr) {
|
|
|
|
if($rr['self'])
|
|
|
|
continue;
|
2010-07-02 21:37:43 -04:00
|
|
|
$direction = '';
|
|
|
|
if(strlen($rr['dfrn-id'])) {
|
|
|
|
if(strlen($rr['ret-id'])) {
|
|
|
|
$direction = DIRECTION_BOTH;
|
|
|
|
$dir_icon = 'images/lrarrow.gif';
|
|
|
|
$alt_text = 'Mutual Friendship';
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$direction = DIRECTION_OUT;
|
|
|
|
$dir_icon = 'images/rarrow.gif';
|
|
|
|
$alt_text = 'You are a fan of';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$direction = DIRECTION_IN;
|
|
|
|
$dir_icon = 'images/larrow.gif';
|
|
|
|
$alt_text = 'is a fan of yours';
|
|
|
|
}
|
|
|
|
|
2010-07-01 19:48:07 -04:00
|
|
|
$o .= replace_macros($tpl, array(
|
|
|
|
'$id' => $rr['id'],
|
2010-07-02 21:37:43 -04:00
|
|
|
'$alt_text' => $alt_text,
|
|
|
|
'$dir_icon' => $dir_icon,
|
2010-07-01 19:48:07 -04:00
|
|
|
'$thumb' => $rr['thumb'],
|
|
|
|
'$name' => $rr['name'],
|
2010-07-02 21:37:43 -04:00
|
|
|
'$url' => (($direction != DIRECTION_IN) ? "redir/{$rr['id']}" : $rr['url'] )
|
2010-07-01 19:48:07 -04:00
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $o;
|
|
|
|
|
|
|
|
|
|
|
|
}
|