5 function dfrn_confirm_post(&$a) {
10 if(x($_POST,'source_url')) {
12 // We are processing an external confirmation to an introduction created by our user.
14 $public_key = $_POST['public_key'];
15 $dfrn_id = $_POST['dfrn_id'];
16 $source_url = $_POST['source_url'];
17 $aes_key = $_POST['aes_key'];
19 // Find our user's account
21 $r = q("SELECT * FROM `user` WHERE `nickname` = '%s' LIMIT 1",
25 xml_status(3); // failure
28 $my_prvkey = $r[0]['prvkey'];
29 $local_uid = $r[0]['uid'];
31 $decrypted_source_url = "";
35 openssl_private_decrypt($source_url,$decrypted_source_url,$my_prvkey);
38 $ret = q("SELECT * FROM `contact` WHERE `url` = '%s' AND `uid` = %d LIMIT 1",
39 dbesc($decrypted_source_url),
43 // this is either a bogus confirmation or we deleted the original introduction.
47 // Decrypt all this stuff we just received
49 $foreign_pubkey = $ret[0]['site-pubkey'];
50 $dfrn_record = $ret[0]['id'];
51 $decrypted_dfrn_id = "";
52 openssl_public_decrypt($dfrn_id,$decrypted_dfrn_id,$foreign_pubkey);
54 if(strlen($aes_key)) {
55 $decrypted_aes_key = "";
56 openssl_private_decrypt($aes_key,$decrypted_aes_key,$my_prvkey);
57 $dfrn_pubkey = openssl_decrypt($public_key,'AES-256-CBC',$decrypted_aes_key);
60 $dfrn_pubkey = $public_key;
63 $r = q("SELECT * FROM `contact` WHERE `dfrn-id` = '%s' LIMIT 1",
64 dbesc($decrypted_dfrn_id),
67 xml_status(1); // Birthday paradox - duplicate dfrn-id
69 $r = q("UPDATE `contact` SET `dfrn-id` = '%s', `pubkey` = '%s' WHERE `id` = %d LIMIT 1",
70 dbesc($decrypted_dfrn_id),
72 intval($dfrn_record));
75 // We're good but now we have to scrape the profile photo and send notifications.
77 require_once("Photo.php");
79 $photo_failure = false;
81 $r = q("SELECT `photo` FROM `contact` WHERE `id` = %d LIMIT 1",
82 intval($dfrn_record));
85 $filename = basename($r[0]['photo']);
86 $img_str = fetch_url($r[0]['photo'],true);
87 $img = new Photo($img_str);
90 $img->scaleImageSquare(175);
92 $hash = hash('md5',uniqid(mt_rand(),true));
94 $r = q("INSERT INTO `photo` ( `uid`, `resource-id`, `created`, `edited`, `filename`,
95 `height`, `width`, `data`, `scale` )
96 VALUES ( %d, '%s', '%s', '%s', '%s', %d, %d, '%s', 4 )",
101 dbesc(basename($r[0]['photo'])),
102 intval($img->getHeight()),
103 intval($img->getWidth()),
104 dbesc($img->imageString())
107 $photo_failure = true;
109 $img->scaleImage(80);
110 $r = q("INSERT INTO `photo` ( `uid`, `resource-id`, `created`, `edited`, `filename`,
111 `height`, `width`, `data`, `scale` )
112 VALUES ( %d, '%s', '%s', '%s', '%s', %d, %d, '%s', 5 )",
117 dbesc(basename($r[0]['photo'])),
118 intval($img->getHeight()),
119 intval($img->getWidth()),
120 dbesc($img->imageString())
123 $photo_failure = true;
125 $photo = $a->get_baseurl() . '/photo/' . $hash . '-4.jpg';
126 $thumb = $a->get_baseurl() . '/photo/' . $hash . '-5.jpg';
130 $photo_failure = true;
133 $photo_failure = true;
136 $photo = $a->get_baseurl() . '/images/default-profile.jpg';
137 $thumb = $a->get_baseurl() . '/images/default-profile-sm.jpg';
140 $r = q("UPDATE `contact` SET `photo` = '%s', `thumb` = '%s', `blocked` = 0, `pending` = 0 WHERE `id` = %d LIMIT 1",
146 notice( t("Unable to set contact photo info.") . EOL);
148 // Otherwise everything seems to have worked and we are almost done. Yay!
149 // Send an email notification
151 $r = q("SELECT * FROM `contact` LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid`
152 WHERE `contact`.`id` = %d LIMIT 1",
153 intval($dfrn_record));
154 if((count($r)) && ($r[0]['notify-flags'] & NOTIFY_CONFIRM)) {
156 $tpl = file_get_contents('view/intro_complete_eml.tpl');
158 $email_tpl = replace_macros($tpl, array(
159 '$sitename' => $a->config['sitename'],
160 '$siteurl' => $a->get_baseurl(),
161 '$username' => $r[0]['username'],
162 '$email' => $r[0]['email'],
163 '$fn' => $r[0]['name'],
164 '$dfrn_url' => $r[0]['url'],
168 $res = mail($r[0]['email'], t("Introduction accepted at ") . $a->config['sitename'],
169 $email_tpl,t("From: Administrator@") . $_SERVER[SERVER_NAME] );
171 notice( t("Email notification failed.") . EOL );
174 xml_status(0); // Success
176 return; // NOTREACHED
179 xml_status(2); // Hopefully temporary problem that can be retried.
181 return; // NOTREACHED
183 ////////////////////// End of this scenario ///////////////////////////////////////////////
187 // We are processing a local confirmation initiated on this system by our user to an external introduction.
189 $uid = $_SESSION['uid'];
192 notice(t("Permission denied.") . EOL );
196 $dfrn_id = ((x($_POST,'dfrn_id')) ? notags(trim($_POST['dfrn_id'])) : "");
197 $intro_id = intval($_POST['intro_id']);
199 $r = q("SELECT * FROM `contact` WHERE `issued-id` = '%s' AND `uid` = %d LIMIT 1",
204 if((! $r) || (! count($r))) {
205 notice( t('Node does not exist.') . EOL );
209 $contact_id = $r[0]['id'];
210 $site_pubkey = $r[0]['site-pubkey'];
211 $dfrn_confirm = $r[0]['confirm'];
212 $aes_allow = $r[0]['aes_allow'];
214 $res=openssl_pkey_new(array(
215 'digest_alg' => 'whirlpool',
216 'private_key_bits' => 4096,
217 'encrypt_key' => false ));
222 openssl_pkey_export($res, $private_key);
225 $pubkey = openssl_pkey_get_details($res);
226 $public_key = $pubkey["key"];
228 $r = q("UPDATE `contact` SET `issued-pubkey` = '%s', `prvkey` = '%s' WHERE `id` = %d AND `uid` = %d LIMIT 1",
238 $src_aes_key = random_string();
241 openssl_private_encrypt($dfrn_id,$result,$a->user['prvkey']);
243 $params['dfrn_id'] = $result;
244 $params['public_key'] = $public_key;
247 openssl_public_encrypt($_SESSION['my_url'], $params['source_url'], $site_pubkey);
249 if($aes_allow && function_exists('openssl_encrypt')) {
250 openssl_public_encrypt($src_aes_key, $params['aes_key'], $site_pubkey);
251 $params['public_key'] = openssl_encrypt($public_key,'AES-256-CBC',$src_aes_key);
254 $res = post_url($dfrn_confirm,$params);
256 // uncomment the following two lines and comment the following xml/status lines
257 // to debug the remote confirmation section (when both confirmations
258 // and responses originate on this system)
263 $xml = simplexml_load_string($res);
264 $status = (int) $xml->status;
267 notice( t("Confirmation completed successfully") . EOL);
271 // birthday paradox - generate new dfrn-id and fall through.
273 $new_dfrn_id = random_string();
274 $r = q("UPDATE contact SET `issued-id` = '%s' WHERE `id` = %d AND `uid` = %d LIMIT 1",
281 notice( t("Temporary failure. Please wait and try again.") . EOL);
286 notice( t("Introduction failed or was revoked. Cannot complete.") . EOL);
290 if(($status == 0 || $status == 3) && ($intro_id)) {
292 //delete the notification
294 $r = q("DELETE FROM `intro` WHERE `id` = %d AND `uid` = %d LIMIT 1",
304 require_once("Photo.php");
306 $photo_failure = false;
308 $r = q("SELECT `photo` FROM `contact` WHERE `id` = %d LIMIT 1",
309 intval($contact_id));
312 $filename = basename($r[0]['photo']);
313 $img_str = fetch_url($r[0]['photo'],true);
314 $img = new Photo($img_str);
317 $img->scaleImageSquare(175);
319 $hash = hash('md5',uniqid(mt_rand(),true));
321 $r = q("INSERT INTO `photo` ( `uid`, `resource-id`, `created`, `edited`, `filename`,
322 `height`, `width`, `data`, `scale` )
323 VALUES ( %d, '%s', '%s', '%s', '%s', %d, %d, '%s', 4 )",
328 dbesc(basename($r[0]['photo'])),
329 intval($img->getHeight()),
330 intval($img->getWidth()),
331 dbesc($img->imageString())
334 $photo_failure = true;
335 $img->scaleImage(80);
336 $r = q("INSERT INTO `photo` ( `uid`, `resource-id`, `created`, `edited`, `filename`,
337 `height`, `width`, `data`, `scale` )
338 VALUES ( %d, '%s', '%s', '%s', '%s', %d, %d, '%s', 5 )",
343 dbesc(basename($r[0]['photo'])),
344 intval($img->getHeight()),
345 intval($img->getWidth()),
346 dbesc($img->imageString())
349 $photo_failure = true;
351 $photo = $a->get_baseurl() . '/photo/' . $hash . '-4.jpg';
352 $thumb = $a->get_baseurl() . '/photo/' . $hash . '-5.jpg';
356 $photo_failure = true;
359 $photo_failure = true;
362 $photo = $a->get_baseurl() . '/images/default-profile.jpg';
363 $thumb = $a->get_baseurl() . '/images/default-profile-sm.jpg';
366 $r = q("UPDATE `contact` SET `photo` = '%s', `thumb` = '%s', `blocked` = 0, `pending` = 0 WHERE `id` = %d LIMIT 1",
372 notice( t("Unable to set contact photo info.") . EOL);
374 goaway($a->get_baseurl() . '/contacts/' . intval($contact_id));