tt-rss/include/sessions.php

144 lines
3.5 KiB
PHP
Raw Normal View History

2006-08-19 07:04:45 +00:00
<?php
namespace Sessions;
2013-04-17 11:36:34 +00:00
require_once "autoload.php";
2021-02-22 18:47:48 +00:00
require_once "functions.php";
2013-04-16 15:41:31 +00:00
require_once "errorhandler.php";
require_once "lib/gettext/gettext.inc.php";
2006-03-02 08:10:43 +00:00
2021-02-22 18:47:48 +00:00
$session_expire = min(2147483647 - time() - 1, max(\Config::get(\Config::SESSION_COOKIE_LIFETIME), 86400));
$session_name = \Config::get(\Config::SESSION_NAME);
2006-03-02 08:10:43 +00:00
if (\Config::is_server_https()) {
2021-02-22 11:41:09 +00:00
ini_set("session.cookie_secure", "true");
}
2021-02-22 11:41:09 +00:00
ini_set("session.gc_probability", "75");
2006-05-23 05:07:38 +00:00
ini_set("session.name", $session_name);
2021-02-22 11:41:09 +00:00
ini_set("session.use_only_cookies", "true");
2013-03-28 06:06:16 +00:00
ini_set("session.gc_maxlifetime", $session_expire);
2021-02-22 11:41:09 +00:00
ini_set("session.cookie_lifetime", "0");
2006-03-02 08:10:43 +00:00
2013-04-17 12:23:15 +00:00
function validate_session() {
2021-02-22 18:47:48 +00:00
if (\Config::get(\Config::SINGLE_USER_MODE)) return true;
2013-03-31 09:10:46 +00:00
2021-02-25 18:42:05 +00:00
if (isset($_SESSION["ref_schema_version"]) && $_SESSION["ref_schema_version"] != \Config::get_schema_version()) {
$_SESSION["login_error_msg"] =
__("Session failed to validate (schema version changed)");
2013-03-31 09:10:46 +00:00
return false;
}
$pdo = \Db::pdo();
2013-03-31 09:10:46 +00:00
if (!empty($_SESSION["uid"])) {
2021-02-23 06:01:27 +00:00
if ($_SESSION["user_agent"] != sha1($_SERVER['HTTP_USER_AGENT'])) {
2018-10-16 09:12:07 +00:00
$_SESSION["login_error_msg"] = __("Session failed to validate (UA changed).");
return false;
}
2017-12-01 11:48:23 +00:00
$sth = $pdo->prepare("SELECT pwd_hash FROM ttrss_users WHERE id = ?");
$sth->execute([$_SESSION['uid']]);
2013-03-31 09:10:46 +00:00
// user not found
2017-12-01 11:48:23 +00:00
if ($row = $sth->fetch()) {
$pwd_hash = $row["pwd_hash"];
2017-12-01 11:48:23 +00:00
if ($pwd_hash != $_SESSION["pwd_hash"]) {
$_SESSION["login_error_msg"] =
__("Session failed to validate (password changed)");
return false;
}
2013-03-31 09:10:46 +00:00
} else {
$_SESSION["login_error_msg"] =
__("Session failed to validate (user not found)");
return false;
2013-03-31 09:10:46 +00:00
}
}
return true;
}
function ttrss_open ($s, $n) {
2006-03-02 08:10:43 +00:00
return true;
}
function ttrss_read ($id){
2013-04-17 11:36:34 +00:00
global $session_expire;
$sth = \Db::pdo()->prepare("SELECT data FROM ttrss_sessions WHERE id=?");
2017-12-01 11:48:23 +00:00
$sth->execute([$id]);
2017-12-01 11:48:23 +00:00
if ($row = $sth->fetch()) {
return base64_decode($row["data"]);
2006-03-02 08:10:43 +00:00
2017-12-01 11:48:23 +00:00
} else {
$expire = time() + $session_expire;
2006-03-02 08:10:43 +00:00
$sth = \Db::pdo()->prepare("INSERT INTO ttrss_sessions (id, data, expire)
2017-12-01 11:48:23 +00:00
VALUES (?, '', ?)");
$sth->execute([$id, $expire]);
2017-12-01 11:48:23 +00:00
return "";
2006-03-02 08:10:43 +00:00
}
2013-04-17 11:36:34 +00:00
2006-03-02 08:10:43 +00:00
}
function ttrss_write ($id, $data) {
2013-04-17 11:36:34 +00:00
global $session_expire;
2013-04-17 11:36:34 +00:00
$data = base64_encode($data);
2006-03-02 08:10:43 +00:00
$expire = time() + $session_expire;
$sth = \Db::pdo()->prepare("SELECT id FROM ttrss_sessions WHERE id=?");
$sth->execute([$id]);
if ($row = $sth->fetch()) {
$sth = \Db::pdo()->prepare("UPDATE ttrss_sessions SET data=?, expire=? WHERE id=?");
$sth->execute([$data, $expire, $id]);
} else {
$sth = \Db::pdo()->prepare("INSERT INTO ttrss_sessions (id, data, expire)
VALUES (?, ?, ?)");
$sth->execute([$id, $data, $expire]);
}
2006-03-02 08:10:43 +00:00
return true;
}
function ttrss_close () {
2006-03-02 08:10:43 +00:00
return true;
}
2013-04-17 11:36:34 +00:00
function ttrss_destroy($id) {
$sth = \Db::pdo()->prepare("DELETE FROM ttrss_sessions WHERE id = ?");
2017-12-01 11:48:23 +00:00
$sth->execute([$id]);
2006-03-02 08:10:43 +00:00
return true;
}
function ttrss_gc ($expire) {
\Db::pdo()->query("DELETE FROM ttrss_sessions WHERE expire < " . time());
2015-12-07 12:25:31 +00:00
return true;
2006-03-02 08:10:43 +00:00
}
2021-02-22 18:47:48 +00:00
if (!\Config::get(\Config::SINGLE_USER_MODE)) {
session_set_save_handler('\Sessions\ttrss_open',
'\Sessions\ttrss_close', '\Sessions\ttrss_read',
'\Sessions\ttrss_write', '\Sessions\ttrss_destroy',
'\Sessions\ttrss_gc');
2013-04-17 11:36:34 +00:00
register_shutdown_function('session_write_close');
}
2007-03-01 12:09:05 +00:00
if (!defined('NO_SESSION_AUTOSTART')) {
if (isset($_COOKIE[session_name()])) {
if (session_status() != PHP_SESSION_ACTIVE)
session_start();
}
2012-09-19 08:45:01 +00:00
}