-
Notifications
You must be signed in to change notification settings - Fork 240
/
NativeSession.php
143 lines (128 loc) · 2.71 KB
/
NativeSession.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<?php
/*
* Part of the Sentinel package.
*
* NOTICE OF LICENSE
*
* Licensed under the 3-clause BSD License.
*
* This source file is subject to the 3-clause BSD License that is
* bundled with this package in the LICENSE file.
*
* @package Sentinel
* @version 5.1.0
* @author Cartalyst LLC
* @license BSD License (3-clause)
* @copyright (c) 2011-2020, Cartalyst LLC
* @link https://cartalyst.com
*/
namespace Cartalyst\Sentinel\Sessions;
class NativeSession implements SessionInterface
{
/**
* The session key.
*
* @var string
*/
protected $key = 'cartalyst_sentinel';
/**
* Constructor.
*
* @param string $key
*
* @return void
*/
public function __construct(string $key = null)
{
$this->key = $key;
$this->startSession();
}
/**
* Called upon destruction of the native session handler.
*
* @return void
*/
public function __destruct()
{
$this->writeSession();
}
/**
* {@inheritdoc}
*/
public function put($value): void
{
$this->setSession($value);
}
/**
* {@inheritdoc}
*/
public function get()
{
return $this->getSession();
}
/**
* {@inheritdoc}
*/
public function forget(): void
{
$this->forgetSession();
}
/**
* Starts the session if it does not exist.
*
* @return void
*/
protected function startSession(): void
{
// Check that the session hasn't already been started
if (session_status() != PHP_SESSION_ACTIVE && ! headers_sent()) {
session_start();
}
}
/**
* Writes the session.
*
* @return void
*/
protected function writeSession(): void
{
session_write_close();
}
/**
* Unserializes a value from the session and returns it.
*
* @return mixed
*/
protected function getSession()
{
if (isset($_SESSION[$this->key])) {
$value = $_SESSION[$this->key];
if ($value) {
return unserialize($value);
}
}
}
/**
* Interacts with the $_SESSION global to set a property on it.
* The property is serialized initially.
*
* @param mixed $value
*
* @return void
*/
protected function setSession($value): void
{
$_SESSION[$this->key] = serialize($value);
}
/**
* Forgets the Sentinel session from the global $_SESSION.
*
* @return void
*/
protected function forgetSession(): void
{
if (isset($_SESSION[$this->key])) {
unset($_SESSION[$this->key]);
}
}
}