2006-08-19 07:04:45 +00:00
|
|
|
<?php
|
2006-03-02 08:10:43 +00:00
|
|
|
// Original from http://www.daniweb.com/code/snippet43.html
|
|
|
|
|
|
|
|
require_once "config.php";
|
2013-04-17 11:36:34 +00:00
|
|
|
require_once "autoload.php";
|
2013-04-16 15:41:31 +00:00
|
|
|
require_once "errorhandler.php";
|
2020-09-17 15:56:29 +00:00
|
|
|
require_once "lib/gettext/gettext.inc.php";
|
2006-03-02 08:10:43 +00:00
|
|
|
|
2017-07-13 11:40:30 +00:00
|
|
|
$session_expire = min(2147483647 - time() - 1, max(SESSION_COOKIE_LIFETIME, 86400));
|
2006-05-23 05:07:38 +00:00
|
|
|
$session_name = (!defined('TTRSS_SESSION_NAME')) ? "ttrss_sid" : TTRSS_SESSION_NAME;
|
2006-03-02 08:10:43 +00:00
|
|
|
|
2017-07-17 04:33:43 +00:00
|
|
|
if (is_server_https()) {
|
2011-03-28 04:30:00 +00:00
|
|
|
ini_set("session.cookie_secure", true);
|
|
|
|
}
|
|
|
|
|
2013-04-04 11:33:14 +00:00
|
|
|
ini_set("session.gc_probability", 75);
|
2006-05-23 05:07:38 +00:00
|
|
|
ini_set("session.name", $session_name);
|
2006-03-02 08:42:24 +00:00
|
|
|
ini_set("session.use_only_cookies", true);
|
2013-03-28 06:06:16 +00:00
|
|
|
ini_set("session.gc_maxlifetime", $session_expire);
|
2020-09-30 11:43:53 +00:00
|
|
|
ini_set("session.cookie_lifetime", 0);
|
2006-03-02 08:10:43 +00:00
|
|
|
|
2017-04-26 12:29:22 +00:00
|
|
|
function session_get_schema_version() {
|
2013-03-31 09:10:46 +00:00
|
|
|
global $schema_version;
|
|
|
|
|
|
|
|
if (!$schema_version) {
|
2017-12-01 11:48:23 +00:00
|
|
|
$row = Db::pdo()->query("SELECT schema_version FROM ttrss_version")->fetch();
|
|
|
|
|
|
|
|
$version = $row["schema_version"];
|
|
|
|
|
2013-03-31 09:10:46 +00:00
|
|
|
$schema_version = $version;
|
|
|
|
return $version;
|
|
|
|
} else {
|
|
|
|
return $schema_version;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-17 12:23:15 +00:00
|
|
|
function validate_session() {
|
2013-03-31 09:10:46 +00:00
|
|
|
if (SINGLE_USER_MODE) return true;
|
|
|
|
|
2017-04-26 12:29:22 +00:00
|
|
|
if (isset($_SESSION["ref_schema_version"]) && $_SESSION["ref_schema_version"] != session_get_schema_version()) {
|
2013-07-06 08:05:52 +00:00
|
|
|
$_SESSION["login_error_msg"] =
|
|
|
|
__("Session failed to validate (schema version changed)");
|
2013-03-31 09:10:46 +00:00
|
|
|
return false;
|
2013-07-06 08:05:52 +00:00
|
|
|
}
|
2018-10-16 11:07:42 +00:00
|
|
|
$pdo = Db::pdo();
|
2013-03-31 09:10:46 +00:00
|
|
|
|
2021-02-05 21:12:15 +00:00
|
|
|
if (!empty($_SESSION["uid"])) {
|
2018-10-15 05:26:07 +00:00
|
|
|
|
2019-04-11 13:15:55 +00:00
|
|
|
if (!defined('_SESSION_SKIP_UA_CHECKS') && $_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).");
|
2018-10-15 05:26:07 +00:00
|
|
|
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()) {
|
2018-10-16 11:07:42 +00:00
|
|
|
$pwd_hash = $row["pwd_hash"];
|
2017-12-01 11:48:23 +00:00
|
|
|
|
2018-10-16 11:07:42 +00:00
|
|
|
if ($pwd_hash != $_SESSION["pwd_hash"]) {
|
2013-07-06 08:05:52 +00:00
|
|
|
|
2018-10-16 11:07:42 +00:00
|
|
|
$_SESSION["login_error_msg"] =
|
|
|
|
__("Session failed to validate (password changed)");
|
2013-07-06 08:05:52 +00:00
|
|
|
|
2018-10-16 11:07:42 +00:00
|
|
|
return false;
|
|
|
|
}
|
2013-03-31 09:10:46 +00:00
|
|
|
} else {
|
|
|
|
|
2018-10-16 11:07:42 +00:00
|
|
|
$_SESSION["login_error_msg"] =
|
|
|
|
__("Session failed to validate (user not found)");
|
2013-07-06 08:05:52 +00:00
|
|
|
|
2018-10-16 11:07:42 +00:00
|
|
|
return false;
|
2013-07-06 08:05:52 +00:00
|
|
|
|
2013-03-31 09:10:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-11-17 17:06:28 +00:00
|
|
|
function ttrss_open ($s, $n) {
|
2006-03-02 08:10:43 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-11-17 17:06:28 +00:00
|
|
|
function ttrss_read ($id){
|
2013-04-17 11:36:34 +00:00
|
|
|
global $session_expire;
|
|
|
|
|
2017-12-01 11:48:23 +00:00
|
|
|
$sth = Db::pdo()->prepare("SELECT data FROM ttrss_sessions WHERE id=?");
|
|
|
|
$sth->execute([$id]);
|
2011-03-28 04:30:00 +00:00
|
|
|
|
2017-12-01 11:48:23 +00:00
|
|
|
if ($row = $sth->fetch()) {
|
2018-10-16 11:07:42 +00:00
|
|
|
return base64_decode($row["data"]);
|
2006-03-02 08:10:43 +00:00
|
|
|
|
2017-12-01 11:48:23 +00:00
|
|
|
} else {
|
2018-10-16 11:07:42 +00:00
|
|
|
$expire = time() + $session_expire;
|
2006-03-02 08:10:43 +00:00
|
|
|
|
2018-10-16 11:07:42 +00:00
|
|
|
$sth = Db::pdo()->prepare("INSERT INTO ttrss_sessions (id, data, expire)
|
2017-12-01 11:48:23 +00:00
|
|
|
VALUES (?, '', ?)");
|
2018-10-16 11:07:42 +00:00
|
|
|
$sth->execute([$id, $expire]);
|
2017-12-01 11:48:23 +00:00
|
|
|
|
2018-10-16 11:07:42 +00:00
|
|
|
return "";
|
2011-03-28 04:30:00 +00:00
|
|
|
|
2006-03-02 08:10:43 +00:00
|
|
|
}
|
2013-04-17 11:36:34 +00:00
|
|
|
|
2006-03-02 08:10:43 +00:00
|
|
|
}
|
|
|
|
|
2009-11-17 17:06:28 +00:00
|
|
|
function ttrss_write ($id, $data) {
|
2013-04-17 11:36:34 +00:00
|
|
|
global $session_expire;
|
2011-03-28 04:30:00 +00:00
|
|
|
|
2013-04-17 11:36:34 +00:00
|
|
|
$data = base64_encode($data);
|
2006-03-02 08:10:43 +00:00
|
|
|
$expire = time() + $session_expire;
|
2011-03-28 04:30:00 +00:00
|
|
|
|
2018-10-16 11:07:42 +00:00
|
|
|
$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]);
|
|
|
|
}
|
2011-03-28 04:30:00 +00:00
|
|
|
|
2006-03-02 08:10:43 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-11-17 17:06:28 +00:00
|
|
|
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) {
|
2017-12-01 11:48:23 +00:00
|
|
|
$sth = Db::pdo()->prepare("DELETE FROM ttrss_sessions WHERE id = ?");
|
|
|
|
$sth->execute([$id]);
|
2011-03-28 04:30:00 +00:00
|
|
|
|
2006-03-02 08:10:43 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-11-17 17:06:28 +00:00
|
|
|
function ttrss_gc ($expire) {
|
2017-12-01 11:48:23 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2013-03-21 17:52:20 +00:00
|
|
|
if (!SINGLE_USER_MODE /* && DB_TYPE == "pgsql" */) {
|
2011-03-28 04:30:00 +00:00
|
|
|
session_set_save_handler("ttrss_open",
|
|
|
|
"ttrss_close", "ttrss_read", "ttrss_write",
|
2009-11-17 17:06:28 +00:00
|
|
|
"ttrss_destroy", "ttrss_gc");
|
2013-04-17 11:36:34 +00:00
|
|
|
register_shutdown_function('session_write_close');
|
2006-03-02 08:20:02 +00:00
|
|
|
}
|
2007-03-01 12:09:05 +00:00
|
|
|
|
2013-04-04 11:33:14 +00:00
|
|
|
if (!defined('NO_SESSION_AUTOSTART')) {
|
|
|
|
if (isset($_COOKIE[session_name()])) {
|
2013-03-28 04:06:21 +00:00
|
|
|
@session_start();
|
|
|
|
}
|
2012-09-19 08:45:01 +00:00
|
|
|
}
|