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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<?php
/**
* @see https://github.com/laminas/laminas-session for the canonical source repository
* @copyright https://github.com/laminas/laminas-session/blob/master/COPYRIGHT.md
* @license https://github.com/laminas/laminas-session/blob/master/LICENSE.md New BSD License
*/
namespace Laminas\Session;
use Laminas\Session\Config\ConfigInterface as Config;
use Laminas\Session\ManagerInterface as Manager;
use Laminas\Session\SaveHandler\SaveHandlerInterface as SaveHandler;
use Laminas\Session\Storage\StorageInterface as Storage;
/**
* Base ManagerInterface implementation
*
* Defines common constructor logic and getters for Storage and Configuration
*/
abstract class AbstractManager implements Manager
{
/**
* @var Config
*/
protected $config;
/**
* Default configuration class to use when no configuration provided
* @var string
*/
protected $defaultConfigClass = 'Laminas\Session\Config\SessionConfig';
/**
* @var Storage
*/
protected $storage;
/**
* Default storage class to use when no storage provided
* @var string
*/
protected $defaultStorageClass = 'Laminas\Session\Storage\SessionArrayStorage';
/**
* @var SaveHandler
*/
protected $saveHandler;
/**
* @var array
*/
protected $validators;
/**
* Constructor
*
* @param Config|null $config
* @param Storage|null $storage
* @param SaveHandler|null $saveHandler
* @param array $validators
* @throws Exception\RuntimeException
*/
public function __construct(
Config $config = null,
Storage $storage = null,
SaveHandler $saveHandler = null,
array $validators = []
) {
// init config
if ($config === null) {
if (! class_exists($this->defaultConfigClass)) {
throw new Exception\RuntimeException(sprintf(
'Unable to locate config class "%s"; class does not exist',
$this->defaultConfigClass
));
}
$config = new $this->defaultConfigClass();
if (! $config instanceof Config) {
throw new Exception\RuntimeException(sprintf(
'Default config class %s is invalid; must implement %s\Config\ConfigInterface',
$this->defaultConfigClass,
__NAMESPACE__
));
}
}
$this->config = $config;
// init storage
if ($storage === null) {
if (! class_exists($this->defaultStorageClass)) {
throw new Exception\RuntimeException(sprintf(
'Unable to locate storage class "%s"; class does not exist',
$this->defaultStorageClass
));
}
$storage = new $this->defaultStorageClass();
if (! $storage instanceof Storage) {
throw new Exception\RuntimeException(sprintf(
'Default storage class %s is invalid; must implement %s\Storage\StorageInterface',
$this->defaultConfigClass,
__NAMESPACE__
));
}
}
$this->storage = $storage;
// save handler
if ($saveHandler !== null) {
$this->saveHandler = $saveHandler;
}
$this->validators = $validators;
}
/**
* Set configuration object
*
* @param Config $config
* @return AbstractManager
*/
public function setConfig(Config $config)
{
$this->config = $config;
return $this;
}
/**
* Retrieve configuration object
*
* @return Config
*/
public function getConfig()
{
return $this->config;
}
/**
* Set session storage object
*
* @param Storage $storage
* @return AbstractManager
*/
public function setStorage(Storage $storage)
{
$this->storage = $storage;
return $this;
}
/**
* Retrieve storage object
*
* @return Storage
*/
public function getStorage()
{
return $this->storage;
}
/**
* Set session save handler object
*
* @param SaveHandler $saveHandler
* @return AbstractManager
*/
public function setSaveHandler(SaveHandler $saveHandler)
{
$this->saveHandler = $saveHandler;
return $this;
}
/**
* Get SaveHandler Object
*
* @return SaveHandler
*/
public function getSaveHandler()
{
return $this->saveHandler;
}
}