friendica/mod/contacts.php

255 lines
6.1 KiB
PHP
Raw Normal View History

2010-07-02 01:48:07 +02:00
<?php
2010-07-11 11:52:47 +02:00
function contacts_init(&$a) {
require_once('include/group.php');
$a->page['aside'] .= group_side();
2010-07-02 01:48:07 +02:00
}
function contacts_post(&$a) {
2010-07-11 08:03:54 +02:00
if(! local_user())
2010-07-02 01:48:07 +02:00
return;
$contact_id = intval($a->argv[1]);
if(! $contact_id)
return;
2010-07-11 11:52:47 +02:00
2010-07-11 08:03:54 +02:00
$orig_record = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
2010-07-02 01:48:07 +02:00
intval($contact_id),
intval($_SESSION['uid'])
);
2010-07-11 08:03:54 +02:00
if(! count($orig_record)) {
notice("Could not access contact record." . EOL);
goaway($a->get_baseurl() . '/contacts');
return; // NOTREACHED
}
2010-07-02 01:48:07 +02:00
2010-07-11 08:03:54 +02:00
$profile_id = intval($_POST['profile-assign']);
if($profile_id) {
$r = q("SELECT `id` FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1",
intval($profile_id),
intval($_SESSION['uid'])
);
if(! count($r)) {
notice("Cannot locate selected profile." . EOL);
2010-07-02 01:48:07 +02:00
return;
2010-07-11 08:03:54 +02:00
}
2010-07-02 01:48:07 +02:00
}
2010-07-11 08:03:54 +02:00
$rating = intval($_POST['reputation']);
if($rating > 5 || $rating < 0)
$rating = 0;
$reason = notags(trim($_POST['reason']));
$r = q("UPDATE `contact` SET `profile-id` = %d, `rating` = %d, `reason` = '%s'
WHERE `id` = %d AND `uid` = %d LIMIT 1",
intval($profile_id),
intval($rating),
dbesc($reason),
intval($contact_id),
intval($_SESSION['uid'])
);
if($r)
notice("Contact updated." . EOL);
else
notice("Failed to update contact record." . EOL);
return;
2010-07-02 01:48:07 +02:00
}
function contacts_content(&$a) {
2010-07-11 08:03:54 +02:00
2010-07-02 01:48:07 +02:00
if(! local_user()) {
$_SESSION['sysmsg'] .= "Permission denied." . EOL;
return;
}
2010-07-11 08:03:54 +02:00
if($a->argc == 3) {
$contact_id = intval($a->argv[1]);
if(! $contact_id)
return;
$cmd = $a->argv[2];
$orig_record = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
intval($contact_id),
intval($_SESSION['uid'])
);
if(! count($orig_record)) {
notice("Could not access contact record." . EOL);
goaway($a->get_baseurl() . '/contacts');
return; // NOTREACHED
}
$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'])
);
if($cmd == 'block') {
$blocked = (($orig_record[0]['blocked']) ? 0 : 1);
$r = q("UPDATE `contact` SET `blocked` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1",
intval($blocked),
intval($contact_id),
intval($_SESSION['uid'])
);
if($r) {
$msg = "Contact has been " . (($blocked) ? '' : 'un') . "blocked." . EOL ;
notice($msg);
}
goaway($a->get_baseurl() ."/contacts/$contact_id");
return; // NOTREACHED
}
if($cmd == '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 LIMIT 1",
intval($contact_id)
);
notice("Contact has been removed." . EOL );
goaway($a->get_baseurl() . '/contacts');
return; // NOTREACHED
}
}
2010-07-06 14:07:28 +02:00
if(($a->argc == 2) && intval($a->argv[1])) {
$contact_id = intval($a->argv[1]);
$r = q("SELECT * FROM `contact` WHERE `uid` = %d and `id` = %d LIMIT 1",
$_SESSION['uid'],
intval($contact_id)
);
if(! count($r)) {
notice("Contact not found.");
return;
}
require_once('view/contact_selectors.php');
$tpl = file_get_contents("view/contact_edit.tpl");
2010-07-11 08:03:54 +02:00
$direction = '';
if(strlen($r[0]['issued-id'])) {
if(strlen($r[0]['dfrn-id'])) {
$direction = DIRECTION_BOTH;
$dir_icon = 'images/lrarrow.gif';
$alt_text = 'Mutual Friendship';
}
else {
$direction = DIRECTION_IN;
$dir_icon = 'images/larrow.gif';
$alt_text = 'is a fan of yours';
}
}
else {
$direction = DIRECTION_OUT;
$dir_icon = 'images/rarrow.gif';
$alt_text = 'you are a fan of';
}
2010-07-06 14:07:28 +02:00
$o .= replace_macros($tpl,array(
'$profile_select' => contact_profile_assign($r[0]['profile-id']),
'$contact_id' => $r[0]['id'],
2010-07-11 08:03:54 +02:00
'$block_text' => (($r[0]['blocked']) ? 'Unblock this contact' : 'Block this contact' ),
'$blocked' => (($r[0]['blocked']) ? '<div id="block-message">Currently blocked</div>' : ''),
'$rating' => contact_reputation($r[0]['rating']),
2010-07-06 14:07:28 +02:00
'$reason' => $r[0]['reason'],
2010-07-11 08:03:54 +02:00
'$groups' => '', // group_selector(),
2010-07-06 14:07:28 +02:00
'$photo' => $r[0]['photo'],
'$name' => $r[0]['name'],
'$dir_icon' => $dir_icon,
2010-07-11 12:35:33 +02:00
'$alt_text' => $alt_text,
'$url' => (($direction != DIRECTION_IN) ? "redir/{$r[0]['id']}" : $r[0]['url'] )
2010-07-06 14:07:28 +02:00
));
return $o;
}
2010-07-19 14:24:22 +02:00
dbg(2);
2010-07-06 14:07:28 +02:00
if(($a->argc == 2) && ($a->argv[1] == 'all'))
2010-07-02 01:48:07 +02:00
$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')
));
2010-07-03 03:55:43 +02:00
switch($sort_type) {
case DIRECTION_BOTH :
2010-07-19 14:24:22 +02:00
$sql_extra2 = " AND `dfrn-id` != '' AND `issued-id` != '' ";
2010-07-03 03:55:43 +02:00
break;
case DIRECTION_IN :
2010-07-19 14:24:22 +02:00
$sql_extra2 = " AND `dfrn-id` = '' AND `issued-id` != '' ";
2010-07-03 03:55:43 +02:00
break;
case DIRECTION_OUT :
2010-07-19 14:24:22 +02:00
$sql_extra2 = " AND `dfrn-id` != '' AND `issued-id` = '' ";
2010-07-03 03:55:43 +02:00
break;
case DIRECTION_ANY :
default:
2010-07-19 14:24:22 +02:00
$sql_extra2 = '';
2010-07-03 03:55:43 +02:00
break;
}
2010-07-02 01:48:07 +02:00
2010-07-19 14:24:22 +02:00
$r = q("SELECT * FROM `contact` WHERE `uid` = %d $sql_extra $sql_extra2 ",
2010-07-02 01:48:07 +02:00
intval($_SESSION['uid']));
if(count($r)) {
$tpl = file_get_contents("view/contact_template.tpl");
foreach($r as $rr) {
if($rr['self'])
continue;
$direction = '';
if(strlen($rr['issued-id'])) {
if(strlen($rr['dfrn-id'])) {
$direction = DIRECTION_BOTH;
$dir_icon = 'images/lrarrow.gif';
$alt_text = 'Mutual Friendship';
}
else {
$direction = DIRECTION_IN;
$dir_icon = 'images/larrow.gif';
$alt_text = 'is a fan of yours';
}
}
else {
$direction = DIRECTION_OUT;
$dir_icon = 'images/rarrow.gif';
$alt_text = 'you are a fan of';
}
2010-07-02 01:48:07 +02:00
$o .= replace_macros($tpl, array(
'$id' => $rr['id'],
'$alt_text' => $alt_text,
'$dir_icon' => $dir_icon,
2010-07-02 01:48:07 +02:00
'$thumb' => $rr['thumb'],
'$name' => $rr['name'],
'$url' => (($direction != DIRECTION_IN) ? "redir/{$rr['id']}" : $rr['url'] )
2010-07-02 01:48:07 +02:00
));
}
}
return $o;
}