]> git.mxchange.org Git - friendica.git/blob - src/Module/Security/Logout.php
Merge pull request #12028 from annando/no-boot-src-module-4
[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;
30 use Friendica\Core\Session\Capability\IHandleSessions;
31 use Friendica\Core\System;
32 use Friendica\DI;
33 use Friendica\Model\Profile;
34 use Friendica\Model\User\Cookie;
35 use Friendica\Module\Response;
36 use Friendica\Util\Profiler;
37 use Psr\Log\LoggerInterface;
38
39 /**
40  * Logout module
41  */
42 class Logout extends BaseModule
43 {
44         /** @var ICanCache */
45         protected $cache;
46         /** @var Cookie */
47         protected $cookie;
48         /** @var IHandleSessions */
49         protected $session;
50
51         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 = [])
52         {
53                 parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
54
55                 $this->cache   = $cache;
56                 $this->cookie  = $cookie;
57                 $this->session = $session;
58         }
59
60
61         /**
62          * Process logout requests
63          */
64         protected function rawContent(array $request = [])
65         {
66                 $visitor_home = null;
67                 if (Session::getRemoteUser()) {
68                         $visitor_home = Profile::getMyURL();
69                         $this->cache->delete('zrlInit:' . $visitor_home);
70                 }
71
72                 Hook::callAll("logging_out");
73
74                 // If this is a trusted browser, redirect to the 2fa signout page
75                 if ($this->cookie->get('2fa_cookie_hash')) {
76                         $this->baseUrl->redirect('2fa/signout');
77                 }
78
79                 $this->cookie->clear();
80                 $this->session->clear();
81
82                 if ($visitor_home) {
83                         System::externalRedirect($visitor_home);
84                 } else {
85                         DI::sysmsg()->addInfo($this->t('Logged out.'));
86                         $this->baseUrl->redirect();
87                 }
88         }
89 }