]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - application/front/controller/admin/LogoutController.php
Process Shaarli install through Slim controller
[github/shaarli/Shaarli.git] / application / front / controller / admin / LogoutController.php
1 <?php
2
3 declare(strict_types=1);
4
5 namespace Shaarli\Front\Controller\Admin;
6
7 use Shaarli\Security\CookieManager;
8 use Shaarli\Security\LoginManager;
9 use Slim\Http\Request;
10 use Slim\Http\Response;
11
12 /**
13 * Class LogoutController
14 *
15 * Slim controller used to logout the user.
16 * It invalidates page cache and terminate the user session. Then it redirects to the homepage.
17 */
18 class LogoutController extends ShaarliAdminController
19 {
20 public function index(Request $request, Response $response): Response
21 {
22 $this->container->pageCacheManager->invalidateCaches();
23 $this->container->sessionManager->logout();
24 $this->container->cookieManager->setCookieParameter(
25 CookieManager::STAY_SIGNED_IN,
26 'false',
27 0,
28 $this->container->basePath . '/'
29 );
30
31 return $this->redirect($response, '/');
32 }
33 }