]> git.mxchange.org Git - friendica.git/blob - src/Module/Magic.php
Merge pull request #13070 from xundeenergie/fix-share-via
[friendica.git] / src / Module / Magic.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, 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\App;
25 use Friendica\BaseModule;
26 use Friendica\Core\L10n;
27 use Friendica\Core\Session\Capability\IHandleUserSessions;
28 use Friendica\Core\System;
29 use Friendica\Database\Database;
30 use Friendica\Model\Contact;
31 use Friendica\Model\User;
32 use Friendica\Network\HTTPClient\Capability\ICanSendHttpRequests;
33 use Friendica\Network\HTTPClient\Client\HttpClientAccept;
34 use Friendica\Network\HTTPClient\Client\HttpClientOptions;
35 use Friendica\Util\HTTPSignature;
36 use Friendica\Util\Profiler;
37 use Friendica\Util\Strings;
38 use Psr\Log\LoggerInterface;
39
40 /**
41  * Magic Auth (remote authentication) module.
42  *
43  * Ported from Hubzilla: https://framagit.org/hubzilla/core/blob/master/Zotlabs/Module/Magic.php
44  */
45 class Magic extends BaseModule
46 {
47         /** @var App */
48         protected $app;
49         /** @var Database */
50         protected $dba;
51         /** @var ICanSendHttpRequests */
52         protected $httpClient;
53         /** @var IHandleUserSessions */
54         protected $userSession;
55
56         public function __construct(App $app, L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, Database $dba, ICanSendHttpRequests $httpClient, IHandleUserSessions $userSession, $server, array $parameters = [])
57         {
58                 parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
59
60                 $this->app         = $app;
61                 $this->dba         = $dba;
62                 $this->httpClient  = $httpClient;
63                 $this->userSession = $userSession;
64         }
65
66         protected function rawContent(array $request = [])
67         {
68                 $this->logger->info('magic module: invoked');
69
70                 $this->logger->debug('args', ['request' => $_REQUEST]);
71
72                 $addr = $_REQUEST['addr'] ?? '';
73                 $dest = $_REQUEST['dest'] ?? '';
74                 $owa  = (!empty($_REQUEST['owa'])  ? intval($_REQUEST['owa'])  : 0);
75                 $cid  = 0;
76
77                 if (!empty($addr)) {
78                         $cid = Contact::getIdForURL($addr);
79                 } elseif (!empty($dest)) {
80                         $cid = Contact::getIdForURL($dest);
81                 }
82
83                 if (!$cid) {
84                         $this->logger->info('No contact record found', $_REQUEST);
85                         // @TODO Finding a more elegant possibility to redirect to either internal or external URL
86                         $this->app->redirect($dest);
87                 }
88                 $contact = $this->dba->selectFirst('contact', ['id', 'nurl', 'url'], ['id' => $cid]);
89
90                 // Redirect if the contact is already authenticated on this site.
91                 if ($this->app->getContactId() && strpos($contact['nurl'], Strings::normaliseLink($this->baseUrl)) !== false) {
92                         $this->logger->info('Contact is already authenticated');
93                         System::externalRedirect($dest);
94                 }
95
96                 // OpenWebAuth
97                 if ($this->userSession->getLocalUserId() && $owa) {
98                         $user = User::getById($this->userSession->getLocalUserId());
99
100                         // Extract the basepath
101                         // NOTE: we need another solution because this does only work
102                         // for friendica contacts :-/ . We should have the basepath
103                         // of a contact also in the contact table.
104                         $exp = explode('/profile/', $contact['url']);
105                         $basepath = $exp[0];
106
107                         $header = [
108                                 'Accept'                  => ['application/x-dfrn+json', 'application/x-zot+json'],
109                                 'X-Open-Web-Auth' => [Strings::getRandomHex()],
110                         ];
111
112                         // Create a header that is signed with the local users private key.
113                         $header = HTTPSignature::createSig(
114                                 $header,
115                                 $user['prvkey'],
116                                 'acct:' . $user['nickname'] . '@' . $this->baseUrl->getHost() . ($this->baseUrl->getPath() ? '/' . $this->baseUrl->getPath() : '')
117                         );
118
119                         // Try to get an authentication token from the other instance.
120                         $curlResult = $this->httpClient->get($basepath . '/owa', HttpClientAccept::DEFAULT, [HttpClientOptions::HEADERS => $header]);
121
122                         if ($curlResult->isSuccess()) {
123                                 $j = json_decode($curlResult->getBody(), true);
124
125                                 if ($j['success']) {
126                                         $token = '';
127                                         if ($j['encrypted_token']) {
128                                                 // The token is encrypted. If the local user is really the one the other instance
129                                                 // thinks he/she is, the token can be decrypted with the local users public key.
130                                                 openssl_private_decrypt(Strings::base64UrlDecode($j['encrypted_token']), $token, $user['prvkey']);
131                                         } else {
132                                                 $token = $j['token'];
133                                         }
134                                         $args = (strpbrk($dest, '?&') ? '&' : '?') . 'owt=' . $token;
135
136                                         $this->logger->info('Redirecting', ['path' => $dest . $args]);
137                                         System::externalRedirect($dest . $args);
138                                 }
139                         }
140                         System::externalRedirect($dest);
141                 }
142
143                 // @TODO Finding a more elegant possibility to redirect to either internal or external URL
144                 $this->app->redirect($dest);
145         }
146 }