xref: /webtrees/app/GuestUser.php (revision 3976b4703df669696105ed6b024b96d433c8fbdb)
1e5a6b4d4SGreg Roach<?php
2*3976b470SGreg Roach
3e5a6b4d4SGreg Roach/**
4e5a6b4d4SGreg Roach * webtrees: online genealogy
5e5a6b4d4SGreg Roach * Copyright (C) 2019 webtrees development team
6e5a6b4d4SGreg Roach * This program is free software: you can redistribute it and/or modify
7e5a6b4d4SGreg Roach * it under the terms of the GNU General Public License as published by
8e5a6b4d4SGreg Roach * the Free Software Foundation, either version 3 of the License, or
9e5a6b4d4SGreg Roach * (at your option) any later version.
10e5a6b4d4SGreg Roach * This program is distributed in the hope that it will be useful,
11e5a6b4d4SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12e5a6b4d4SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13e5a6b4d4SGreg Roach * GNU General Public License for more details.
14e5a6b4d4SGreg Roach * You should have received a copy of the GNU General Public License
15e5a6b4d4SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
16e5a6b4d4SGreg Roach */
17e5a6b4d4SGreg Roachdeclare(strict_types=1);
18e5a6b4d4SGreg Roach
19e5a6b4d4SGreg Roachnamespace Fisharebest\Webtrees;
20e5a6b4d4SGreg Roach
21e5a6b4d4SGreg Roachuse Fisharebest\Webtrees\Contracts\UserInterface;
22e5a6b4d4SGreg Roach
23e5a6b4d4SGreg Roach/**
24e5a6b4d4SGreg Roach * A site visitor.
25e5a6b4d4SGreg Roach */
26e5a6b4d4SGreg Roachclass GuestUser implements UserInterface
27e5a6b4d4SGreg Roach{
28e5a6b4d4SGreg Roach    /**
29e5a6b4d4SGreg Roach     * @var string
30e5a6b4d4SGreg Roach     */
31e5a6b4d4SGreg Roach    private $email;
32e5a6b4d4SGreg Roach
33e5a6b4d4SGreg Roach    /**
34e5a6b4d4SGreg Roach     * @var string
35e5a6b4d4SGreg Roach     */
36e5a6b4d4SGreg Roach    private $real_name;
37e5a6b4d4SGreg Roach
38e5a6b4d4SGreg Roach    /**
39e5a6b4d4SGreg Roach     * GuestUser constructor.
40e5a6b4d4SGreg Roach     *
41e5a6b4d4SGreg Roach     * @param string $email
42e5a6b4d4SGreg Roach     * @param string $real_name
43e5a6b4d4SGreg Roach     */
44e2cbf57aSGreg Roach    public function __construct(string $email = 'GUEST_USER', string $real_name = 'GUEST_USER')
45e2cbf57aSGreg Roach    {
46e5a6b4d4SGreg Roach        $this->email = $email;
47e5a6b4d4SGreg Roach        $this->real_name = $real_name;
48e5a6b4d4SGreg Roach    }
49e5a6b4d4SGreg Roach
50e5a6b4d4SGreg Roach    /**
51e5a6b4d4SGreg Roach     * The user‘s internal identifier.
52e5a6b4d4SGreg Roach     *
53e5a6b4d4SGreg Roach     * @return int
54e5a6b4d4SGreg Roach     */
55e5a6b4d4SGreg Roach    public function id(): int
56e5a6b4d4SGreg Roach    {
57e5a6b4d4SGreg Roach        return 0;
58e5a6b4d4SGreg Roach    }
59e5a6b4d4SGreg Roach
60e5a6b4d4SGreg Roach    /**
61e5a6b4d4SGreg Roach     * The users email address.
62e5a6b4d4SGreg Roach     *
63e5a6b4d4SGreg Roach     * @return string
64e5a6b4d4SGreg Roach     */
65e5a6b4d4SGreg Roach    public function email(): string
66e5a6b4d4SGreg Roach    {
67e5a6b4d4SGreg Roach        return $this->email;
68e5a6b4d4SGreg Roach    }
69e5a6b4d4SGreg Roach
70e5a6b4d4SGreg Roach    /**
71e5a6b4d4SGreg Roach     * The user‘s real name.
72e5a6b4d4SGreg Roach     *
73e5a6b4d4SGreg Roach     * @return string
74e5a6b4d4SGreg Roach     */
75e5a6b4d4SGreg Roach    public function realName(): string
76e5a6b4d4SGreg Roach    {
77e5a6b4d4SGreg Roach        return $this->real_name;
78e5a6b4d4SGreg Roach    }
79e5a6b4d4SGreg Roach
80e5a6b4d4SGreg Roach    /**
81e5a6b4d4SGreg Roach     * The user‘s login name.
82e5a6b4d4SGreg Roach     *
83e5a6b4d4SGreg Roach     * @return string
84e5a6b4d4SGreg Roach     */
85e5a6b4d4SGreg Roach    public function userName(): string
86e5a6b4d4SGreg Roach    {
87e5a6b4d4SGreg Roach        return '';
88e5a6b4d4SGreg Roach    }
89e5a6b4d4SGreg Roach
90e5a6b4d4SGreg Roach    /**
91e5a6b4d4SGreg Roach     * @param string $setting_name
92e5a6b4d4SGreg Roach     * @param string $default
93e5a6b4d4SGreg Roach     *
94e5a6b4d4SGreg Roach     * @return string
95e5a6b4d4SGreg Roach     */
96e5a6b4d4SGreg Roach    public function getPreference(string $setting_name, string $default = ''): string
97e5a6b4d4SGreg Roach    {
98e5a6b4d4SGreg Roach        return Session::get('_GUEST_' . $setting_name, $default);
99e5a6b4d4SGreg Roach    }
100e5a6b4d4SGreg Roach
101e5a6b4d4SGreg Roach    /**
102e5a6b4d4SGreg Roach     * @param string $setting_name
103e5a6b4d4SGreg Roach     * @param string $setting_value
104e5a6b4d4SGreg Roach     *
105e5a6b4d4SGreg Roach     * @return UserInterface
106e5a6b4d4SGreg Roach     */
107e5a6b4d4SGreg Roach    public function setPreference(string $setting_name, string $setting_value): UserInterface
108e5a6b4d4SGreg Roach    {
109e5a6b4d4SGreg Roach        Session::put('_GUEST_' . $setting_name, $setting_value);
110e5a6b4d4SGreg Roach
111e5a6b4d4SGreg Roach        return $this;
112e5a6b4d4SGreg Roach    }
113e5a6b4d4SGreg Roach}
114