aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/front/controller/admin/SessionFilterController.php
blob: 081c0ba0949f1226536b3406ba4019e48b139b29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php

declare(strict_types=1);

namespace Shaarli\Front\Controller\Admin;

use Shaarli\Bookmark\BookmarkFilter;
use Shaarli\Security\SessionManager;
use Slim\Http\Request;
use Slim\Http\Response;

/**
 * Class SessionFilterController
 *
 * Slim controller used to handle filters stored in the user session, such as visibility, etc.
 */
class SessionFilterController extends ShaarliAdminController
{
    /**
     * GET /visibility: allows to display only public or only private bookmarks in linklist
     */
    public function visibility(Request $request, Response $response, array $args): Response
    {
        if (false === $this->container->loginManager->isLoggedIn()) {
            return $this->redirectFromReferer($request, $response, ['visibility']);
        }

        $newVisibility = $args['visibility'] ?? null;
        if (false === in_array($newVisibility, [BookmarkFilter::$PRIVATE, BookmarkFilter::$PUBLIC], true)) {
            $newVisibility = null;
        }

        $currentVisibility = $this->container->sessionManager->getSessionParameter(SessionManager::KEY_VISIBILITY);

        // Visibility not set or not already expected value, set expected value, otherwise reset it
        if ($newVisibility !== null && (null === $currentVisibility || $currentVisibility !== $newVisibility)) {
            // See only public bookmarks
            $this->container->sessionManager->setSessionParameter(
                SessionManager::KEY_VISIBILITY,
                $newVisibility
            );
        } else {
            $this->container->sessionManager->deleteSessionParameter(SessionManager::KEY_VISIBILITY);
        }

        return $this->redirectFromReferer($request, $response, ['visibility']);
    }

    /**
     * GET /untagged-only: allows to display only bookmarks without any tag
     */
    public function untaggedOnly(Request $request, Response $response): Response
    {
        $this->container->sessionManager->setSessionParameter(
            SessionManager::KEY_UNTAGGED_ONLY,
            empty($this->container->sessionManager->getSessionParameter(SessionManager::KEY_UNTAGGED_ONLY))
        );

        return $this->redirectFromReferer($request, $response, ['untaggedonly', 'untagged-only']);
    }
}