aboutsummaryrefslogtreecommitdiffstats
path: root/include/session.php
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-07-01 16:48:07 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-07-01 16:48:07 -0700
commit6348e70daa113e8b3203de8fbc919d08c90d972e (patch)
tree1bc3dd3bc85fe6136411086785cf6753960e22f9 /include/session.php
downloadvolse-hubzilla-6348e70daa113e8b3203de8fbc919d08c90d972e.tar.gz
volse-hubzilla-6348e70daa113e8b3203de8fbc919d08c90d972e.tar.bz2
volse-hubzilla-6348e70daa113e8b3203de8fbc919d08c90d972e.zip
Initial checkin
Diffstat (limited to 'include/session.php')
-rw-r--r--include/session.php76
1 files changed, 76 insertions, 0 deletions
diff --git a/include/session.php b/include/session.php
new file mode 100644
index 000000000..6c32e299f
--- /dev/null
+++ b/include/session.php
@@ -0,0 +1,76 @@
+<?php
+
+// Session management functions. These provide database storage of PHP
+// session info.
+
+$session_exists = 0;
+$session_expire = 180000;
+
+if(! function_exists('ref_session_open')) {
+function ref_session_open ($s,$n) {
+ return true;
+}}
+
+if(! function_exists('ref_session_read')) {
+function ref_session_read ($id) {
+ global $session_exists;
+ if(x($id))
+ $r = q("SELECT `data` FROM `session` WHERE `sid`= '%s'", dbesc($id));
+ if(count($r)) {
+ $session_exists = true;
+ return $r[0]['data'];
+ }
+ return '';
+}}
+
+if(! function_exists('ref_session_write')) {
+function ref_session_write ($id,$data) {
+ global $session_exists, $session_expire;
+ if(! $id || ! $data) {
+ return false;
+ }
+
+ $expire = time() + $session_expire;
+ $default_expire = time() + 300;
+
+ if($session_exists)
+ $r = q("UPDATE `session`
+ SET `data` = '%s', `expire` = '%s'
+ WHERE `sid` = '%s' LIMIT 1",
+ dbesc($data), dbesc($expire), dbesc($id));
+ else
+ $r = q("INSERT INTO `session`
+ SET `sid` = '%s', `expire` = '%s', `data` = '%s'",
+ dbesc($id), dbesc($default_expire), dbesc($data));
+
+ return true;
+}}
+
+if(! function_exists('ref_session_close')) {
+function ref_session_close() {
+ return true;
+}}
+
+if(! function_exists('ref_session_destroy')) {
+function ref_session_destroy ($id) {
+ q("DELETE FROM `session` WHERE `sid` = '%s'", dbesc($id));
+ return true;
+}}
+
+if(! function_exists('ref_session_gc')) {
+function ref_session_gc($expire) {
+ q("DELETE FROM `session` WHERE `expire` < %d", dbesc(time()));
+ q("OPTIMIZE TABLE `sess_data`");
+ return true;
+}}
+
+$gc_probability = 50;
+
+ini_set('session.gc_probability', $gc_probability);
+ini_set('session.use_only_cookies', 1);
+ini_set('session.cookie_httponly', 1);
+
+
+session_set_save_handler ('ref_session_open', 'ref_session_close',
+ 'ref_session_read', 'ref_session_write',
+ 'ref_session_destroy', 'ref_session_gc');