Lua HTTP bug workaround

main
Bram van den Heuvel 2024-02-20 12:18:54 +01:00
parent 8b0965b6e4
commit c52a7d49da
1 changed files with 14 additions and 12 deletions

View File

@ -5,13 +5,15 @@ local function load(name)
end
-- Load HTTP privileges
local http_api = minetest.request_http_api and minetest.request_http_api()
if http_api == nil then
error(
"This mod has no access to HTTP requests - which is crucial for it "..
"to relay messages to Matrix. Please enable it at the "..
"`secure.http_mods` or the `secure.trusted_mods` settings!"
)
local function get_api()
local http_api = minetest.request_http_api and minetest.request_http_api()
if http_api == nil then
error(
"This mod has no access to HTTP requests - which is crucial for it "..
"to relay messages to Matrix. Please enable it at the "..
"`secure.http_mods` or the `secure.trusted_mods` settings!"
)
end
end
-- Load standard configuration
@ -30,24 +32,24 @@ load("lua/send")
load("lua/sync")
-- Mod Minetest server
minetest.register_on_chat_message(matrix.say(http_api))
minetest.register_on_chat_message(matrix.say(get_api()))
minetest.register_on_joinplayer(function(ObjectRef, last_login)
local name = ObjectRef:get_player_name()
matrix.send(http_api, name .. " has joined the Minetest server")
matrix.send(get_api(), name .. " has joined the Minetest server")
end)
minetest.register_on_leaveplayer(function(ObjectRef, timed_out)
local name = ObjectRef:get_player_name()
matrix.send(http_api, name .. " has left the Minetest server")
matrix.send(get_api(), name .. " has left the Minetest server")
end)
minetest.register_on_dieplayer(function(ObjectRef, reason)
local name = ObjectRef:get_player_name()
matrix.send(http_api, name .. " has died! Reason:", reason)
matrix.send(get_api(), name .. " has died! Reason:", reason)
end)
-- Start Matrix sync
local names = {}
matrix.sync_forever(http_api, function(event)
matrix.sync_forever(get_api(), function(event)
local name = names[event.sender] or event.sender
if event.type == nil then