4 use Friendica\Core\L10n;
5 use Friendica\Core\Logger;
6 use Friendica\Core\System;
7 use Friendica\Database\DBA;
8 use Friendica\Model\Contact;
9 use Friendica\Model\Profile;
10 use Friendica\Util\Strings;
11 use Friendica\Util\Network;
13 function redir_init(App $a) {
15 $url = defaults($_GET, 'url', '');
16 $quiet = !empty($_GET['quiet']) ? '&quiet=1' : '';
17 $con_url = defaults($_GET, 'conurl', '');
19 if ($a->argc > 1 && intval($a->argv[1])) {
20 $cid = intval($a->argv[1]);
21 } elseif (local_user() && !empty($con_url)) {
22 $cid = Contact::getIdForURL($con_url, local_user());
28 $fields = ['id', 'uid', 'nurl', 'url', 'addr', 'name', 'network', 'poll', 'issued-id', 'dfrn-id', 'duplex', 'pending'];
29 $contact = DBA::selectFirst('contact', $fields, ['id' => $cid, 'uid' => [0, local_user()]]);
30 if (!DBA::isResult($contact)) {
31 notice(L10n::t('Contact not found.'));
32 $a->internalRedirect();
35 $contact_url = $contact['url'];
37 if ((!local_user() && !remote_user()) // Visitors (not logged in or not remotes) can't authenticate.
38 || (!empty($a->contact['id']) && $a->contact['id'] == $cid)) // Local user is already authenticated.
40 $a->redirect(defaults($url, $contact_url));
43 if ($contact['uid'] == 0 && local_user()) {
44 // Let's have a look if there is an established connection
45 // between the public contact we have found and the local user.
46 $contact = DBA::selectFirst('contact', $fields, ['nurl' => $contact['nurl'], 'uid' => local_user()]);
48 if (DBA::isResult($contact)) {
49 $cid = $contact['id'];
52 if (!empty($a->contact['id']) && $a->contact['id'] == $cid) {
53 // Local user is already authenticated.
54 $target_url = defaults($url, $contact_url);
55 Logger::log($contact['name'] . " is already authenticated. Redirecting to " . $target_url, Logger::DEBUG);
56 $a->redirect($target_url);
61 $host = substr($a->getBaseURL() . ($a->getURLPath() ? '/' . $a->getURLPath() : ''), strpos($a->getBaseURL(), '://') + 3);
62 $remotehost = substr($contact['addr'], strpos($contact['addr'], '@') + 1);
64 // On a local instance we have to check if the local user has already authenticated
65 // with the local contact. Otherwise the local user would ask the local contact
66 // for authentification everytime he/she is visiting a profile page of the local
68 if ($host == $remotehost
69 && !empty($_SESSION['remote'])
70 && is_array($_SESSION['remote']))
72 foreach ($_SESSION['remote'] as $v) {
73 if ($v['uid'] == $_SESSION['visitor_visiting'] && $v['cid'] == $_SESSION['visitor_id']) {
74 // Remote user is already authenticated.
75 $target_url = defaults($url, $contact_url);
76 Logger::log($contact['name'] . " is already authenticated. Redirecting to " . $target_url, Logger::DEBUG);
77 $a->redirect($target_url);
83 // When the remote page does support OWA, then we enforce the use of it
84 $basepath = Contact::getBasepath($contact_url);
85 if ($basepath == System::baseUrl()) {
88 $serverret = Network::curl($basepath . '/magic');
89 $use_magic = $serverret->isSuccess();
92 // Doing remote auth with dfrn.
93 if (local_user() && !$use_magic && (!empty($contact['dfrn-id']) || !empty($contact['issued-id'])) && empty($contact['pending'])) {
94 $dfrn_id = $orig_id = (($contact['issued-id']) ? $contact['issued-id'] : $contact['dfrn-id']);
96 if ($contact['duplex'] && $contact['issued-id']) {
97 $orig_id = $contact['issued-id'];
98 $dfrn_id = '1:' . $orig_id;
100 if ($contact['duplex'] && $contact['dfrn-id']) {
101 $orig_id = $contact['dfrn-id'];
102 $dfrn_id = '0:' . $orig_id;
105 $sec = Strings::getRandomHex();
107 $fields = ['uid' => local_user(), 'cid' => $cid, 'dfrn_id' => $dfrn_id,
108 'sec' => $sec, 'expire' => time() + 45];
109 DBA::insert('profile_check', $fields);
111 Logger::log('mod_redir: ' . $contact['name'] . ' ' . $sec, Logger::DEBUG);
113 $dest = (!empty($url) ? '&destination_url=' . $url : '');
115 System::externalRedirect($contact['poll'] . '?dfrn_id=' . $dfrn_id
116 . '&dfrn_version=' . DFRN_PROTOCOL_VERSION . '&type=profile&sec=' . $sec . $dest . $quiet);
119 $url = defaults($url, $contact_url);
122 // If we don't have a connected contact, redirect with
123 // the 'zrl' parameter.
125 $my_profile = Profile::getMyURL();
127 if (!empty($my_profile) && !Strings::compareLink($my_profile, $url)) {
128 $separator = strpos($url, '?') ? '&' : '?';
130 $url .= $separator . 'zrl=' . urlencode($my_profile);
133 Logger::log('redirecting to ' . $url, Logger::DEBUG);
137 notice(L10n::t('Contact not found.'));
138 $a->internalRedirect();