]> git.mxchange.org Git - friendica.git/blob - src/Navigation/SystemMessages.php
HTML-escape notification contact names
[friendica.git] / src / Navigation / SystemMessages.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  * Friendica is a communications platform for integrated social communications
21  * utilising decentralised communications and linkage to several indie social
22  * projects - as well as popular mainstream providers.
23  *
24  * Our mission is to free our friends and families from the clutches of
25  * data-harvesting corporations, and pave the way to a future where social
26  * communications are free and open and flow between alternate providers as
27  * easily as email does today.
28  */
29
30 namespace Friendica\Navigation;
31
32 use Friendica\Core\Session\Capability\IHandleSessions;
33
34 class SystemMessages
35 {
36         /**
37          * @var IHandleSessions
38          */
39         private $session;
40
41         public function __construct(IHandleSessions $session)
42         {
43                 $this->session = $session;
44         }
45
46         public function addNotice(string $message)
47         {
48                 $sysmsg = $this->getNotices();
49
50                 $sysmsg[] = $message;
51
52                 $this->session->set('sysmsg', $sysmsg);
53         }
54
55         public function getNotices(): array
56         {
57                 return $this->session->get('sysmsg', []);
58         }
59
60         public function flushNotices(): array
61         {
62                 $notices = $this->getNotices();
63                 $this->session->remove('sysmsg');
64                 return $notices;
65         }
66
67         public function addInfo(string $message)
68         {
69                 $sysmsg = $this->getNotices();
70
71                 $sysmsg[] = $message;
72
73                 $this->session->set('sysmsg_info', $sysmsg);
74         }
75
76         public function getInfos(): array
77         {
78                 return $this->session->get('sysmsg_info', []);
79         }
80
81         public function flushInfos(): array
82         {
83                 $notices = $this->getInfos();
84                 $this->session->remove('sysmsg_info');
85                 return $notices;
86         }
87 }