/usr/share/lua/5.1/cgilua/session.lua is in lua-cgi 5.2~alpha2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 | ----------------------------------------------------------------------------
-- Session library.
--
-- @release $Id: session.lua,v 1.29 2007/11/21 16:33:20 carregal Exp $
----------------------------------------------------------------------------
local cgilua = require"cgilua"
local lfs = require"lfs"
local serialize = require"cgilua.serialize".serialize
local assert, error, ipairs, loadfile, next, tostring, type = assert, error, ipairs, loadfile, next, tostring, type
local format, gsub, strfind, strsub = string.format, string.gsub, string.find, string.sub
local tinsert = table.insert
local _open = io.open
local remove, time = os.remove, os.time
local mod, rand, randseed = (math.mod or math.fmod), math.random, math.randomseed
local attributes, dir, mkdir = lfs.attributes, lfs.dir, lfs.mkdir
local M = {}
local RANGE = 999999999
local INVALID_SESSION_ID = "Invalid session identification"
randseed (mod (time(), RANGE))
----------------------------------------------------------------------------
-- Internal state variables.
local root_dir = nil
local timeout = 10 * 60 -- 10 minutes
--
-- Checks identifier's format.
--
local function check_id (id)
return id and (strfind (id, "^%d+$") ~= nil)
end
--
-- Produces a file name based on a session.
-- @param id Session identification.
-- @return String with the session file name.
--
local function filename (id)
return format ("%s/%s.lua", root_dir, id)
end
----------------------------------------------------------------------------
-- Deletes a session.
-- @param id Session identification.
----------------------------------------------------------------------------
function M.delete (id)
if not check_id (id) then
return nil, INVALID_SESSION_ID
end
remove (filename (id))
end
--
-- Searches for a file in the root_dir
--
local function find (file)
local fh = _open (root_dir.."/"..file)
if fh then
fh:close ()
return true
else
return false
end
end
--
-- Creates a new identifier.
-- @return New identifier.
--
local function new_id ()
return rand (RANGE)
end
----------------------------------------------------------------------------
-- Creates a new session identifier.
-- @return Session identification.
----------------------------------------------------------------------------
function M.new ()
local id = new_id ()
if find (id..".lua") then
randseed (mod (time(), RANGE))
repeat
id = new_id (id)
until not find (id..".lua")
end
return id
end
----------------------------------------------------------------------------
-- Changes the session identificator generator.
-- @param func Function.
----------------------------------------------------------------------------
function M.setidgenerator (func)
if type (func) == "function" then
new_id = func
end
end
----------------------------------------------------------------------------
-- Loads data from a session.
-- @param id Session identification.
-- @return Table with session data or nil in case of error.
-- @return In case of error, also returns the error message.
----------------------------------------------------------------------------
function M.load (id)
if not check_id (id) then
return nil, INVALID_SESSION_ID
end
local f, err = loadfile (filename (id))
if not f then
return nil, err
else
return f()
end
end
----------------------------------------------------------------------------
-- Saves data to a session.
-- @param id Session identification.
-- @param data Table with session data to be saved.
----------------------------------------------------------------------------
function M.save (id, data)
if not check_id (id) then
return nil, INVALID_SESSION_ID
end
local fh = assert (_open (filename (id), "w+"))
fh:write "return "
serialize (data, function (s) fh:write(s) end)
fh:close()
end
----------------------------------------------------------------------------
-- Removes expired sessions.
----------------------------------------------------------------------------
function M.cleanup ()
local rem = {}
local now = time ()
for file in dir (root_dir) do
local attr = attributes(root_dir.."/"..file)
if attr and attr.mode == 'file' then
if attr.modification + timeout < now then
tinsert (rem, file)
end
end
end
for _, file in ipairs (rem) do
remove (root_dir.."/"..file)
end
end
----------------------------------------------------------------------------
-- Changes the session timeout.
-- @param t Number of seconds to maintain a session.
----------------------------------------------------------------------------
function M.setsessiontimeout (t)
if type (t) == "number" then
timeout = t
end
end
----------------------------------------------------------------------------
-- Changes the session directory.
-- @param path String with the new session directory.
----------------------------------------------------------------------------
function M.setsessiondir (path)
path = gsub (path, "[/\\]$", "")
-- Make sure the given path is a directory
if not attributes (path, "mode") then
assert (mkdir (path))
end
-- Make sure it can create a new file in the given directory
local test_file = path.."/"..cgilua.tmpname()
local fh, err = _open (test_file, "w")
if not fh then
error ("Could not open a file in session directory: "..
tostring(err), 2)
end
fh:close ()
remove (test_file)
root_dir = path
end
----------------------------------------------------------------------------
local ID_NAME = "cgilua session identification"
local id = nil
----------------------------------------------------------------------------
-- Destroys the session.
----------------------------------------------------------------------------
function M.destroy ()
M.data = {} -- removes data from session table to avoid recreation by `close'
M.delete (id)
end
----------------------------------------------------------------------------
-- Open user session.
-- This function should be called before the script is executed.
----------------------------------------------------------------------------
function M.open ()
-- Redefine cgilua.mkurlpath to manage the session identification
local mkurlpath = cgilua.mkurlpath
function cgilua.mkurlpath (script, data)
if not data then
data = {}
end
data[ID_NAME] = id
return mkurlpath (script, data)
end
M.cleanup()
id = cgilua.QUERY[ID_NAME] or M.new()
if id then
cgilua.QUERY[ID_NAME] = nil
M.data = M.load (id) or {}
end
end
----------------------------------------------------------------------------
-- Close user session.
-- This function should be called after the script is executed.
----------------------------------------------------------------------------
function M.close ()
if next (cgilua.session.data) then
M.save (id, cgilua.session.data)
id = nil
end
end
local already_enabled = false
----------------------------------------------------------------------------
-- Enables the use of sessions.
-- This function must be called by every script that needs sessions.
-- It just calls the `open' function and register the `close' function
-- to be called at the end of the execution.
----------------------------------------------------------------------------
function M.enablesession ()
if already_enabled then -- avoid misuse when a script calls another one
return
else
already_enabled = true
end
M.open ()
cgilua.addclosefunction (M.close)
end
return M
|