| Total Complexity | 48 |
| Total Lines | 308 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
Complex classes like Cookie often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Cookie, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 15 | class Cookie |
||
|
1 ignored issue
–
show
|
|||
| 16 | { |
||
| 17 | /** |
||
| 18 | * 配置参数 |
||
| 19 | * @var array |
||
| 20 | */ |
||
| 21 | protected $config = [ |
||
| 22 | // cookie 名称前缀 |
||
| 23 | 'prefix' => '', |
||
| 24 | // cookie 保存时间 |
||
| 25 | 'expire' => 0, |
||
| 26 | // cookie 保存路径 |
||
| 27 | 'path' => '/', |
||
| 28 | // cookie 有效域名 |
||
| 29 | 'domain' => '', |
||
| 30 | // cookie 启用安全传输 |
||
| 31 | 'secure' => false, |
||
| 32 | // httponly设置 |
||
| 33 | 'httponly' => false, |
||
| 34 | // 是否使用 setcookie |
||
| 35 | 'setcookie' => true, |
||
| 36 | // 是否自动写入 |
||
| 37 | 'auto_write' => true, |
||
| 38 | ]; |
||
| 39 | |||
| 40 | /** |
||
| 41 | * 是否初始化 |
||
| 42 | * @var bool |
||
| 43 | */ |
||
| 44 | protected $init; |
||
| 45 | |||
| 46 | /** |
||
| 47 | * Cookie数据 |
||
| 48 | * @var array |
||
| 49 | */ |
||
| 50 | protected $data = []; |
||
| 51 | |||
| 52 | /** |
||
| 53 | * Cookie写入数据 |
||
| 54 | * @var array |
||
| 55 | */ |
||
| 56 | protected $cookie = []; |
||
| 57 | |||
| 58 | /** |
||
| 59 | * 构造方法 |
||
| 60 | * @access public |
||
| 61 | */ |
||
| 62 | public function __construct(array $config = []) |
||
| 63 | { |
||
| 64 | $this->init($config); |
||
| 65 | } |
||
| 66 | |||
| 67 | public static function __make(Config $config) |
||
|
1 ignored issue
–
show
|
|||
| 68 | { |
||
| 69 | return (new static($config->get('cookie')))->setData($_COOKIE); |
||
| 70 | } |
||
| 71 | |||
| 72 | /** |
||
| 73 | * Cookie初始化 |
||
| 74 | * @access public |
||
| 75 | * @param array $config |
||
| 76 | * @return void |
||
| 77 | */ |
||
| 78 | public function init(array $config = []): void |
||
| 79 | { |
||
| 80 | $this->config = array_merge($this->config, array_change_key_case($config)); |
||
| 81 | |||
| 82 | if (!empty($this->config['httponly']) && PHP_SESSION_ACTIVE != session_status()) { |
||
| 83 | ini_set('session.cookie_httponly', '1'); |
||
| 84 | } |
||
| 85 | } |
||
| 86 | |||
| 87 | /** |
||
| 88 | * 设置cookie数据 |
||
| 89 | * @access public |
||
| 90 | * @param array $data |
||
| 91 | * @return void |
||
| 92 | */ |
||
| 93 | public function setData(array $data): void |
||
| 94 | { |
||
| 95 | $this->data = $data; |
||
| 96 | } |
||
| 97 | |||
| 98 | /** |
||
| 99 | * 获取cookie保存数据 |
||
| 100 | * @access public |
||
| 101 | * @return array |
||
| 102 | */ |
||
| 103 | public function getCookie(): array |
||
| 104 | { |
||
| 105 | return $this->cookie; |
||
| 106 | } |
||
| 107 | |||
| 108 | /** |
||
| 109 | * 设置或者获取cookie作用域(前缀) |
||
| 110 | * @access public |
||
| 111 | * @param string $prefix |
||
| 112 | * @return string|void |
||
| 113 | */ |
||
| 114 | public function prefix(string $prefix = '') |
||
| 115 | { |
||
| 116 | if (empty($prefix)) { |
||
| 117 | return $this->config['prefix']; |
||
| 118 | } |
||
| 119 | |||
| 120 | $this->config['prefix'] = $prefix; |
||
| 121 | } |
||
| 122 | |||
| 123 | /** |
||
| 124 | * Cookie 设置 |
||
| 125 | * |
||
| 126 | * @access public |
||
| 127 | * @param string $name cookie名称 |
||
| 128 | * @param mixed $value cookie值 |
||
| 129 | * @param null|integer|array $option 可选参数 可能会是 |
||
| 130 | * @return void |
||
| 131 | */ |
||
| 132 | public function set(string $name, $value = '', $option = null): void |
||
| 133 | { |
||
| 134 | !isset($this->init) && $this->init(); |
||
| 135 | |||
| 136 | // 参数设置(会覆盖黙认设置) |
||
| 137 | if (!is_null($option)) { |
||
| 138 | if (is_numeric($option)) { |
||
| 139 | $option = ['expire' => $option]; |
||
| 140 | } |
||
| 141 | |||
| 142 | $config = array_merge($this->config, array_change_key_case($option)); |
||
| 143 | } else { |
||
| 144 | $config = $this->config; |
||
| 145 | } |
||
| 146 | |||
| 147 | $name = $config['prefix'] . $name; |
||
| 148 | |||
| 149 | // 设置cookie |
||
| 150 | if (is_array($value)) { |
||
| 151 | array_walk_recursive($value, [$this, 'jsonFormatProtect'], 'encode'); |
||
| 152 | $value = 'think:' . json_encode($value); |
||
| 153 | } |
||
| 154 | |||
| 155 | $expire = !empty($config['expire']) ? $_SERVER['REQUEST_TIME'] + intval($config['expire']) : 0; |
||
| 156 | |||
| 157 | $this->data[$name] = $value; |
||
| 158 | |||
| 159 | $this->setCookie($name, (string) $value, $expire, $config); |
||
| 160 | } |
||
| 161 | |||
| 162 | /** |
||
| 163 | * Cookie 保存 |
||
| 164 | * |
||
| 165 | * @access public |
||
| 166 | * @param string $name cookie名称 |
||
| 167 | * @param mixed $value cookie值 |
||
| 168 | * @param int $expire 有效期 |
||
| 169 | * @param array $option 可选参数 |
||
| 170 | * @return void |
||
| 171 | */ |
||
| 172 | protected function setCookie(string $name, string $value, int $expire, array $option = []): void |
||
| 173 | { |
||
| 174 | $this->cookie[$name] = [$value, $expire, $option]; |
||
| 175 | } |
||
| 176 | |||
| 177 | /** |
||
| 178 | * 永久保存Cookie数据 |
||
| 179 | * @access public |
||
| 180 | * @param string $name cookie名称 |
||
| 181 | * @param mixed $value cookie值 |
||
| 182 | * @param mixed $option 可选参数 可能会是 null|integer|string |
||
| 183 | * @return void |
||
| 184 | */ |
||
| 185 | public function forever(string $name, $value = '', $option = null): void |
||
| 186 | { |
||
| 187 | if (is_null($option) || is_numeric($option)) { |
||
| 188 | $option = []; |
||
| 189 | } |
||
| 190 | |||
| 191 | $option['expire'] = 315360000; |
||
| 192 | |||
| 193 | $this->set($name, $value, $option); |
||
| 194 | } |
||
| 195 | |||
| 196 | /** |
||
| 197 | * 判断Cookie数据 |
||
| 198 | * @access public |
||
| 199 | * @param string $name cookie名称 |
||
| 200 | * @param string|null $prefix cookie前缀 |
||
| 201 | * @return bool |
||
| 202 | */ |
||
| 203 | public function has(string $name, string $prefix = null): bool |
||
| 204 | { |
||
| 205 | !isset($this->init) && $this->init(); |
||
| 206 | |||
| 207 | $prefix = !is_null($prefix) ? $prefix : $this->config['prefix']; |
||
| 208 | $name = $prefix . $name; |
||
| 209 | |||
| 210 | return isset($this->data[$name]); |
||
| 211 | } |
||
| 212 | |||
| 213 | /** |
||
| 214 | * Cookie获取 |
||
| 215 | * @access public |
||
| 216 | * @param string $name cookie名称 留空获取全部 |
||
| 217 | * @param string|null $prefix cookie前缀 |
||
| 218 | * @return mixed |
||
| 219 | */ |
||
| 220 | public function get(string $name = '', string $prefix = null) |
||
| 221 | { |
||
| 222 | !isset($this->init) && $this->init(); |
||
| 223 | |||
| 224 | $prefix = !is_null($prefix) ? $prefix : $this->config['prefix']; |
||
| 225 | $key = $prefix . $name; |
||
| 226 | |||
| 227 | if ('' == $name) { |
||
| 228 | if ($prefix) { |
||
| 229 | $value = []; |
||
| 230 | foreach ($this->data as $k => $val) { |
||
| 231 | if (0 === strpos($k, $prefix)) { |
||
| 232 | $value[$k] = $val; |
||
| 233 | } |
||
| 234 | } |
||
| 235 | } else { |
||
| 236 | $value = $this->data; |
||
| 237 | } |
||
| 238 | } elseif (isset($this->data[$key])) { |
||
| 239 | $value = $this->data[$key]; |
||
| 240 | |||
| 241 | if (0 === strpos($value, 'think:')) { |
||
| 242 | $value = substr($value, 6); |
||
| 243 | $value = json_decode($value, true); |
||
| 244 | array_walk_recursive($value, [$this, 'jsonFormatProtect'], 'decode'); |
||
| 245 | } |
||
| 246 | } else { |
||
| 247 | $value = null; |
||
| 248 | } |
||
| 249 | |||
| 250 | return $value; |
||
| 251 | } |
||
| 252 | |||
| 253 | /** |
||
| 254 | * Cookie删除 |
||
| 255 | * @access public |
||
| 256 | * @param string $name cookie名称 |
||
| 257 | * @param string|null $prefix cookie前缀 |
||
| 258 | * @return void |
||
| 259 | */ |
||
| 260 | public function delete(string $name, string $prefix = null): void |
||
| 261 | { |
||
| 262 | !isset($this->init) && $this->init(); |
||
| 263 | |||
| 264 | $config = $this->config; |
||
| 265 | $prefix = !is_null($prefix) ? $prefix : $config['prefix']; |
||
| 266 | $name = $prefix . $name; |
||
| 267 | |||
| 268 | $this->setCookie($name, '', $_SERVER['REQUEST_TIME'] - 3600, $config); |
||
| 269 | |||
| 270 | // 删除指定cookie |
||
| 271 | unset($this->data[$name]); |
||
| 272 | } |
||
| 273 | |||
| 274 | /** |
||
| 275 | * Cookie清空 |
||
| 276 | * @access public |
||
| 277 | * @param string|null $prefix cookie前缀 |
||
| 278 | * @return void |
||
| 279 | */ |
||
| 280 | public function clear(string $prefix = null): void |
||
| 281 | { |
||
| 282 | // 清除指定前缀的所有cookie |
||
| 283 | if (empty($this->data)) { |
||
| 284 | return; |
||
| 285 | } |
||
| 286 | |||
| 287 | !isset($this->init) && $this->init(); |
||
| 288 | |||
| 289 | // 要删除的cookie前缀,不指定则删除config设置的指定前缀 |
||
| 290 | $config = $this->config; |
||
| 291 | $prefix = !is_null($prefix) ? $prefix : $config['prefix']; |
||
| 292 | |||
| 293 | if ($prefix) { |
||
| 294 | // 如果前缀为空字符串将不作处理直接返回 |
||
| 295 | foreach ($this->data as $key => $val) { |
||
| 296 | if (0 === strpos($key, $prefix)) { |
||
| 297 | $this->setCookie($key, '', $_SERVER['REQUEST_TIME'] - 3600, $config); |
||
| 298 | unset($this->data[$key]); |
||
| 299 | } |
||
| 300 | } |
||
| 301 | } |
||
| 302 | |||
| 303 | return; |
||
| 304 | } |
||
| 305 | |||
| 306 | private function jsonFormatProtect(&$val, $key, $type = 'encode') |
||
| 310 | } |
||
| 311 | } |
||
| 312 | |||
| 313 | /** |
||
| 314 | * 析构方法 |
||
| 315 | * @access public |
||
| 316 | */ |
||
| 317 | public function __destruct() |
||
| 323 | } |
||
| 324 | } |
||
| 325 | } |
||
| 326 | } |
||
| 327 |