]> git.mxchange.org Git - friendica.git/blob - include/redir.php
Merge remote-tracking branch 'upstream/master'
[friendica.git] / include / redir.php
1 <?php
2
3 function auto_redir(App $a, $contact_nick) {
4
5         // prevent looping
6
7         if(x($_REQUEST,'redir') && intval($_REQUEST['redir']))
8                 return;
9
10         if((! $contact_nick) || ($contact_nick === $a->user['nickname']))
11                 return;
12
13         if(local_user()) {
14
15                 // We need to find out if $contact_nick is a user on this hub, and if so, if I
16                 // am a contact of that user. However, that user may have other contacts with the
17                 // same nickname as me on other hubs or other networks. Exclude these by requiring
18                 // that the contact have a local URL. I will be the only person with my nickname at
19                 // this URL, so if a result is found, then I am a contact of the $contact_nick user.
20                 //
21                 // We also have to make sure that I'm a legitimate contact--I'm not blocked or pending.
22
23                 $baseurl = App::get_baseurl();
24                 $domain_st = strpos($baseurl, "://");
25                 if($domain_st === false)
26                         return;
27                 $baseurl = substr($baseurl, $domain_st + 3);
28                 $nurl = normalise_link($baseurl);
29
30                 /// @todo Why is there a query for "url" *and* "nurl"? Especially this normalising is strange.
31                 $r = q("SELECT `id` FROM `contact` WHERE `uid` = (SELECT `uid` FROM `user` WHERE `nickname` = '%s' LIMIT 1)
32                         AND `nick` = '%s' AND NOT `self` AND (`url` LIKE '%%%s%%' OR `nurl` LIKE '%%%s%%') AND NOT `blocked` AND NOT `pending` LIMIT 1",
33                                 dbesc($contact_nick),
34                                 dbesc($a->user['nickname']),
35                                 dbesc($baseurl),
36                                 dbesc($nurl)
37                 );
38
39                 if ((! dbm::is_result($r)) || $r[0]['id'] == remote_user()) {
40                         return;
41                 }
42
43                 $r = q("SELECT * FROM contact WHERE nick = '%s'
44                         AND network = '%s' AND uid = %d  AND url LIKE '%%%s%%' LIMIT 1",
45                        dbesc($contact_nick),
46                        dbesc(NETWORK_DFRN),
47                        intval(local_user()),
48                        dbesc($baseurl)
49                 );
50
51                 if (! dbm::is_result($r)) {
52                         return;
53                 }
54
55                 $cid = $r[0]['id'];
56
57                 $dfrn_id = $orig_id = (($r[0]['issued-id']) ? $r[0]['issued-id'] : $r[0]['dfrn-id']);
58
59                 if($r[0]['duplex'] && $r[0]['issued-id']) {
60                         $orig_id = $r[0]['issued-id'];
61                         $dfrn_id = '1:' . $orig_id;
62                 }
63                 if($r[0]['duplex'] && $r[0]['dfrn-id']) {
64                         $orig_id = $r[0]['dfrn-id'];
65                         $dfrn_id = '0:' . $orig_id;
66                 }
67
68                 // ensure that we've got a valid ID. There may be some edge cases with forums and non-duplex mode
69                 // that may have triggered some of the "went to {profile/intro} and got an RSS feed" issues
70
71                 if(strlen($dfrn_id) < 3)
72                         return;
73
74                 $sec = random_string();
75
76                 q("INSERT INTO `profile_check` ( `uid`, `cid`, `dfrn_id`, `sec`, `expire`)
77                         VALUES( %d, %s, '%s', '%s', %d )",
78                         intval(local_user()),
79                         intval($cid),
80                         dbesc($dfrn_id),
81                         dbesc($sec),
82                         intval(time() + 45)
83                 );
84
85                 $url = curPageURL();
86
87                 logger('auto_redir: ' . $r[0]['name'] . ' ' . $sec, LOGGER_DEBUG);
88                 $dest = (($url) ? '&destination_url=' . $url : '');
89                 goaway ($r[0]['poll'] . '?dfrn_id=' . $dfrn_id
90                         . '&dfrn_version=' . DFRN_PROTOCOL_VERSION . '&type=profile&sec=' . $sec . $dest );
91         }
92
93         return;
94 }
95
96