first commit
This commit is contained in:
41
admininistrator/controller/startup/session.php
Normal file
41
admininistrator/controller/startup/session.php
Normal file
@ -0,0 +1,41 @@
|
||||
<?php
|
||||
namespace Opencart\Admin\Controller\Startup;
|
||||
/**
|
||||
* Class Session
|
||||
*
|
||||
* @package Opencart\Admin\Controller\Startup
|
||||
*/
|
||||
class Session extends \Opencart\System\Engine\Controller {
|
||||
/**
|
||||
* @return void
|
||||
* @throws \Exception
|
||||
*/
|
||||
public function index(): void {
|
||||
$session = new \Opencart\System\Library\Session($this->config->get('session_engine'), $this->registry);
|
||||
$this->registry->set('session', $session);
|
||||
|
||||
if (isset($this->request->cookie[$this->config->get('session_name')])) {
|
||||
$session_id = $this->request->cookie[$this->config->get('session_name')];
|
||||
} else {
|
||||
$session_id = '';
|
||||
}
|
||||
|
||||
$session->start($session_id);
|
||||
|
||||
// Update the session lifetime
|
||||
if ($this->config->get('config_session_expire')) {
|
||||
$this->config->set('session_expire', $this->config->get('config_session_expire'));
|
||||
}
|
||||
|
||||
// Require higher security for session cookies
|
||||
$option = [
|
||||
'expires' => $this->config->get('config_session_expire') ? time() + (int)$this->config->get('config_session_expire') : 0,
|
||||
'path' => $this->config->get('session_path'),
|
||||
'secure' => $this->request->server['HTTPS'],
|
||||
'httponly' => false,
|
||||
'SameSite' => $this->config->get('config_session_samesite')
|
||||
];
|
||||
|
||||
setcookie($this->config->get('session_name'), $session->getId(), $option);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user