mirror of
https://github.com/friendica/friendica
synced 2025-04-25 22:30:10 +00:00
148 lines
3.8 KiB
PHP
148 lines
3.8 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
|
*
|
|
* @license GNU AGPL version 3 or any later version
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
namespace Friendica\Core\Session\Handler;
|
|
|
|
use Friendica\Core\Session;
|
|
use Friendica\Database\Database as DBA;
|
|
use Psr\Log\LoggerInterface;
|
|
use SessionHandlerInterface;
|
|
|
|
/**
|
|
* SessionHandler using database
|
|
*/
|
|
class Database implements SessionHandlerInterface
|
|
{
|
|
/** @var DBA */
|
|
private $dba;
|
|
/** @var LoggerInterface */
|
|
private $logger;
|
|
/** @var array The $_SERVER variable */
|
|
private $server;
|
|
|
|
/**
|
|
* DatabaseSessionHandler constructor.
|
|
*
|
|
* @param DBA $dba
|
|
* @param LoggerInterface $logger
|
|
* @param array $server
|
|
*/
|
|
public function __construct(DBA $dba, LoggerInterface $logger, array $server)
|
|
{
|
|
$this->dba = $dba;
|
|
$this->logger = $logger;
|
|
$this->server = $server;
|
|
}
|
|
|
|
public function open($path, $name): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function read($id)
|
|
{
|
|
if (empty($id)) {
|
|
return '';
|
|
}
|
|
|
|
try {
|
|
$session = $this->dba->selectFirst('session', ['data'], ['sid' => $id]);
|
|
if ($this->dba->isResult($session)) {
|
|
Session::$exists = true;
|
|
return $session['data'];
|
|
}
|
|
} catch (\Exception $exception) {
|
|
$this->logger->warning('Cannot read session.', ['id' => $id, 'exception' => $exception]);
|
|
return '';
|
|
}
|
|
|
|
$this->logger->notice('no data for session', ['session_id' => $id, 'uri' => $this->server['REQUEST_URI'] ?? '']);
|
|
|
|
return '';
|
|
}
|
|
|
|
/**
|
|
* Standard PHP session write callback
|
|
*
|
|
* This callback updates the DB-stored session data and/or the expiration depending
|
|
* on the case. Uses the Session::expire global for existing session, 5 minutes
|
|
* for newly created session.
|
|
*
|
|
* @param string $id Session ID with format: [a-z0-9]{26}
|
|
* @param string $data Serialized session data
|
|
*
|
|
* @return bool Returns false if parameters are missing, true otherwise
|
|
*/
|
|
public function write($id, $data): bool
|
|
{
|
|
if (!$id) {
|
|
return false;
|
|
}
|
|
|
|
if (!$data) {
|
|
return $this->destroy($id);
|
|
}
|
|
|
|
$expire = time() + Session::$expire;
|
|
$default_expire = time() + 300;
|
|
|
|
try {
|
|
if (Session::$exists) {
|
|
$fields = ['data' => $data, 'expire' => $expire];
|
|
$condition = ["`sid` = ? AND (`data` != ? OR `expire` != ?)", $id, $data, $expire];
|
|
$this->dba->update('session', $fields, $condition);
|
|
} else {
|
|
$fields = ['sid' => $id, 'expire' => $default_expire, 'data' => $data];
|
|
$this->dba->insert('session', $fields);
|
|
}
|
|
} catch (\Exception $exception) {
|
|
$this->logger->warning('Cannot write session.', ['id' => $id, 'exception' => $exception]);
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
public function close(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function destroy($id): bool
|
|
{
|
|
try {
|
|
return $this->dba->delete('session', ['sid' => $id]);
|
|
} catch (\Exception $exception) {
|
|
$this->logger->warning('Cannot destroy session.', ['id' => $id, 'exception' => $exception]);
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public function gc($max_lifetime): bool
|
|
{
|
|
try {
|
|
return $this->dba->delete('session', ["`expire` < ?", time()]);
|
|
} catch (\Exception $exception) {
|
|
$this->logger->warning('Cannot use garbage collector.', ['exception' => $exception]);
|
|
return false;
|
|
}
|
|
}
|
|
}
|