xref: /webtrees/app/Http/Middleware/UseSession.php (revision e931043e2bb6a02b94ace9fb6d34d1f7b0cce4d0)
1b5979037SGreg Roach<?php
23976b470SGreg Roach
3b5979037SGreg Roach/**
4b5979037SGreg Roach * webtrees: online genealogy
51fe542e9SGreg Roach * Copyright (C) 2021 webtrees development team
6b5979037SGreg Roach * This program is free software: you can redistribute it and/or modify
7b5979037SGreg Roach * it under the terms of the GNU General Public License as published by
8b5979037SGreg Roach * the Free Software Foundation, either version 3 of the License, or
9b5979037SGreg Roach * (at your option) any later version.
10b5979037SGreg Roach * This program is distributed in the hope that it will be useful,
11b5979037SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12b5979037SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13b5979037SGreg Roach * GNU General Public License for more details.
14b5979037SGreg 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/>.
16b5979037SGreg Roach */
17fcfa147eSGreg Roach
18b5979037SGreg Roachdeclare(strict_types=1);
19b5979037SGreg Roach
20b5979037SGreg Roachnamespace Fisharebest\Webtrees\Http\Middleware;
21b5979037SGreg Roach
22b5979037SGreg Roachuse Fisharebest\Webtrees\Auth;
234459dc9aSGreg Roachuse Fisharebest\Webtrees\Carbon;
241fe542e9SGreg Roachuse Fisharebest\Webtrees\Contracts\UserInterface;
25b5979037SGreg Roachuse Fisharebest\Webtrees\Session;
26*e931043eSGreg Roachuse Fisharebest\Webtrees\Webtrees;
276ccdf4f0SGreg Roachuse Psr\Http\Message\ResponseInterface;
286ccdf4f0SGreg Roachuse Psr\Http\Message\ServerRequestInterface;
296ccdf4f0SGreg Roachuse Psr\Http\Server\MiddlewareInterface;
306ccdf4f0SGreg Roachuse Psr\Http\Server\RequestHandlerInterface;
31b5979037SGreg Roach
32dc6156d0SGreg Roachuse function session_destroy;
33dc6156d0SGreg Roachuse function session_status;
34dc6156d0SGreg Roach
35dc6156d0SGreg Roachuse const PHP_SESSION_ACTIVE;
36dc6156d0SGreg Roach
37b5979037SGreg Roach/**
38b5979037SGreg Roach * Middleware to activate sessions.
39b5979037SGreg Roach */
40b5979037SGreg Roachclass UseSession implements MiddlewareInterface
41b5979037SGreg Roach{
42b5979037SGreg Roach    /**
436ccdf4f0SGreg Roach     * @param ServerRequestInterface  $request
446ccdf4f0SGreg Roach     * @param RequestHandlerInterface $handler
45b5979037SGreg Roach     *
466ccdf4f0SGreg Roach     * @return ResponseInterface
47b5979037SGreg Roach     */
486ccdf4f0SGreg Roach    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
49b5979037SGreg Roach    {
50dc6156d0SGreg Roach        // Some sites (e.g. Wordpress/NinjaFirewall) use the PHP auto_prepend_file
51dc6156d0SGreg Roach        // setting to run their own startup code - which may start a session.
52dc6156d0SGreg Roach        if (session_status() === PHP_SESSION_ACTIVE) {
53dc6156d0SGreg Roach            session_destroy();
54dc6156d0SGreg Roach        }
55dc6156d0SGreg Roach
56b5979037SGreg Roach        // Sessions
574d7dd147SGreg Roach        Session::start($request);
58b5979037SGreg Roach
5957ab2231SGreg Roach        $user = Auth::user();
6057ab2231SGreg Roach
61b5979037SGreg Roach        // Update the last-login time no more than once a minute.
62b5979037SGreg Roach        if (Session::get('masquerade') === null) {
631fe542e9SGreg Roach            $last = Carbon::createFromTimestamp((int) $user->getPreference(UserInterface::PREF_TIMESTAMP_ACTIVE));
64e88d077cSGreg Roach
65e88d077cSGreg Roach            if (Carbon::now()->subMinute()->gt($last)) {
661fe542e9SGreg Roach                $user->setPreference(UserInterface::PREF_TIMESTAMP_ACTIVE, (string) Carbon::now()->unix());
67b5979037SGreg Roach            }
68b5979037SGreg Roach        }
69b5979037SGreg Roach
70*e931043eSGreg Roach        // Allow request handlers, modules, etc. to have a dependency on the current user.
71*e931043eSGreg Roach        Webtrees::set(UserInterface::class, $user);
72*e931043eSGreg Roach
7357ab2231SGreg Roach        $request = $request->withAttribute('user', $user);
740c8c69d4SGreg Roach
758246ffa1SGreg Roach        $response = $handler->handle($request);
768246ffa1SGreg Roach
77dc6b8e0eSGreg Roach        Session::save();
788246ffa1SGreg Roach
798246ffa1SGreg Roach        return $response;
80b5979037SGreg Roach    }
81b5979037SGreg Roach}
82