3 * @file src/Module/Magic.php
5 namespace Friendica\Module;
7 use Friendica\BaseModule;
8 use Friendica\Database\DBA;
9 use Friendica\Model\Contact;
10 use Friendica\Util\HTTPSignature;
11 use Friendica\Util\Network;
14 * Magic Auth (remote authentication) module.
16 * Ported from Hubzilla: https://framagit.org/hubzilla/core/blob/master/Zotlabs/Module/Magic.php
18 class Magic extends BaseModule
20 public static function init()
23 $ret = ['success' => false, 'url' => '', 'message' => ''];
24 logger('magic mdule: invoked', LOGGER_DEBUG);
26 logger('args: ' . print_r($_REQUEST, true), LOGGER_DATA);
28 $addr = ((x($_REQUEST, 'addr')) ? $_REQUEST['addr'] : '');
29 $dest = ((x($_REQUEST, 'dest')) ? $_REQUEST['dest'] : '');
30 $test = ((x($_REQUEST, 'test')) ? intval($_REQUEST['test']) : 0);
31 $owa = ((x($_REQUEST, 'owa')) ? intval($_REQUEST['owa']) : 0);
33 // NOTE: I guess $dest isn't just the profile url (could be also
34 // other profile pages e.g. photo). We need to find a solution
35 // to be able to redirct to other pages than the contact profile.
36 $cid = Contact::getIdForURL($dest);
38 if (!$cid && !empty($addr)) {
39 $cid = Contact::getIdForURL($addr);
43 logger('No contact record found: ' . print_r($_REQUEST, true), LOGGER_DEBUG);
47 $contact = DBA::selectFirst('contact', ['id', 'nurl', 'url'], ['id' => $cid]);
49 // Redirect if the contact is already authenticated on this site.
50 if (!empty($a->contact) && array_key_exists('id', $a->contact) && strpos($contact['nurl'], normalise_link(self::getApp()->get_baseurl())) !== false) {
52 $ret['success'] = true;
53 $ret['message'] .= 'Local site - you are already authenticated.' . EOL;
57 logger('Contact is already authenticated', LOGGER_DEBUG);
66 // Extract the basepath
67 // NOTE: we need another solution because this does only work
68 // for friendica contacts :-/ . We should have the basepath
69 // of a contact also in the contact table.
70 $exp = explode('/profile/', $contact['url']);
74 $headers['Accept'] = 'application/x-dfrn+json';
75 $headers['X-Open-Web-Auth'] = random_string();
77 // Create a header that is signed with the local users private key.
78 $headers = HTTPSignature::createSig(
81 'acct:' . $user['nickname'] . '@' . $a->get_hostname() . ($a->urlpath ? '/' . $a->urlpath : '')
84 // Try to get an authentication token from the other instance.
85 $x = Network::curl($basepath . '/owa', false, $redirects, ['headers' => $headers]);
88 $j = json_decode($x['body'], true);
92 if ($j['encrypted_token']) {
93 // The token is encrypted. If the local user is really the one the other instance
94 // thinks he/she is, the token can be decrypted with the local users public key.
95 openssl_private_decrypt(base64url_decode($j['encrypted_token']), $token, $user['prvkey']);
99 $x = strpbrk($dest, '?&');
100 $args = (($x) ? '&owt=' . $token : '?f=&owt=' . $token);
102 goaway($dest . $args);
110 $ret['message'] = 'Not authenticated or invalid arguments' . EOL;