]> git.mxchange.org Git - friendica.git/blob - src/Core/Session.php
Fix session size problems
[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                         /// @todo Change it to this format to save space
132                         // $_SESSION['remote'][$contact['uid']] = $contact['id'];
133                         $_SESSION['remote'][$contact['uid']] = ['cid' => $contact['id'], 'uid' => $contact['uid']];
134                 }
135                 DBA::close($remote_contacts);
136
137                 $member_since = strtotime($user_record['register_date']);
138                 self::set('new_member', time() < ($member_since + ( 60 * 60 * 24 * 14)));
139
140                 if (strlen($user_record['timezone'])) {
141                         date_default_timezone_set($user_record['timezone']);
142                         $a->timezone = $user_record['timezone'];
143                 }
144
145                 $masterUid = $user_record['uid'];
146
147                 if (self::get('submanage')) {
148                         $user = DBA::selectFirst('user', ['uid'], ['uid' => self::get('submanage')]);
149                         if (DBA::isResult($user)) {
150                                 $masterUid = $user['uid'];
151                         }
152                 }
153
154                 $a->identities = User::identities($masterUid);
155
156                 if ($login_initial) {
157                         $a->getLogger()->info('auth_identities: ' . print_r($a->identities, true));
158                 }
159
160                 if ($login_refresh) {
161                         $a->getLogger()->info('auth_identities refresh: ' . print_r($a->identities, true));
162                 }
163
164                 $contact = DBA::selectFirst('contact', [], ['uid' => $user_record['uid'], 'self' => true]);
165                 if (DBA::isResult($contact)) {
166                         $a->contact = $contact;
167                         $a->cid = $contact['id'];
168                         self::set('cid', $a->cid);
169                 }
170
171                 header('X-Account-Management-Status: active; name="' . $user_record['username'] . '"; id="' . $user_record['nickname'] . '"');
172
173                 if ($login_initial || $login_refresh) {
174                         DBA::update('user', ['login_date' => DateTimeFormat::utcNow()], ['uid' => $user_record['uid']]);
175
176                         // Set the login date for all identities of the user
177                         DBA::update('user', ['login_date' => DateTimeFormat::utcNow()],
178                                 ['parent-uid' => $masterUid, 'account_removed' => false]);
179                 }
180
181                 if ($login_initial) {
182                         /*
183                          * If the user specified to remember the authentication, then set a cookie
184                          * that expires after one week (the default is when the browser is closed).
185                          * The cookie will be renewed automatically.
186                          * The week ensures that sessions will expire after some inactivity.
187                          */
188                         ;
189                         if (self::get('remember')) {
190                                 $a->getLogger()->info('Injecting cookie for remembered user ' . $user_record['nickname']);
191                                 Authentication::setCookie(604800, $user_record);
192                                 self::remove('remember');
193                         }
194                 }
195
196                 Authentication::twoFactorCheck($user_record['uid'], $a);
197
198                 if ($interactive) {
199                         if ($user_record['login_date'] <= DBA::NULL_DATETIME) {
200                                 info(L10n::t('Welcome %s', $user_record['username']));
201                                 info(L10n::t('Please upload a profile photo.'));
202                                 $a->internalRedirect('profile_photo/new');
203                         } else {
204                                 info(L10n::t("Welcome back %s", $user_record['username']));
205                         }
206                 }
207
208                 $a->user = $user_record;
209
210                 if ($login_initial) {
211                         Hook::callAll('logged_in', $a->user);
212
213                         if ($a->module !== 'home' && self::exists('return_path')) {
214                                 $a->internalRedirect(self::get('return_path'));
215                         }
216                 }
217         }
218 }