tinytinyrss/include/sessions.php

141 lines
3.4 KiB
PHP
Raw Normal View History

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