1
0
mirror of https://github.com/lxsang/antd-web-apps synced 2024-11-20 02:18:20 +01:00

update keychain if exists

This commit is contained in:
lxsang 2021-10-04 22:10:14 +02:00
parent 4479c9a882
commit a44d12fa03

View File

@ -1,4 +1,5 @@
require("sqlite")
local TUNNEL_KEYCHAIN = "/opt/www/tmp/channels/antunnel_keychain"
function fail(msg)
std.custom_header("Connection","close")
std.json()
@ -48,6 +49,10 @@ function is_auth()
if data == nil or data[1] == nil then return die("No user data found") end
-- next time check the stamp
SESSION.user = data[1].username
local f = io.open(TUNNEL_KEYCHAIN, "w")
if f then
f:write(sessionid)
end
return true
end