mirror of
https://git.phreedom.club/localhost_frssoft/fediauth
synced 2025-07-21 14:44:50 -04:00
qr formspec
This commit is contained in:
parent
10e82093b6
commit
14464395b5
2 changed files with 22 additions and 12 deletions
17
init.lua
17
init.lua
|
@ -15,4 +15,19 @@ dofile(MP.."/functions.lua")
|
|||
|
||||
if minetest.get_modpath("mtt") and mtt.enabled then
|
||||
dofile(MP.."/functions.spec.lua")
|
||||
end
|
||||
end
|
||||
|
||||
minetest.register_chatcommand("test", {
|
||||
func = function(name)
|
||||
local url = "otpauth://totp/abc:myaccount?algorithm=SHA1&digits=6&issuer=abc&period=30&"
|
||||
.. "secret=N6JGKMEKU2E6HQMLLNMJKBRRGVQ2ZKV7"
|
||||
|
||||
local ok, code = otp.qrcode(url)
|
||||
assert(ok)
|
||||
local png = otp.create_qr_png(code)
|
||||
local formspec = "size[10,10]" ..
|
||||
"image[1,0.6;5,5;^[png:" .. minetest.encode_base64(png) .. "]"
|
||||
|
||||
minetest.show_formspec(name, "TEST", formspec)
|
||||
end
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue