]> git.mxchange.org Git - friendica.git/blob - src/Core/Session/CacheSessionHandler.php
some minor fixings
[friendica.git] / src / Core / Session / CacheSessionHandler.php
1 <?php
2
3 namespace Friendica\Core\Session;
4
5 use Friendica\BaseObject;
6 use Friendica\Core\Cache;
7 use Friendica\Core\Logger;
8 use Friendica\Core\Session;
9 use SessionHandlerInterface;
10
11 /**
12  * SessionHandler using Friendica Cache
13  *
14  * @author Hypolite Petovan <hypolite@mrpetovan.com>
15  */
16 class CacheSessionHandler extends BaseObject implements SessionHandlerInterface
17 {
18         public function open($save_path, $session_name)
19         {
20                 return true;
21         }
22
23         public function read($session_id)
24         {
25                 if (empty($session_id)) {
26                         return '';
27                 }
28
29                 $data = Cache::get('session:' . $session_id);
30                 if (!empty($data)) {
31                         Session::$exists = true;
32                         return $data;
33                 }
34
35                 Logger::notice('no data for session', ['session_id' => $session_id, 'uri' => $_SERVER['REQUEST_URI']]);
36
37                 return '';
38         }
39
40         /**
41          * @brief Standard PHP session write callback
42          *
43          * This callback updates the stored session data and/or the expiration depending
44          * on the case. Uses the Session::expire for existing session, 5 minutes
45          * for newly created session.
46          *
47          * @param  string $session_id   Session ID with format: [a-z0-9]{26}
48          * @param  string $session_data Serialized session data
49          * @return boolean Returns false if parameters are missing, true otherwise
50          * @throws \Exception
51          */
52         public function write($session_id, $session_data)
53         {
54                 if (!$session_id) {
55                         return false;
56                 }
57
58                 if (!$session_data) {
59                         return true;
60                 }
61
62                 $return = Cache::set('session:' . $session_id, $session_data, Session::$expire);
63
64                 return $return;
65         }
66
67         public function close()
68         {
69                 return true;
70         }
71
72         public function destroy($id)
73         {
74                 $return = Cache::delete('session:' . $id);
75
76                 return $return;
77         }
78
79         public function gc($maxlifetime)
80         {
81                 return true;
82         }
83 }