add admin helper scripts for checking token

This commit is contained in:
cricket 2010-03-03 00:01:28 +01:00
parent 3b30f51572
commit aa1102b20f
4 changed files with 96 additions and 0 deletions

47
door/isdead.lua Normal file
View File

@ -0,0 +1,47 @@
#!/usr/bin/env lua
require 'luasql.postgres'
require 'helper'
require 'config'
require 'base64'
function exit(env, con)
con:close()
env:close()
os.exit()
end
print "* checking token if it's dead ..."
env = luasql.postgres()
con = env:connect(config.db)
io.stdout:write("enter prefix (length "..config.prefix_len.."): ")
prefix = io.stdin:read()
if prefix:len() ~= config.prefix_len then
print("ERROR - prefix must have given length "..config.prefix_len..".")
exit(env,con)
end
if not is_base64(prefix) then
print "ERROR - prefix must be a valid base64 string."
exit(env,con)
end
deadtokencount = con:execute("select count(*) from graveyard where prefix='"..prefix.."';"):fetch()
if deadtokencount == nil then
print "ERROR - can't get correct results from database. PLease check!"
exit(env,con)
end
deadtokencount = tonumber(deadtokencount)
if deadtokencount == 0 then
print "no token found in graveyard."
elseif deadtokencount == 1 then
print "token found. token is dead."
else
print "ERROR - found more than 1 dead token .. something is broken. Please do something!"
end
exit(env,con)

47
door/isvalid.lua Normal file
View File

@ -0,0 +1,47 @@
#!/usr/bin/env lua
require 'luasql.postgres'
require 'helper'
require 'config'
require 'base64'
function exit(env, con)
con:close()
env:close()
os.exit()
end
print "* checking token if it's still valid ..."
env = luasql.postgres()
con = env:connect(config.db)
io.stdout:write("enter prefix (length "..config.prefix_len.."): ")
prefix = io.stdin:read()
if prefix:len() ~= config.prefix_len then
print("ERROR - prefix must have given length "..config.prefix_len..".")
exit(env,con)
end
if not is_base64(prefix) then
print "ERROR - prefix must be a valid base64 string."
exit(env,con)
end
tokencount = con:execute("select count(*) from tokens where prefix='"..prefix.."';"):fetch()
if tokencount == nil then
print "ERROR - can't get correct results from database. PLease check!"
exit(env,con)
end
tokencount = tonumber(tokencount)
if tokencount == 0 then
print "mo token found in database."
elseif tokencount == 1 then
print "token found. token is valid."
else
print "ERROR - found more than 1 dead token .. something is broken. Please do something!"
end
exit(env,con)

1
isdead Symbolic link
View File

@ -0,0 +1 @@
/home/cricket/door/magic_run

1
isvalid Symbolic link
View File

@ -0,0 +1 @@
/home/cricket/door/magic_run