]> git.mxchange.org Git - friendica.git/blob - src/Module/Magic.php
Merge remote-tracking branch 'upstream/develop' into app-user2
[friendica.git] / src / Module / Magic.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Module;
23
24 use Friendica\BaseModule;
25 use Friendica\Core\Logger;
26 use Friendica\Core\System;
27 use Friendica\Database\DBA;
28 use Friendica\DI;
29 use Friendica\Model\Contact;
30 use Friendica\Model\User;
31 use Friendica\Util\HTTPSignature;
32 use Friendica\Util\Strings;
33
34 /**
35  * Magic Auth (remote authentication) module.
36  *
37  * Ported from Hubzilla: https://framagit.org/hubzilla/core/blob/master/Zotlabs/Module/Magic.php
38  */
39 class Magic extends BaseModule
40 {
41         public static function init(array $parameters = [])
42         {
43                 $a = DI::app();
44                 $ret = ['success' => false, 'url' => '', 'message' => ''];
45                 Logger::info('magic mdule: invoked');
46
47                 Logger::debug('args', ['request' => $_REQUEST]);
48
49                 $addr = $_REQUEST['addr'] ?? '';
50                 $dest = $_REQUEST['dest'] ?? '';
51                 $test = (!empty($_REQUEST['test']) ? intval($_REQUEST['test']) : 0);
52                 $owa  = (!empty($_REQUEST['owa'])  ? intval($_REQUEST['owa'])  : 0);
53                 $cid  = 0;
54
55                 if (!empty($addr)) {
56                         $cid = Contact::getIdForURL($addr);
57                 } elseif (!empty($dest)) {
58                         $cid = Contact::getIdForURL($dest);
59                 }
60
61                 if (!$cid) {
62                         Logger::info('No contact record found', $_REQUEST);
63                         // @TODO Finding a more elegant possibility to redirect to either internal or external URL
64                         $a->redirect($dest);
65                 }
66                 $contact = DBA::selectFirst('contact', ['id', 'nurl', 'url'], ['id' => $cid]);
67
68                 // Redirect if the contact is already authenticated on this site.
69                 if ($a->getContactId() && strpos($contact['nurl'], Strings::normaliseLink(DI::baseUrl()->get())) !== false) {
70                         if ($test) {
71                                 $ret['success'] = true;
72                                 $ret['message'] .= 'Local site - you are already authenticated.' . EOL;
73                                 return $ret;
74                         }
75
76                         Logger::info('Contact is already authenticated');
77                         System::externalRedirect($dest);
78                 }
79
80                 // OpenWebAuth
81                 if (local_user() && $owa) {
82                         $user = User::getById(local_user());
83
84                         // Extract the basepath
85                         // NOTE: we need another solution because this does only work
86                         // for friendica contacts :-/ . We should have the basepath
87                         // of a contact also in the contact table.
88                         $exp = explode('/profile/', $contact['url']);
89                         $basepath = $exp[0];
90
91                         $header = [];
92                         $header['Accept'] = 'application/x-dfrn+json, application/x-zot+json';
93                         $header['X-Open-Web-Auth'] = Strings::getRandomHex();
94
95                         // Create a header that is signed with the local users private key.
96                         $header = HTTPSignature::createSig(
97                                 $header,
98                                 $user['prvkey'],
99                                 'acct:' . $user['nickname'] . '@' . DI::baseUrl()->getHostname() . (DI::baseUrl()->getUrlPath() ? '/' . DI::baseUrl()->getUrlPath() : '')
100                         );
101
102                         // Try to get an authentication token from the other instance.
103                         $curlResult = DI::httpRequest()->get($basepath . '/owa', ['header' => $header]);
104
105                         if ($curlResult->isSuccess()) {
106                                 $j = json_decode($curlResult->getBody(), true);
107
108                                 if ($j['success']) {
109                                         $token = '';
110                                         if ($j['encrypted_token']) {
111                                                 // The token is encrypted. If the local user is really the one the other instance
112                                                 // thinks he/she is, the token can be decrypted with the local users public key.
113                                                 openssl_private_decrypt(Strings::base64UrlDecode($j['encrypted_token']), $token, $user['prvkey']);
114                                         } else {
115                                                 $token = $j['token'];
116                                         }
117                                         $args = (strpbrk($dest, '?&') ? '&' : '?') . 'owt=' . $token;
118
119                                         Logger::info('Redirecting', ['path' => $dest . $args]);
120                                         System::externalRedirect($dest . $args);
121                                 }
122                         }
123                         System::externalRedirect($dest);
124                 }
125
126                 if ($test) {
127                         $ret['message'] = 'Not authenticated or invalid arguments' . EOL;
128                         return $ret;
129                 }
130
131                 // @TODO Finding a more elegant possibility to redirect to either internal or external URL
132                 $a->redirect($dest);
133         }
134 }