aboutsummaryrefslogtreecommitdiffstats
path: root/mod/contacts.php
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-07-10 23:03:54 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-07-10 23:03:54 -0700
commita42c9616f97125b059f395b9b023fe1516a52d75 (patch)
treeefbdee7ae3b880367c8a59ac50111b2f097e11d5 /mod/contacts.php
parentb9bbe0cec290e9d5c3363ff272aa89de4716345d (diff)
downloadvolse-hubzilla-a42c9616f97125b059f395b9b023fe1516a52d75.tar.gz
volse-hubzilla-a42c9616f97125b059f395b9b023fe1516a52d75.tar.bz2
volse-hubzilla-a42c9616f97125b059f395b9b023fe1516a52d75.zip
contact editor
Diffstat (limited to 'mod/contacts.php')
-rw-r--r--mod/contacts.php170
1 files changed, 122 insertions, 48 deletions
diff --git a/mod/contacts.php b/mod/contacts.php
index e1b6c4919..38b49475a 100644
--- a/mod/contacts.php
+++ b/mod/contacts.php
@@ -6,61 +6,55 @@ function edit_contact(&$a,$contact_id) {
function contacts_post(&$a) {
- if(($a->argc != 3) || (! local_user()))
+ if(! 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",
+dbg(2);
+print_r($_POST);
+ $orig_record = 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 LIMIT 1",
- intval($contact_id)
- );
+ if(! count($orig_record)) {
+ notice("Could not access contact record." . EOL);
+ goaway($a->get_baseurl() . '/contacts');
+ return; // NOTREACHED
+ }
- break;
- default:
+ $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);
return;
- break;
+ }
}
+ $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;
}
@@ -75,6 +69,7 @@ function contacts_post(&$a) {
function contacts_content(&$a) {
+
if(! local_user()) {
$_SESSION['sysmsg'] .= "Permission denied." . EOL;
return;
@@ -82,6 +77,67 @@ function contacts_content(&$a) {
+ 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
+ }
+ }
if(($a->argc == 2) && intval($a->argv[1])) {
@@ -99,13 +155,33 @@ function contacts_content(&$a) {
$tpl = file_get_contents("view/contact_edit.tpl");
+ $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';
+ }
+
$o .= replace_macros($tpl,array(
'$profile_select' => contact_profile_assign($r[0]['profile-id']),
'$contact_id' => $r[0]['id'],
- '$blocked' => $r[0]['blocked'],
- '$rating' => $r[0]['rating'],
+ '$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']),
'$reason' => $r[0]['reason'],
- // '$groups' => group_selector(),
+ '$groups' => '', // group_selector(),
'$photo' => $r[0]['photo'],
'$name' => $r[0]['name'],
'$dir_icon' => $dir_icon,
@@ -184,6 +260,4 @@ function contacts_content(&$a) {
}
}
return $o;
-
-
} \ No newline at end of file