]> git.mxchange.org Git - friendica.git/blob - mod/redir.php
Catch HTTPExceptions in App::runFrontend()
[friendica.git] / mod / redir.php
1 <?php
2
3 use Friendica\App;
4 use Friendica\Core\L10n;
5 use Friendica\Core\Logger;
6 use Friendica\Core\Protocol;
7 use Friendica\Core\System;
8 use Friendica\Database\DBA;
9 use Friendica\Model\Contact;
10 use Friendica\Model\Profile;
11 use Friendica\Util\Strings;
12 use Friendica\Util\Network;
13
14 function redir_init(App $a) {
15
16         $url = defaults($_GET, 'url', '');
17         $quiet = !empty($_GET['quiet']) ? '&quiet=1' : '';
18         $con_url = defaults($_GET, 'conurl', '');
19
20         if ($a->argc > 1 && intval($a->argv[1])) {
21                 $cid = intval($a->argv[1]);
22         } elseif (local_user() && !empty($con_url)) {
23                 $cid = Contact::getIdForURL($con_url, local_user());
24         } else {
25                 $cid = 0;
26         }
27
28         if (!empty($cid)) {
29                 $fields = ['id', 'uid', 'nurl', 'url', 'addr', 'name', 'network', 'poll', 'issued-id', 'dfrn-id', 'duplex', 'pending'];
30                 $contact = DBA::selectFirst('contact', $fields, ['id' => $cid, 'uid' => [0, local_user()]]);
31                 if (!DBA::isResult($contact)) {
32                         notice(L10n::t('Contact not found.'));
33                         $a->internalRedirect();
34                 }
35
36                 $contact_url = $contact['url'];
37
38                 if ((!local_user() && !remote_user()) // Visitors (not logged in or not remotes) can't authenticate.
39                         || (!empty($a->contact['id']) && $a->contact['id'] == $cid)) // Local user is already authenticated.
40                 {
41                         $a->redirect(defaults($url, $contact_url));
42                 }
43
44                 if ($contact['uid'] == 0 && local_user()) {
45                         // Let's have a look if there is an established connection
46                         // between the public contact we have found and the local user.
47                         $contact = DBA::selectFirst('contact', $fields, ['nurl' => $contact['nurl'], 'uid' => local_user()]);
48
49                         if (DBA::isResult($contact)) {
50                                 $cid = $contact['id'];
51                         }
52
53                         if (!empty($a->contact['id']) && $a->contact['id'] == $cid) {
54                                 // Local user is already authenticated.
55                                 $target_url = defaults($url, $contact_url);
56                                 Logger::log($contact['name'] . " is already authenticated. Redirecting to " . $target_url, Logger::DEBUG);
57                                 $a->redirect($target_url);
58                         }
59                 }
60
61                 if (remote_user()) {
62                         $host = substr($a->getBaseURL() . ($a->getURLPath() ? '/' . $a->getURLPath() : ''), strpos($a->getBaseURL(), '://') + 3);
63                         $remotehost = substr($contact['addr'], strpos($contact['addr'], '@') + 1);
64
65                         // On a local instance we have to check if the local user has already authenticated
66                         // with the local contact. Otherwise the local user would ask the local contact
67                         // for authentification everytime he/she is visiting a profile page of the local
68                         // contact.
69                         if ($host == $remotehost
70                                 && !empty($_SESSION['remote'])
71                                 && is_array($_SESSION['remote']))
72                         {
73                                 foreach ($_SESSION['remote'] as $v) {
74                                         if ($v['uid'] == $_SESSION['visitor_visiting'] && $v['cid'] == $_SESSION['visitor_id']) {
75                                                 // Remote user is already authenticated.
76                                                 $target_url = defaults($url, $contact_url);
77                                                 Logger::log($contact['name'] . " is already authenticated. Redirecting to " . $target_url, Logger::DEBUG);
78                                                 $a->redirect($target_url);
79                                         }
80                                 }
81                         }
82                 }
83
84                 // When the remote page does support OWA, then we enforce the use of it
85                 $basepath = Contact::getBasepath($contact_url);
86                 if ($basepath == System::baseUrl()) {
87                         $use_magic = true;
88                 } else {
89                         $serverret = Network::curl($basepath . '/magic');
90                         $use_magic = $serverret->isSuccess();
91                 }
92
93                 // Doing remote auth with dfrn.
94                 if (local_user() && !$use_magic && (!empty($contact['dfrn-id']) || !empty($contact['issued-id'])) && empty($contact['pending'])) {
95                         $dfrn_id = $orig_id = (($contact['issued-id']) ? $contact['issued-id'] : $contact['dfrn-id']);
96
97                         if ($contact['duplex'] && $contact['issued-id']) {
98                                 $orig_id = $contact['issued-id'];
99                                 $dfrn_id = '1:' . $orig_id;
100                         }
101                         if ($contact['duplex'] && $contact['dfrn-id']) {
102                                 $orig_id = $contact['dfrn-id'];
103                                 $dfrn_id = '0:' . $orig_id;
104                         }
105
106                         $sec = Strings::getRandomHex();
107
108                         $fields = ['uid' => local_user(), 'cid' => $cid, 'dfrn_id' => $dfrn_id,
109                                 'sec' => $sec, 'expire' => time() + 45];
110                         DBA::insert('profile_check', $fields);
111
112                         Logger::log('mod_redir: ' . $contact['name'] . ' ' . $sec, Logger::DEBUG);
113
114                         $dest = (!empty($url) ? '&destination_url=' . $url : '');
115
116                         System::externalRedirect($contact['poll'] . '?dfrn_id=' . $dfrn_id
117                                 . '&dfrn_version=' . DFRN_PROTOCOL_VERSION . '&type=profile&sec=' . $sec . $dest . $quiet);
118                 }
119
120                 $url = defaults($url, $contact_url);
121         }
122
123         // If we don't have a connected contact, redirect with
124         // the 'zrl' parameter.
125         if (!empty($url)) {
126                 $my_profile = Profile::getMyURL();
127
128                 if (!empty($my_profile) && !Strings::compareLink($my_profile, $url)) {
129                         $separator = strpos($url, '?') ? '&' : '?';
130
131                         $url .= $separator . 'zrl=' . urlencode($my_profile);
132                 }
133
134                 Logger::log('redirecting to ' . $url, Logger::DEBUG);
135                 $a->redirect($url);
136         }
137
138         notice(L10n::t('Contact not found.'));
139         $a->internalRedirect();
140 }