requestStack = $request_stack; $this->connection = $connection; } /** * {@inheritdoc} */ public function open($save_path, $name) { return TRUE; } /** * {@inheritdoc} */ public function read($sid) { $data = ''; if (!empty($sid)) { // Read the session data from the database. $query = $this->connection ->queryRange('SELECT session FROM {sessions} WHERE sid = :sid', 0, 1, [':sid' => Crypt::hashBase64($sid)]); $data = (string) $query->fetchField(); } return $data; } /** * {@inheritdoc} */ public function write($sid, $value) { // The exception handler is not active at this point, so we need to do it // manually. try { $request = $this->requestStack->getCurrentRequest(); $fields = [ 'uid' => $request->getSession()->get('uid', 0), 'hostname' => $request->getClientIP(), 'session' => $value, 'timestamp' => REQUEST_TIME, ]; $this->connection->merge('sessions') ->keys(['sid' => Crypt::hashBase64($sid)]) ->fields($fields) ->execute(); return TRUE; } catch (\Exception $exception) { require_once DRUPAL_ROOT . '/core/includes/errors.inc'; // If we are displaying errors, then do so with no possibility of a // further uncaught exception being thrown. if (error_displayable()) { print '

Uncaught exception thrown in session handler.

'; print '

' . Error::renderExceptionSafe($exception) . '


'; } return FALSE; } } /** * {@inheritdoc} */ public function close() { return TRUE; } /** * {@inheritdoc} */ public function destroy($sid) { // Delete session data. $this->connection->delete('sessions') ->condition('sid', Crypt::hashBase64($sid)) ->execute(); return TRUE; } /** * {@inheritdoc} */ public function gc($lifetime) { // Be sure to adjust 'php_value session.gc_maxlifetime' to a large enough // value. For example, if you want user sessions to stay in your database // for three weeks before deleting them, you need to set gc_maxlifetime // to '1814400'. At that value, only after a user doesn't log in after // three weeks (1814400 seconds) will his/her session be removed. $this->connection->delete('sessions') ->condition('timestamp', REQUEST_TIME - $lifetime, '<') ->execute(); return TRUE; } }