]> git.mxchange.org Git - friendica.git/blob - mod/dfrn_request.php
ddf495986d842433bdb414507b67ccae058df1fe
[friendica.git] / mod / dfrn_request.php
1 <?php
2
3 if(! function_exists('dfrn_request_init')) {
4 function dfrn_request_init(&$a) {
5
6         if($a->argc > 1)
7                 $which = $a->argv[1];
8
9         require_once('mod/profile.php');
10         profile_init($a,$which);
11
12         return;
13 }}
14
15
16 if(! function_exists('dfrn_request_post')) {
17 function dfrn_request_post(&$a) {
18
19         if(($a->argc != 2) || (! count($a->profile)))
20                 return;
21
22
23         if($_POST['cancel']) {
24                 goaway($a->get_baseurl());
25         } 
26
27
28         // We've introduced ourself to another cell, then have been returned to our own cell
29         // to confirm the request, and then we've clicked submit (perhaps after logging in). 
30         // That brings us here:
31
32         if((x($_POST,'localconfirm')) && ($_POST['localconfirm'] == 1)) {
33
34                 // Ensure this is a valid request
35  
36                 if(local_user() && ($a->user['nickname'] == $a->argv[1]) && (x($_POST,'dfrn_url'))) {
37
38
39                         $dfrn_url = notags(trim($_POST['dfrn_url']));
40                         $aes_allow = (((x($_POST,'aes_allow')) && ($_POST['aes_allow'] == 1)) ? 1 : 0);
41                         $confirm_key = ((x($_POST,'confirm_key')) ? $_POST['confirm_key'] : "");
42
43                         $contact_record = null;
44         
45                         if(x($dfrn_url)) {
46         
47                                 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `url` = '%s' AND `self` = 0 LIMIT 1",
48                                         intval(local_user()),
49                                         dbesc($dfrn_url)
50                                 );
51         
52                                 if(count($r)) {
53                                         if(strlen($r[0]['dfrn-id'])) {
54                                                 notice( t("This introduction has already been accepted.") . EOL );
55                                                 return;
56                                         }
57                                         else
58                                                 $contact_record = $r[0];
59                                 }
60         
61                                 if(is_array($contact_record)) {
62                                         $r = q("UPDATE `contact` SET `ret-aes` = %d WHERE `id` = %d LIMIT 1",
63                                                 intval($aes_allow),
64                                                 intval($contact_record['id'])
65                                         );
66                                 }
67                                 else {
68         
69                                         require_once('Scrape.php');
70         
71         
72                                         $parms = scrape_dfrn($dfrn_url);
73         
74                                         if(! count($parms)) {
75                                                 notice( t('Profile location is not valid or does not contain profile information.') . EOL );
76                                                 return;
77                                         }
78                                         else {
79                                                 if(! x($parms,'fn'))
80                                                         notice( t('Warning: profile location has no identifiable owner name.') . EOL );
81                                                 if(! x($parms,'photo'))
82                                                         notice( t('Warning: profile location has no profile photo.') . EOL );
83                                                 $invalid = validate_dfrn($parms);               
84                                                 if($invalid) {
85                                                         notice( $invalid . t(' required parameter') 
86                                                                 . (($invalid == 1) ? t(" was ") : t("s were ") )
87                                                                 . t("not found at the given location.") . EOL ) ;
88                                                         return;
89                                                 }
90                                         }
91
92
93
94                                         $dfrn_request = $parms['dfrn-request'];
95
96                                         dbesc_array($parms);
97
98
99                                         $r = q("INSERT INTO `contact` ( `uid`, `created`,`url`, `name`, `nick`, `photo`, `site-pubkey`,
100                                                 `request`, `confirm`, `notify`, `poll`, `aes_allow`) 
101                                                 VALUES ( %d, '%s', '%s', '%s' , '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d)",
102                                                 intval(local_user()),
103                                                 datetime_convert(),
104                                                 dbesc($dfrn_url),
105                                                 $parms['fn'],
106                                                 $parms['nick'],
107                                                 $parms['photo'],
108                                                 $parms['key'],
109                                                 $parms['dfrn-request'],
110                                                 $parms['dfrn-confirm'],
111                                                 $parms['dfrn-notify'],
112                                                 $parms['dfrn-poll'],
113                                                 intval($aes_allow)
114                                         );
115                                 }
116
117                                 if($r) {
118                                         notice( t("Introduction complete.") . EOL);
119                                 }
120
121                                 // Allow the blocked remote notification to complete
122
123                                 if(is_array($contact_record))
124                                         $dfrn_request = $contact_record['request'];
125
126                                 if(strlen($dfrn_request) && strlen($confirm_key))
127                                         $s = fetch_url($dfrn_request . '?confirm_key=' . $confirm_key);
128                                         // ignore reply
129                                 goaway($dfrn_url);
130                                 return; // NOTREACHED
131
132                         }
133
134                 }
135
136                 // invalid/bogus request
137
138                 notice( t('Unrecoverable protocol error.') . EOL );
139                 goaway($a->get_baseurl());
140                 return; // NOTREACHED
141         }
142
143         // Otherwise:
144
145         // We are the requestee. A person from a remote cell has made an introduction 
146         // on our profile web page and clicked submit. We will use their DFRN-URL to 
147         // figure out how to contact their cell.  
148
149         // Scrape the originating DFRN-URL for everything we need. Create a contact record
150         // and an introduction to show our user next time he/she logs in.
151         // Finally redirect back to the requestor so that their site can record the request.
152         // If our user (the requestee) later confirms this request, a record of it will need 
153         // to exist on the requestor's cell in order for the confirmation process to complete.. 
154
155         // It's possible that neither the requestor or the requestee are logged in at the moment,
156         // and the requestor does not yet have any credentials to the requestee profile.
157
158         // Who is the requestee? We've already loaded their profile which means their nickname should be
159         // in $a->argv[1] and we should have their complete info in $a->profile.
160
161         if(! (is_array($a->profile) && count($a->profile))) {
162                 notice( t('Profile unavailable.') . EOL);
163                 return;
164         }
165
166         $nickname = $a->profile['nickname'];
167         $notify_flags = $a->profile['notify-flags'];
168         $uid = $a->profile['uid'];
169
170         $contact_record = null;
171         $failed = false;
172         $parms = null;
173
174
175         if( x($_POST,'dfrn_url')) {
176
177                 $url = trim($_POST['dfrn_url']);
178                 if(! strlen($url)) {
179                         notice( t("Invalid locator") . EOL );
180                         return;
181                 }
182
183                 // Canonicalise email-style profile locator
184
185                 $url = webfinger_dfrn($url);
186
187                 if(substr($url,0,5) === 'stat:') {
188                         $network = 'stat';
189                         $url = substr($url,5);
190                 }
191                 else {
192                         $network = 'dfrn';
193                 }
194
195                 if(! strlen($url)) {
196                         notice( t("Unable to resolve your name at the provided location.") . EOL);                      
197                         return;
198                 }
199
200
201                 if($network === 'dfrn') {
202                         $ret = q("SELECT * FROM `contact` WHERE `uid` = %d AND `url` = '%s' AND `self` = 0 LIMIT 1", 
203                                 intval($uid),
204                                 dbesc($url)
205                         );
206
207                         if(count($ret)) {
208                                 if(strlen($ret[0]['issued-id'])) {
209                                         notice( t('You have already introduced yourself here.') . EOL );
210                                         return;
211                                 }
212                                 elseif($ret[0]['rel'] == REL_BUD) {
213                                         notice( t('Apparently you are already friends with .') . $a->profile['name'] . EOL);
214                                         return;
215                                 }
216                                 else {
217                                         $contact_record = $ret[0];
218                                         $parms = array('dfrn-request' => $ret[0]['request']);
219                                 }
220                         }
221
222                         $issued_id = random_string();
223
224                         if(is_array($contact_record)) {
225                                 // There is a contact record but no issued-id, so this
226                                 // is a reciprocal introduction from a known contact
227                                 $r = q("UPDATE `contact` SET `issued-id` = '%s' WHERE `id` = %d LIMIT 1",
228                                         dbesc($issued_id),
229                                         intval($contact_record['id'])
230                                 );
231                         }
232                         else {
233                                 if(! validate_url($url)) {
234                                         notice( t('Invalid profile URL.') . EOL);
235                                         goaway($a->get_baseurl() . '/' . $a->cmd);
236                                         return; // NOTREACHED
237                                 }
238
239                                 if(! allowed_url($url)) {
240                                         notice( t('Disallowed profile URL.') . EOL);
241                                         goaway($a->get_baseurl() . '/' . $a->cmd);
242                                         return; // NOTREACHED
243                                 }
244                         
245
246                                 require_once('Scrape.php');
247
248                                 $parms = scrape_dfrn($url);
249
250                                 if(! count($parms)) {
251                                         notice( t('Profile location is not valid or does not contain profile information.') . EOL );
252                                         goaway($a->get_baseurl() . '/' . $a->cmd);
253                                 }
254                                 else {
255                                         if(! x($parms,'fn'))
256                                                 notice( t('Warning: profile location has no identifiable owner name.') . EOL );
257                                         if(! x($parms,'photo'))
258                                                 notice( t('Warning: profile location has no profile photo.') . EOL );
259                                         $invalid = validate_dfrn($parms);               
260                                         if($invalid) {
261                                                 notice( $invalid . t(' required parameter') 
262                                                         . (($invalid == 1) ? t(" was ") : t("s were ") )
263                                                         . t("not found at the given location.") . EOL ) ;
264         
265                                                 return;
266                                         }
267                                 }
268
269
270                                 $parms['url'] = $url;
271                                 $parms['issued-id'] = $issued_id;
272
273
274                                 dbesc_array($parms);
275                                 $r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `name`, `nick`, `issued-id`, `photo`, `site-pubkey`,
276                                         `request`, `confirm`, `notify`, `poll` )
277                                         VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s' )",
278                                         intval($uid),
279                                         datetime_convert(),
280                                         $parms['url'],
281                                         $parms['fn'],
282                                         $parms['nick'],
283                                         $parms['issued-id'],
284                                         $parms['photo'],
285                                         $parms['key'],
286                                         $parms['dfrn-request'],
287                                         $parms['dfrn-confirm'],
288                                         $parms['dfrn-notify'],
289                                         $parms['dfrn-poll']
290                                 );
291
292                                 // find the contact record we just created
293                                 if($r) {        
294                                         $r = q("SELECT `id` FROM `contact` 
295                                                 WHERE `uid` = %d AND `url` = '%s' AND `issued-id` = '%s' LIMIT 1",
296                                                 intval($uid),
297                                                 $parms['url'],
298                                                 $parms['issued-id']
299                                         );
300                                         if(count($r)) 
301                                                 $contact_record = $r[0];
302                                 }
303         
304                         }
305                         if($r === false) {
306                                 notice( t('Failed to update contact record.') . EOL );
307                                 return;
308                         }
309
310                         $hash = random_string() . (string) time();   // Generate a confirm_key
311         
312                         if(is_array($contact_record)) {
313                                 $ret = q("INSERT INTO `intro` ( `uid`, `contact-id`, `blocked`, `knowyou`, `note`, `hash`, `datetime`)
314                                         VALUES ( %d, %d, 1, %d, '%s', '%s', '%s' )",
315                                         intval($uid),
316                                         intval($contact_record['id']),
317                                         ((x($_POST,'knowyou') && ($_POST['knowyou'] == 1)) ? 1 : 0),
318                                         dbesc(notags(trim($_POST['dfrn-request-message']))),
319                                         dbesc($hash),
320                                         dbesc(datetime_convert())
321                                 );
322                         }
323         
324                         // This notice will only be seen by the requestor if the requestor and requestee are on the same server.
325
326                         if(! $failed) 
327                                 notice( t('Your introduction has been sent.') . EOL );
328
329                         // "Homecoming" - send the requestor back to their site to record the introduction.
330
331                         $dfrn_url = bin2hex($a->get_baseurl() . '/profile/' . $nickname);
332                         $aes_allow = ((function_exists('openssl_encrypt')) ? 1 : 0);
333
334                         goaway($parms['dfrn-request'] . "?dfrn_url=$dfrn_url" 
335                                 . '&dfrn_version=' . DFRN_PROTOCOL_VERSION 
336                                 . '&confirm_key='  . $hash 
337                                 . (($aes_allow) ? "&aes_allow=1" : "")
338                         );
339                         // NOTREACHED
340                         // END $network === 'dfrn'
341                 }
342                 elseif($network === 'stat') {
343                         
344                         /**
345                         *
346                         * OStatus network
347                         * Check contact existence
348                         * Try and scrape together enough information to create a contact record, with us as REL_VIP
349                         * Substitute our user's feed URL into $url template
350                         * Send the subscriber home to subscribe
351                         *
352                         **/
353
354                         $url = str_replace('{uri}', $a->get_baseurl() . '/dfrn_poll/' . $nickname, $url);
355                         goaway($url);
356                         // NOTREACHED
357                         // END $network === 'stat'
358                 }
359
360         }       return;
361 }}
362
363
364
365
366 if(! function_exists('dfrn_request_content')) {
367 function dfrn_request_content(&$a) {
368
369         
370
371         if(($a->argc != 2) || (! count($a->profile)))
372                 return "";
373
374         $a->page['template'] = 'profile';
375
376         // "Homecoming". Make sure we're logged in to this site as the correct user. Then offer a confirm button
377         // to send us to the post section to record the introduction.
378
379         if(x($_GET,'dfrn_url')) {
380
381                 if(! local_user()) {
382                         notice( t("Please login to confirm introduction.") . EOL );
383                         return login();
384                 }
385
386                 // Edge case, but can easily happen in the wild. This person is authenticated, 
387                 // but not as the person who needs to deal with this request.
388
389                 if ($a->user['nickname'] != $a->argv[1]) {
390                         notice( t("Incorrect identity currently logged in. Please login to <strong>this</strong> profile.") . EOL);
391                         return login();
392                 }
393
394                 $dfrn_url = notags(trim(hex2bin($_GET['dfrn_url'])));
395                 $aes_allow = (((x($_GET,'aes_allow')) && ($_GET['aes_allow'] == 1)) ? 1 : 0);
396                 $confirm_key = (x($_GET,'confirm_key') ? $_GET['confirm_key'] : "");
397                 $o .= load_view_file("view/dfrn_req_confirm.tpl");
398                 $o  = replace_macros($o,array(
399                         '$dfrn_url' => $dfrn_url,
400                         '$aes_allow' => (($aes_allow) ? '<input type="hidden" name="aes_allow" value="1" />' : "" ),
401                         '$confirm_key' => $confirm_key,
402                         '$username' => $a->user['username'], 
403                         '$uid' => $_SESSION['uid'],
404                         '$nickname' => $a->user['nickname'],
405                         'dfrn_rawurl' => $_GET['dfrn_url']
406                         ));
407                 return $o;
408
409         }
410         elseif((x($_GET,'confirm_key')) && strlen($_GET['confirm_key'])) { 
411
412                 // we are the requestee and it is now safe to send our user their introduction,
413                 // We could just unblock it, but first we have to jump through a few hoops to 
414                 // send an email, or even to find out if we need to send an email. 
415
416                 $intro = q("SELECT * FROM `intro` WHERE `hash` = '%s' LIMIT 1",
417                         dbesc($_GET['confirm_key'])
418                 );
419
420                 if(count($intro)) {
421
422                         $r = q("SELECT `contact`.*, `user`.* FROM `contact` LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid`
423                                 WHERE `contact`.`id` = %d LIMIT 1",
424                                 intval($intro[0]['contact-id'])
425                         );
426
427                         $auto_confirm = false;
428
429                         if(count($r)) {
430                                 if($r[0]['page-flags'] != PAGE_NORMAL)
431                                         $auto_confirm = true;                           
432                                 if(($r[0]['notify-flags'] & NOTIFY_INTRO) && (! $auto_confirm)) {
433                                         $email_tpl = load_view_file('view/request_notify_eml.tpl');
434                                         $email = replace_macros($email_tpl, array(
435                                                 '$requestor' => ((strlen(stripslashes($r[0]['name']))) ? stripslashes($r[0]['name']) : t('[Name Withheld]')),
436                                                 '$url' => stripslashes($r[0]['url']),
437                                                 '$myname' => $r[0]['username'],
438                                                 '$siteurl' => $a->get_baseurl(),
439                                                 '$sitename' => $a->config['sitename']
440                                         ));
441                                         $res = mail($r[0]['email'], 
442                                                 t("Introduction received at ") . $a->config['sitename'],
443                                                 $email,
444                                                 'From: ' . t('Administrator') . '@' . $_SERVER[SERVER_NAME] );
445                                         // This is a redundant notification - no point throwing errors if it fails.
446                                 }
447                                 if($auto_confirm) {
448                                         require_once('mod/dfrn_confirm.php');
449                                         $handsfree = array(
450                                                 'uid' => $r[0]['uid'],
451                                                 'node' => $r[0]['nickname'],
452                                                 'dfrn_id' => $r[0]['issued-id'],
453                                                 'intro_id' => $intro[0]['id'],
454                                                 'duplex' => (($r[0]['page-flags'] == PAGE_FREELOVE) ? 1 : 0)
455                                         );
456                                         dfrn_confirm_post($a,$handsfree);
457                                 }
458
459                         }
460
461                         if(! $auto_confirm) {
462
463                                 // If we are auto_confirming, this record will have already been nuked
464                                 // in dfrn_confirm_post()
465
466                                 $r = q("UPDATE `intro` SET `blocked` = 0 WHERE `hash` = '%s' LIMIT 1",
467                                         dbesc($_GET['confirm_key'])
468                                 );
469                         }
470                 }
471                 killme();
472                 return; // NOTREACHED
473         }
474         else {
475
476                 // Normal web request. Display our user's introduction form. 
477                 if($a->profile['page-flags'] == PAGE_NORMAL)
478                         $tpl = load_view_file('view/dfrn_request.tpl');
479                 else
480                         $tpl = load_view_file('view/auto_request.tpl');
481                 $o .= replace_macros($tpl,array('$nickname' => $a->argv[1]));
482                 return $o;
483         }
484
485         return; // Somebody is fishing.
486 }}