]> git.mxchange.org Git - friendica.git/blob - src/Core/Session.php
Fix "redir" loop
[friendica.git] / src / Core / Session.php
1 <?php
2
3 /**
4  * @file src/Core/Session.php
5  */
6 namespace Friendica\Core;
7
8 use Friendica\App;
9 use Friendica\Core\Session\CacheSessionHandler;
10 use Friendica\Core\Session\DatabaseSessionHandler;
11 use Friendica\Database\DBA;
12 use Friendica\Model\Contact;
13 use Friendica\Model\User;
14 use Friendica\Util\DateTimeFormat;
15 use Friendica\Util\Strings;
16
17 /**
18  * High-level Session service class
19  *
20  * @author Hypolite Petovan <hypolite@mrpetovan.com>
21  */
22 class Session
23 {
24         public static $exists = false;
25         public static $expire = 180000;
26
27         public static function init()
28         {
29                 ini_set('session.gc_probability', 50);
30                 ini_set('session.use_only_cookies', 1);
31                 ini_set('session.cookie_httponly', 1);
32
33                 if (Config::get('system', 'ssl_policy') == App\BaseURL::SSL_POLICY_FULL) {
34                         ini_set('session.cookie_secure', 1);
35                 }
36
37                 $session_handler = Config::get('system', 'session_handler', 'database');
38                 if ($session_handler != 'native') {
39                         if ($session_handler == 'cache' && Config::get('system', 'cache_driver', 'database') != 'database') {
40                                 $SessionHandler = new CacheSessionHandler();
41                         } else {
42                                 $SessionHandler = new DatabaseSessionHandler();
43                         }
44
45                         session_set_save_handler($SessionHandler);
46                 }
47         }
48
49         public static function exists($name)
50         {
51                 return isset($_SESSION[$name]);
52         }
53
54         /**
55          * Retrieves a key from the session super global or the defaults if the key is missing or the value is falsy.
56          * 
57          * Handle the case where session_start() hasn't been called and the super global isn't available.
58          *
59          * @param string $name
60          * @param mixed $defaults
61          * @return mixed
62          */
63         public static function get($name, $defaults = null)
64         {
65                 return $_SESSION[$name] ?? $defaults;
66         }
67
68         /**
69          * Sets a single session variable.
70          * Overrides value of existing key.
71          *
72          * @param string $name
73          * @param mixed $value
74          */
75         public static function set($name, $value)
76         {
77                 $_SESSION[$name] = $value;
78         }
79
80         /**
81          * Sets multiple session variables.
82          * Overrides values for existing keys.
83          *
84          * @param array $values
85          */
86         public static function setMultiple(array $values)
87         {
88                 $_SESSION = $values + $_SESSION;
89         }
90
91         /**
92          * Removes a session variable.
93          * Ignores missing keys.
94          *
95          * @param $name
96          */
97         public static function remove($name)
98         {
99                 unset($_SESSION[$name]);
100         }
101
102         /**
103          * @brief Sets the provided user's authenticated session
104          *
105          * @param App   $a
106          * @param array $user_record
107          * @param bool  $login_initial
108          * @param bool  $interactive
109          * @param bool  $login_refresh
110          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
111          */
112         public static function setAuthenticatedForUser(App $a, array $user_record, $login_initial = false, $interactive = false, $login_refresh = false)
113         {
114                 self::setMultiple([
115                         'uid'           => $user_record['uid'],
116                         'theme'         => $user_record['theme'],
117                         'mobile-theme'  => PConfig::get($user_record['uid'], 'system', 'mobile_theme'),
118                         'authenticated' => 1,
119                         'page_flags'    => $user_record['page-flags'],
120                         'my_url'        => $a->getBaseURL() . '/profile/' . $user_record['nickname'],
121                         'my_address'    => $user_record['nickname'] . '@' . substr($a->getBaseURL(), strpos($a->getBaseURL(), '://') + 3),
122                         'addr'          => defaults($_SERVER, 'REMOTE_ADDR', '0.0.0.0'),
123                 ]);
124
125                 $remote_contacts = DBA::select('contact', ['id', 'uid'], ['nurl' => Strings::normaliseLink($_SESSION['my_url']), 'rel' => [Contact::FOLLOWER, Contact::FRIEND]]);
126                 while ($contact = DBA::fetch($remote_contacts)) {
127                         if (($contact['uid'] == 0) || Contact::isBlockedByUser($contact['id'], $contact['uid'])) {
128                                 continue;
129                         }
130
131                         $_SESSION['remote'][] = ['cid' => $contact['id'], 'uid' => $contact['uid'], 'url' => $_SESSION['my_url']];
132                 }
133                 DBA::close($remote_contacts);
134
135                 $member_since = strtotime($user_record['register_date']);
136                 self::set('new_member', time() < ($member_since + ( 60 * 60 * 24 * 14)));
137
138                 if (strlen($user_record['timezone'])) {
139                         date_default_timezone_set($user_record['timezone']);
140                         $a->timezone = $user_record['timezone'];
141                 }
142
143                 $masterUid = $user_record['uid'];
144
145                 if (self::get('submanage')) {
146                         $user = DBA::selectFirst('user', ['uid'], ['uid' => self::get('submanage')]);
147                         if (DBA::isResult($user)) {
148                                 $masterUid = $user['uid'];
149                         }
150                 }
151
152                 $a->identities = User::identities($masterUid);
153
154                 if ($login_initial) {
155                         $a->getLogger()->info('auth_identities: ' . print_r($a->identities, true));
156                 }
157
158                 if ($login_refresh) {
159                         $a->getLogger()->info('auth_identities refresh: ' . print_r($a->identities, true));
160                 }
161
162                 $contact = DBA::selectFirst('contact', [], ['uid' => $user_record['uid'], 'self' => true]);
163                 if (DBA::isResult($contact)) {
164                         $a->contact = $contact;
165                         $a->cid = $contact['id'];
166                         self::set('cid', $a->cid);
167                 }
168
169                 header('X-Account-Management-Status: active; name="' . $user_record['username'] . '"; id="' . $user_record['nickname'] . '"');
170
171                 if ($login_initial || $login_refresh) {
172                         DBA::update('user', ['login_date' => DateTimeFormat::utcNow()], ['uid' => $user_record['uid']]);
173
174                         // Set the login date for all identities of the user
175                         DBA::update('user', ['login_date' => DateTimeFormat::utcNow()],
176                                 ['parent-uid' => $masterUid, 'account_removed' => false]);
177                 }
178
179                 if ($login_initial) {
180                         /*
181                          * If the user specified to remember the authentication, then set a cookie
182                          * that expires after one week (the default is when the browser is closed).
183                          * The cookie will be renewed automatically.
184                          * The week ensures that sessions will expire after some inactivity.
185                          */
186                         ;
187                         if (self::get('remember')) {
188                                 $a->getLogger()->info('Injecting cookie for remembered user ' . $user_record['nickname']);
189                                 Authentication::setCookie(604800, $user_record);
190                                 self::remove('remember');
191                         }
192                 }
193
194                 Authentication::twoFactorCheck($user_record['uid'], $a);
195
196                 if ($interactive) {
197                         if ($user_record['login_date'] <= DBA::NULL_DATETIME) {
198                                 info(L10n::t('Welcome %s', $user_record['username']));
199                                 info(L10n::t('Please upload a profile photo.'));
200                                 $a->internalRedirect('profile_photo/new');
201                         } else {
202                                 info(L10n::t("Welcome back %s", $user_record['username']));
203                         }
204                 }
205
206                 $a->user = $user_record;
207
208                 if ($login_initial) {
209                         Hook::callAll('logged_in', $a->user);
210
211                         if ($a->module !== 'home' && self::exists('return_path')) {
212                                 $a->internalRedirect(self::get('return_path'));
213                         }
214                 }
215         }
216 }