xref: /webtrees/app/Http/RequestHandlers/SelectTheme.php (revision b55cbc6b43247e8b2ad14af6f6d24dc6747195ff)
1a0801ffbSGreg Roach<?php
23976b470SGreg Roach
3a0801ffbSGreg Roach/**
4a0801ffbSGreg Roach * webtrees: online genealogy
51fe542e9SGreg Roach * Copyright (C) 2021 webtrees development team
6a0801ffbSGreg Roach * This program is free software: you can redistribute it and/or modify
7a0801ffbSGreg Roach * it under the terms of the GNU General Public License as published by
8a0801ffbSGreg Roach * the Free Software Foundation, either version 3 of the License, or
9a0801ffbSGreg Roach * (at your option) any later version.
10a0801ffbSGreg Roach * This program is distributed in the hope that it will be useful,
11a0801ffbSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12a0801ffbSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13a0801ffbSGreg Roach * GNU General Public License for more details.
14a0801ffbSGreg Roach * You should have received a copy of the GNU General Public License
1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
16a0801ffbSGreg Roach */
17fcfa147eSGreg Roach
18a0801ffbSGreg Roachdeclare(strict_types=1);
19a0801ffbSGreg Roach
20a0801ffbSGreg Roachnamespace Fisharebest\Webtrees\Http\RequestHandlers;
21a0801ffbSGreg Roach
22f3874e19SGreg Roachuse Fisharebest\Webtrees\Contracts\UserInterface;
23a0801ffbSGreg Roachuse Fisharebest\Webtrees\Session;
24*b55cbc6bSGreg Roachuse Fisharebest\Webtrees\Validator;
25a0801ffbSGreg Roachuse Psr\Http\Message\ResponseInterface;
26a0801ffbSGreg Roachuse Psr\Http\Message\ServerRequestInterface;
27a0801ffbSGreg Roachuse Psr\Http\Server\RequestHandlerInterface;
283976b470SGreg Roach
29f3874e19SGreg Roachuse function assert;
30f3874e19SGreg Roachuse function is_string;
31a0801ffbSGreg Roachuse function response;
32a0801ffbSGreg Roach
33a0801ffbSGreg Roach/**
34a0801ffbSGreg Roach * Select a new theme for the current session.
35a0801ffbSGreg Roach */
361d1f373cSGreg Roachclass SelectTheme implements RequestHandlerInterface
37a0801ffbSGreg Roach{
38a0801ffbSGreg Roach    /**
39a0801ffbSGreg Roach     * @param ServerRequestInterface $request
40a0801ffbSGreg Roach     *
41a0801ffbSGreg Roach     * @return ResponseInterface
42a0801ffbSGreg Roach     */
43a0801ffbSGreg Roach    public function handle(ServerRequestInterface $request): ResponseInterface
44a0801ffbSGreg Roach    {
45*b55cbc6bSGreg Roach        $user = Validator::attributes($request)->user();
46f3874e19SGreg Roach
477adfb8e5SGreg Roach        $theme = $request->getAttribute('theme');
4875964c75SGreg Roach        assert(is_string($theme));
49a0801ffbSGreg Roach
50a0801ffbSGreg Roach        Session::put('theme', $theme);
511fe542e9SGreg Roach        $user->setPreference(UserInterface::PREF_THEME, $theme);
52a0801ffbSGreg Roach
531d1f373cSGreg Roach        return response();
54a0801ffbSGreg Roach    }
55a0801ffbSGreg Roach}
56