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