| 
									
										
										
										
											2010-07-05 03:45:56 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-29 04:11:52 +00:00
										 |  |  | require_once('library/simplepie/simplepie.inc'); | 
					
						
							| 
									
										
										
										
											2010-07-19 03:49:10 +00:00
										 |  |  | require_once('include/items.php'); | 
					
						
							| 
									
										
										
										
											2011-06-14 02:06:49 +00:00
										 |  |  | require_once('include/event.php'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-16 08:26:42 +00:00
										 |  |  | function dfrn_notify_post(&$a) { | 
					
						
							| 
									
										
										
										
											2012-10-31 16:13:45 +00:00
										 |  |  |     logger(__function__, LOGGER_TRACE); | 
					
						
							| 
									
										
										
										
											2010-12-01 02:32:34 +00:00
										 |  |  | 	$dfrn_id      = ((x($_POST,'dfrn_id'))      ? notags(trim($_POST['dfrn_id']))   : ''); | 
					
						
							|  |  |  | 	$dfrn_version = ((x($_POST,'dfrn_version')) ? (float) $_POST['dfrn_version']    : 2.0); | 
					
						
							|  |  |  | 	$challenge    = ((x($_POST,'challenge'))    ? notags(trim($_POST['challenge'])) : ''); | 
					
						
							|  |  |  | 	$data         = ((x($_POST,'data'))         ? $_POST['data']                    : ''); | 
					
						
							|  |  |  | 	$key          = ((x($_POST,'key'))          ? $_POST['key']                     : ''); | 
					
						
							| 
									
										
										
										
											2011-01-25 11:57:10 +00:00
										 |  |  | 	$dissolve     = ((x($_POST,'dissolve'))     ? intval($_POST['dissolve'])        :  0); | 
					
						
							| 
									
										
										
										
											2011-04-11 01:38:55 +00:00
										 |  |  | 	$perm         = ((x($_POST,'perm'))         ? notags(trim($_POST['perm']))      : 'r'); | 
					
						
							| 
									
										
										
										
											2012-03-15 03:36:23 +00:00
										 |  |  | 	$ssl_policy   = ((x($_POST,'ssl_policy'))   ? notags(trim($_POST['ssl_policy'])): 'none'); | 
					
						
							| 
									
										
										
										
											2012-03-15 23:38:26 +00:00
										 |  |  | 	$page         = ((x($_POST,'page'))         ? intval($_POST['page'])            :  0); | 
					
						
							| 
									
										
										
										
											2011-04-11 01:38:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-30 05:57:15 +00:00
										 |  |  | 	$forum = (($page == 1) ? 1 : 0); | 
					
						
							|  |  |  | 	$prv   = (($page == 2) ? 1 : 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-11 01:38:55 +00:00
										 |  |  | 	$writable = (-1); | 
					
						
							|  |  |  | 	if($dfrn_version >= 2.21) { | 
					
						
							|  |  |  | 		$writable = (($perm === 'rw') ? 1 : 0); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-09-13 04:25:37 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	$direction = (-1); | 
					
						
							|  |  |  | 	if(strpos($dfrn_id,':') == 1) { | 
					
						
							|  |  |  | 		$direction = intval(substr($dfrn_id,0,1)); | 
					
						
							|  |  |  | 		$dfrn_id = substr($dfrn_id,2); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-05 03:45:56 +00:00
										 |  |  | 	$r = q("SELECT * FROM `challenge` WHERE `dfrn-id` = '%s' AND `challenge` = '%s' LIMIT 1", | 
					
						
							|  |  |  | 		dbesc($dfrn_id), | 
					
						
							|  |  |  | 		dbesc($challenge) | 
					
						
							|  |  |  | 	); | 
					
						
							| 
									
										
										
										
											2010-11-23 23:55:11 +00:00
										 |  |  | 	if(! count($r)) { | 
					
						
							| 
									
										
										
										
											2011-02-04 01:40:04 +00:00
										 |  |  | 		logger('dfrn_notify: could not match challenge to dfrn_id ' . $dfrn_id . ' challenge=' . $challenge); | 
					
						
							| 
									
										
										
										
											2010-07-05 03:45:56 +00:00
										 |  |  | 		xml_status(3); | 
					
						
							| 
									
										
										
										
											2010-11-23 23:55:11 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-07-05 03:45:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	$r = q("DELETE FROM `challenge` WHERE `dfrn-id` = '%s' AND `challenge` = '%s' LIMIT 1", | 
					
						
							|  |  |  | 		dbesc($dfrn_id), | 
					
						
							|  |  |  | 		dbesc($challenge) | 
					
						
							|  |  |  | 	); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-16 08:26:42 +00:00
										 |  |  | 	// find the local user who owns this relationship.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-13 04:25:37 +00:00
										 |  |  | 	$sql_extra = ''; | 
					
						
							|  |  |  | 	switch($direction) { | 
					
						
							|  |  |  | 		case (-1): | 
					
						
							| 
									
										
										
										
											2010-10-18 23:38:48 +00:00
										 |  |  | 			$sql_extra = sprintf(" AND ( `issued-id` = '%s' OR `dfrn-id` = '%s' ) ", dbesc($dfrn_id), dbesc($dfrn_id)); | 
					
						
							| 
									
										
										
										
											2010-09-13 04:25:37 +00:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		case 0: | 
					
						
							|  |  |  | 			$sql_extra = sprintf(" AND `issued-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id)); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 1: | 
					
						
							|  |  |  | 			$sql_extra = sprintf(" AND `dfrn-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id)); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 			xml_status(3); | 
					
						
							|  |  |  | 			break; // NOTREACHED
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 		  | 
					
						
							| 
									
										
										
										
											2011-08-21 01:27:12 +00:00
										 |  |  | 	// be careful - $importer will contain both the contact information for the contact
 | 
					
						
							|  |  |  | 	// sending us the post, and also the user information for the person receiving it.
 | 
					
						
							|  |  |  | 	// since they are mixed together, it is easy to get them confused.
 | 
					
						
							| 
									
										
										
										
											2010-09-13 04:25:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-13 22:55:48 +00:00
										 |  |  | 	$r = q("SELECT	`contact`.*, `contact`.`uid` AS `importer_uid`, 
 | 
					
						
							|  |  |  | 					`contact`.`pubkey` AS `cpubkey`,  | 
					
						
							|  |  |  | 					`contact`.`prvkey` AS `cprvkey`,  | 
					
						
							|  |  |  | 					`contact`.`thumb` AS `thumb`,  | 
					
						
							|  |  |  | 					`contact`.`url` as `url`, | 
					
						
							|  |  |  | 					`contact`.`name` as `senderName`, | 
					
						
							|  |  |  | 					`user`.*  | 
					
						
							|  |  |  | 			FROM `contact`  | 
					
						
							|  |  |  | 			LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid`  | 
					
						
							|  |  |  | 			WHERE `contact`.`blocked` = 0 AND `contact`.`pending` = 0  | 
					
						
							| 
									
										
										
										
											2012-11-02 20:43:47 +00:00
										 |  |  | 				AND `user`.`nickname` = '%s' AND `user`.`account_expired` = 0 AND `user`.`account_removed` = 0 $sql_extra LIMIT 1",
 | 
					
						
							| 
									
										
										
										
											2010-10-18 23:38:48 +00:00
										 |  |  | 		dbesc($a->argv[1]) | 
					
						
							| 
									
										
										
										
											2010-07-16 08:26:42 +00:00
										 |  |  | 	); | 
					
						
							| 
									
										
										
										
											2010-08-17 05:05:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-28 05:32:21 +00:00
										 |  |  | 	if(! count($r)) { | 
					
						
							| 
									
										
										
										
											2010-11-23 23:55:11 +00:00
										 |  |  | 		logger('dfrn_notify: contact not found for dfrn_id ' . $dfrn_id); | 
					
						
							| 
									
										
										
										
											2010-07-16 08:26:42 +00:00
										 |  |  | 		xml_status(3); | 
					
						
							| 
									
										
										
										
											2010-10-04 11:22:34 +00:00
										 |  |  | 		//NOTREACHED
 | 
					
						
							| 
									
										
										
										
											2010-07-28 05:32:21 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-07-16 08:26:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-25 11:57:10 +00:00
										 |  |  | 	// $importer in this case contains the contact record for the remote contact joined with the user record of our user. 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-16 08:26:42 +00:00
										 |  |  | 	$importer = $r[0]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-30 05:57:15 +00:00
										 |  |  | 	if((($writable != (-1)) && ($writable != $importer['writable'])) || ($importer['forum'] != $forum) || ($importer['prv'] != $prv)) { | 
					
						
							|  |  |  | 		q("UPDATE `contact` SET `writable` = %d, forum = %d, prv = %d WHERE `id` = %d LIMIT 1", | 
					
						
							| 
									
										
										
										
											2012-03-15 23:38:26 +00:00
										 |  |  | 			intval(($writable == (-1)) ? $importer['writable'] : $writable), | 
					
						
							| 
									
										
										
										
											2012-05-30 05:57:15 +00:00
										 |  |  | 			intval($forum), | 
					
						
							|  |  |  | 			intval($prv), | 
					
						
							| 
									
										
										
										
											2011-04-11 02:29:21 +00:00
										 |  |  | 			intval($importer['id']) | 
					
						
							|  |  |  | 		); | 
					
						
							| 
									
										
										
										
											2012-03-15 23:38:26 +00:00
										 |  |  | 		if($writable != (-1)) | 
					
						
							|  |  |  | 			$importer['writable'] = $writable; | 
					
						
							|  |  |  | 		$importer['forum'] = $page; | 
					
						
							| 
									
										
										
										
											2011-04-11 02:29:21 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-15 03:36:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-03 06:07:26 +00:00
										 |  |  | 	// if contact's ssl policy changed, update our links
 | 
					
						
							| 
									
										
										
										
											2012-03-15 03:36:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-03 06:07:26 +00:00
										 |  |  | 	fix_contact_ssl_policy($importer,$ssl_policy); | 
					
						
							| 
									
										
										
										
											2012-03-29 00:21:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-23 23:55:11 +00:00
										 |  |  | 	logger('dfrn_notify: received notify from ' . $importer['name'] . ' for ' . $importer['username']); | 
					
						
							|  |  |  | 	logger('dfrn_notify: data: ' . $data, LOGGER_DATA); | 
					
						
							| 
									
										
										
										
											2010-10-04 11:22:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-26 10:32:00 +00:00
										 |  |  | 	if($dissolve == 1) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/** | 
					
						
							|  |  |  | 		 * Relationship is dissolved permanently | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		require_once('include/Contact.php');  | 
					
						
							|  |  |  | 		contact_remove($importer['id']); | 
					
						
							|  |  |  | 		logger('relationship dissolved : ' . $importer['name'] . ' dissolved ' . $importer['username']); | 
					
						
							|  |  |  | 		xml_status(0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-29 00:21:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// If we are setup as a soapbox we aren't accepting input from this person
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if($importer['page-flags'] == PAGE_SOAPBOX) | 
					
						
							|  |  |  | 		xml_status(0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-01 02:32:34 +00:00
										 |  |  | 	if(strlen($key)) { | 
					
						
							|  |  |  | 		$rawkey = hex2bin(trim($key)); | 
					
						
							|  |  |  | 		logger('rino: md5 raw key: ' . md5($rawkey)); | 
					
						
							|  |  |  | 		$final_key = ''; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-02 06:45:46 +00:00
										 |  |  | 		if($dfrn_version >= 2.1) { | 
					
						
							| 
									
										
										
										
											2011-02-02 05:21:47 +00:00
										 |  |  | 			if((($importer['duplex']) && strlen($importer['cprvkey'])) || (! strlen($importer['cpubkey']))) { | 
					
						
							|  |  |  | 				openssl_private_decrypt($rawkey,$final_key,$importer['cprvkey']); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			else { | 
					
						
							|  |  |  | 				openssl_public_decrypt($rawkey,$final_key,$importer['cpubkey']); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2010-12-01 02:32:34 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		else { | 
					
						
							| 
									
										
										
										
											2011-02-02 05:21:47 +00:00
										 |  |  | 			if((($importer['duplex']) && strlen($importer['cpubkey'])) || (! strlen($importer['cprvkey']))) { | 
					
						
							|  |  |  | 				openssl_public_decrypt($rawkey,$final_key,$importer['cpubkey']); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			else { | 
					
						
							|  |  |  | 				openssl_private_decrypt($rawkey,$final_key,$importer['cprvkey']); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2010-12-01 02:32:34 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		logger('rino: received key : ' . $final_key); | 
					
						
							|  |  |  | 		$data = aes_decrypt(hex2bin($data),$final_key); | 
					
						
							|  |  |  | 		logger('rino: decrypted data: ' . $data, LOGGER_DATA); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-25 11:57:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-07 02:10:57 +00:00
										 |  |  | 	$ret = local_delivery($importer,$data); | 
					
						
							|  |  |  | 	xml_status($ret); | 
					
						
							| 
									
										
										
										
											2010-07-16 08:26:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-04 11:22:34 +00:00
										 |  |  | 	// NOTREACHED
 | 
					
						
							| 
									
										
										
										
											2010-07-05 03:45:56 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function dfrn_notify_content(&$a) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if(x($_GET,'dfrn_id')) { | 
					
						
							| 
									
										
										
										
											2010-09-13 04:25:37 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// initial communication from external contact, $direction is their direction.
 | 
					
						
							|  |  |  | 		// If this is a duplex communication, ours will be the opposite.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		$dfrn_id = notags(trim($_GET['dfrn_id'])); | 
					
						
							| 
									
										
										
										
											2010-10-13 03:29:04 +00:00
										 |  |  | 		$dfrn_version = (float) $_GET['dfrn_version']; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-23 23:55:11 +00:00
										 |  |  | 		logger('dfrn_notify: new notification dfrn_id=' . $dfrn_id); | 
					
						
							| 
									
										
										
										
											2010-09-13 04:25:37 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		$direction = (-1); | 
					
						
							|  |  |  | 		if(strpos($dfrn_id,':') == 1) { | 
					
						
							|  |  |  | 			$direction = intval(substr($dfrn_id,0,1)); | 
					
						
							|  |  |  | 			$dfrn_id = substr($dfrn_id,2); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-05 03:45:56 +00:00
										 |  |  | 		$hash = random_string(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		$status = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		$r = q("DELETE FROM `challenge` WHERE `expire` < " . intval(time())); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		$r = q("INSERT INTO `challenge` ( `challenge`, `dfrn-id`, `expire` )
 | 
					
						
							| 
									
										
										
										
											2011-02-04 01:40:04 +00:00
										 |  |  | 			VALUES( '%s', '%s', %d ) ",
 | 
					
						
							| 
									
										
										
										
											2010-07-05 03:45:56 +00:00
										 |  |  | 			dbesc($hash), | 
					
						
							| 
									
										
										
										
											2010-09-13 04:25:37 +00:00
										 |  |  | 			dbesc($dfrn_id), | 
					
						
							| 
									
										
										
										
											2011-02-04 01:40:04 +00:00
										 |  |  | 			intval(time() + 90 ) | 
					
						
							| 
									
										
										
										
											2010-07-05 03:45:56 +00:00
										 |  |  | 		); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-19 10:30:59 +00:00
										 |  |  | 		logger('dfrn_notify: challenge=' . $hash, LOGGER_DEBUG ); | 
					
						
							| 
									
										
										
										
											2010-09-13 04:25:37 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		$sql_extra = ''; | 
					
						
							|  |  |  | 		switch($direction) { | 
					
						
							|  |  |  | 			case (-1): | 
					
						
							| 
									
										
										
										
											2010-10-18 23:38:48 +00:00
										 |  |  | 				$sql_extra = sprintf(" AND ( `issued-id` = '%s' OR `dfrn-id` = '%s' ) ", dbesc($dfrn_id), dbesc($dfrn_id)); | 
					
						
							| 
									
										
										
										
											2010-09-13 04:25:37 +00:00
										 |  |  | 				$my_id = $dfrn_id; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			case 0: | 
					
						
							|  |  |  | 				$sql_extra = sprintf(" AND `issued-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id)); | 
					
						
							|  |  |  | 				$my_id = '1:' . $dfrn_id; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			case 1: | 
					
						
							|  |  |  | 				$sql_extra = sprintf(" AND `dfrn-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id)); | 
					
						
							|  |  |  | 				$my_id = '0:' . $dfrn_id; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			default: | 
					
						
							|  |  |  | 				$status = 1; | 
					
						
							|  |  |  | 				break; // NOTREACHED
 | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-29 00:21:56 +00:00
										 |  |  | 		$r = q("SELECT `contact`.*, `user`.`nickname`, `user`.`page-flags` FROM `contact` LEFT JOIN `user` ON `user`.`uid` = `contact`.`uid` 
 | 
					
						
							| 
									
										
										
										
											2011-09-19 08:17:12 +00:00
										 |  |  | 				WHERE `contact`.`blocked` = 0 AND `contact`.`pending` = 0 AND `user`.`nickname` = '%s'  | 
					
						
							| 
									
										
										
										
											2012-11-02 20:43:47 +00:00
										 |  |  | 				AND `user`.`account_expired` = 0 AND `user`.`account_removed` = 0 $sql_extra LIMIT 1",
 | 
					
						
							| 
									
										
										
										
											2010-10-18 23:38:48 +00:00
										 |  |  | 				dbesc($a->argv[1]) | 
					
						
							|  |  |  | 		); | 
					
						
							| 
									
										
										
										
											2010-09-13 04:25:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-02 07:31:11 +00:00
										 |  |  | 		if(! count($r)) | 
					
						
							| 
									
										
										
										
											2010-07-05 03:45:56 +00:00
										 |  |  | 			$status = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		$challenge = ''; | 
					
						
							| 
									
										
										
										
											2010-08-05 09:57:03 +00:00
										 |  |  | 		$encrypted_id = ''; | 
					
						
							| 
									
										
										
										
											2010-09-13 04:25:37 +00:00
										 |  |  | 		$id_str = $my_id . '.' . mt_rand(1000,9999); | 
					
						
							| 
									
										
										
										
											2010-08-05 09:57:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-20 04:24:16 +00:00
										 |  |  | 		$prv_key = trim($r[0]['prvkey']); | 
					
						
							|  |  |  | 		$pub_key = trim($r[0]['pubkey']); | 
					
						
							|  |  |  | 		$dplx = intval($r[0]['duplex']); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if((($dplx) && (strlen($prv_key))) || ((strlen($prv_key)) && (!(strlen($pub_key))))) { | 
					
						
							|  |  |  | 			openssl_private_encrypt($hash,$challenge,$prv_key); | 
					
						
							|  |  |  | 			openssl_private_encrypt($id_str,$encrypted_id,$prv_key); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2011-09-21 12:43:26 +00:00
										 |  |  | 		elseif(strlen($pub_key)) { | 
					
						
							| 
									
										
										
										
											2011-09-20 04:24:16 +00:00
										 |  |  | 			openssl_public_encrypt($hash,$challenge,$pub_key); | 
					
						
							|  |  |  | 			openssl_public_encrypt($id_str,$encrypted_id,$pub_key); | 
					
						
							| 
									
										
										
										
											2011-02-02 05:21:47 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2011-09-21 12:43:26 +00:00
										 |  |  | 		else | 
					
						
							|  |  |  | 			$status = 1; | 
					
						
							| 
									
										
										
										
											2010-09-02 07:31:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		$challenge    = bin2hex($challenge); | 
					
						
							| 
									
										
										
										
											2010-08-05 09:57:03 +00:00
										 |  |  | 		$encrypted_id = bin2hex($encrypted_id); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-01 21:39:00 +00:00
										 |  |  | 		$rino = ((function_exists('mcrypt_encrypt')) ? 1 : 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		$rino_enable = get_config('system','rino_encrypt'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if(! $rino_enable) | 
					
						
							|  |  |  | 			$rino = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-29 00:21:56 +00:00
										 |  |  | 		if((($r[0]['rel']) && ($r[0]['rel'] != CONTACT_IS_SHARING)) || ($r[0]['page-flags'] == PAGE_COMMUNITY)) { | 
					
						
							|  |  |  | 			$perm = 'rw'; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else { | 
					
						
							|  |  |  | 			$perm = 'r'; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2010-12-01 21:39:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-13 03:29:04 +00:00
										 |  |  | 		header("Content-type: text/xml"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		echo '<?xml version="1.0" encoding="UTF-8"?>' . "\r\n"  | 
					
						
							|  |  |  | 			. '<dfrn_notify>' . "\r\n" | 
					
						
							|  |  |  | 			. "\t" . '<status>' . $status . '</status>' . "\r\n" | 
					
						
							|  |  |  | 			. "\t" . '<dfrn_version>' . DFRN_PROTOCOL_VERSION . '</dfrn_version>' . "\r\n" | 
					
						
							| 
									
										
										
										
											2012-03-29 00:21:56 +00:00
										 |  |  | 			. "\t" . '<rino>' . $rino . '</rino>' . "\r\n" | 
					
						
							|  |  |  | 			. "\t" . '<perm>' . $perm . '</perm>' . "\r\n"  | 
					
						
							| 
									
										
										
										
											2010-10-13 03:29:04 +00:00
										 |  |  | 			. "\t" . '<dfrn_id>' . $encrypted_id . '</dfrn_id>' . "\r\n"  | 
					
						
							|  |  |  | 			. "\t" . '<challenge>' . $challenge . '</challenge>' . "\r\n" | 
					
						
							|  |  |  | 			. '</dfrn_notify>' . "\r\n" ; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-04 11:22:34 +00:00
										 |  |  | 		killme(); | 
					
						
							| 
									
										
										
										
											2010-07-05 03:45:56 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-04 11:22:34 +00:00
										 |  |  | } |