]> git.mxchange.org Git - friendica.git/blob - src/Core/Session.php
Remove confirm template obsolete uses (except for contacts)
[friendica.git] / src / Core / Session.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
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  */
21
22 namespace Friendica\Core;
23
24 use Friendica\Database\DBA;
25 use Friendica\DI;
26 use Friendica\Model\Contact;
27 use Friendica\Util\Strings;
28
29 /**
30  * High-level Session service class
31  */
32 class Session
33 {
34         public static $exists = false;
35         public static $expire = 180000;
36
37         public static function exists($name)
38         {
39                 return DI::session()->exists($name);
40         }
41
42         public static function get($name, $defaults = null)
43         {
44                 return DI::session()->get($name, $defaults);
45         }
46
47         public static function set($name, $value)
48         {
49                 DI::session()->set($name, $value);
50         }
51
52         public static function setMultiple(array $values)
53         {
54                 DI::session()->setMultiple($values);
55         }
56
57         public static function remove($name)
58         {
59                 DI::session()->remove($name);
60         }
61
62         public static function clear()
63         {
64                 DI::session()->clear();
65         }
66
67         /**
68          * Return the user contact ID of a visitor for the given user ID they are visiting
69          *
70          * @param integer $uid User ID
71          * @return integer
72          */
73         public static function getRemoteContactID($uid)
74         {
75                 $session = DI::session();
76
77                 if (empty($session->get('remote')[$uid])) {
78                         return 0;
79                 }
80
81                 return $session->get('remote')[$uid];
82         }
83
84         /**
85          * Returns User ID for given contact ID of the visitor
86          *
87          * @param integer $cid Contact ID
88          * @return integer User ID for given contact ID of the visitor
89          */
90         public static function getUserIDForVisitorContactID($cid)
91         {
92                 $session = DI::session();
93
94                 if (empty($session->get('remote'))) {
95                         return false;
96                 }
97
98                 return array_search($cid, $session->get('remote'));
99         }
100
101         /**
102          * Set the session variable that contains the contact IDs for the visitor's contact URL
103          *
104          * @param string $url Contact URL
105          */
106         public static function setVisitorsContacts()
107         {
108                 $session = DI::session();
109
110                 $session->set('remote', []);
111
112                 $remote_contacts = DBA::select('contact', ['id', 'uid'], ['nurl' => Strings::normaliseLink($session->get('my_url')), 'rel' => [Contact::FOLLOWER, Contact::FRIEND], 'self' => false]);
113                 while ($contact = DBA::fetch($remote_contacts)) {
114                         if (($contact['uid'] == 0) || Contact\User::isBlocked($contact['id'], $contact['uid'])) {
115                                 continue;
116                         }
117
118                         $session->set('remote', [$contact['uid'] => $contact['id']]);
119                 }
120                 DBA::close($remote_contacts);
121         }
122
123         /**
124          * Returns if the current visitor is authenticated
125          *
126          * @return boolean "true" when visitor is either a local or remote user
127          */
128         public static function isAuthenticated()
129         {
130                 $session = DI::session();
131
132                 return $session->get('authenticated', false);
133         }
134 }