add a bit more logging to friend accept

This commit is contained in:
Friendika 2010-11-18 20:58:46 -08:00
parent 3b7dc43d3b
commit e0b392b06e
1 changed files with 13 additions and 0 deletions

View File

@ -2,6 +2,7 @@
// There are two possible entry points. // There are two possible entry points.
function dfrn_confirm_post(&$a,$handsfree = null) { function dfrn_confirm_post(&$a,$handsfree = null) {
if(is_array($handsfree)) { if(is_array($handsfree)) {
@ -56,6 +57,8 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
$cid = intval($_POST['contact_id']); $cid = intval($_POST['contact_id']);
} }
logger('dfrn_confirm: Confirming request for dfrn_id ' . $dfrn_id);
// The other person will have been issued an ID when they first requested friendship. // The other person will have been issued an ID when they first requested friendship.
// Locate their record. At this time, their record will have both pending and blocked set to 1. // Locate their record. At this time, their record will have both pending and blocked set to 1.
// There won't be any dfrn_id if this is a network follower, so use the contact_id instead. // There won't be any dfrn_id if this is a network follower, so use the contact_id instead.
@ -148,10 +151,14 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
if($duplex == 1) if($duplex == 1)
$params['duplex'] = 1; $params['duplex'] = 1;
logger('dfrn_confirm: Confirm: posted data: ' . print_r($params,true), LOGGER_DATA);
// POST all this stuff to the other site. // POST all this stuff to the other site.
$res = post_url($dfrn_confirm,$params); $res = post_url($dfrn_confirm,$params);
logger('dfrn_confirm: Confirm: received data: ' . $res, LOGGER_DATA);
// Now figure out what they responded. Try to be robust if the remote site is // Now figure out what they responded. Try to be robust if the remote site is
// having difficulty and throwing up errors of some kind. // having difficulty and throwing up errors of some kind.
@ -231,6 +238,8 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
require_once("Photo.php"); require_once("Photo.php");
$photos = import_profile_photo($contact['photo'],$uid,$contact_id); $photos = import_profile_photo($contact['photo'],$uid,$contact_id);
logger('dfrn_confirm: confirm - imported photos');
if($network === 'dfrn') { if($network === 'dfrn') {
@ -348,6 +357,8 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
$version_id = (float) $_POST['dfrn_version']; $version_id = (float) $_POST['dfrn_version'];
logger('dfrn_confirm: request: POST=' . print_r($_POST,true), LOGGER_DATA);
// If $aes_key is set, both of these items require unpacking from the hex transport encoding. // If $aes_key is set, both of these items require unpacking from the hex transport encoding.
if(x($aes_key)) { if(x($aes_key)) {
@ -453,6 +464,8 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
$photos = import_profile_photo($photo,$local_uid,$dfrn_record); $photos = import_profile_photo($photo,$local_uid,$dfrn_record);
logger('dfrn_confirm: request - photos imported');
$new_relation = REL_FAN; $new_relation = REL_FAN;
if(($relation == REL_VIP) || ($duplex)) if(($relation == REL_VIP) || ($duplex))
$new_relation = REL_BUD; $new_relation = REL_BUD;