]> git.mxchange.org Git - friendica.git/blob - src/Module/Security/Logout.php
Merge remote-tracking branch 'upstream/2022.09-rc' into worker-timeout
[friendica.git] / src / Module / Security / Logout.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, 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\Security;
23
24 use Friendica\App;
25 use Friendica\BaseModule;
26 use Friendica\Core\Cache\Capability\ICanCache;
27 use Friendica\Core\Hook;
28 use Friendica\Core\L10n;
29 use Friendica\Core\Session\Capability\IHandleSessions;
30 use Friendica\Core\System;
31 use Friendica\Model\Profile;
32 use Friendica\Model\User\Cookie;
33 use Friendica\Module\Response;
34 use Friendica\Util\Profiler;
35 use Psr\Log\LoggerInterface;
36
37 /**
38  * Logout module
39  */
40 class Logout extends BaseModule
41 {
42         /** @var ICanCache */
43         protected $cache;
44         /** @var Cookie */
45         protected $cookie;
46         /** @var IHandleSessions */
47         protected $session;
48
49         public function __construct(L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, ICanCache $cache, Cookie $cookie, IHandleSessions $session, array $server, array $parameters = [])
50         {
51                 parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
52
53                 $this->cache   = $cache;
54                 $this->cookie  = $cookie;
55                 $this->session = $session;
56         }
57
58
59         /**
60          * Process logout requests
61          */
62         protected function rawContent(array $request = [])
63         {
64                 $visitor_home = null;
65                 if (remote_user()) {
66                         $visitor_home = Profile::getMyURL();
67                         $this->cache->delete('zrlInit:' . $visitor_home);
68                 }
69
70                 Hook::callAll("logging_out");
71
72                 // If this is a trusted browser, redirect to the 2fa signout page
73                 if ($this->cookie->get('2fa_cookie_hash')) {
74                         $this->baseUrl->redirect('2fa/signout');
75                 }
76
77                 $this->cookie->clear();
78                 $this->session->clear();
79
80                 if ($visitor_home) {
81                         System::externalRedirect($visitor_home);
82                 } else {
83                         info($this->t('Logged out.'));
84                         $this->baseUrl->redirect();
85                 }
86         }
87 }