mirror of
https://github.com/minetest-mods/xban2.git
synced 2025-06-30 15:30:24 +02:00
Compare commits
7 Commits
master
...
nalc-1.2.0
Author | SHA1 | Date | |
---|---|---|---|
1faa658651 | |||
72a99b2b18 | |||
43acd1c620 | |||
58e77ad16c | |||
af26ae75bd | |||
8fde3c240f | |||
d200b342e9 |
24
LICENSE
24
LICENSE
@ -1,24 +0,0 @@
|
|||||||
BSD 2-Clause License
|
|
||||||
|
|
||||||
Copyright (c) 2014-2023, Diego Martínez
|
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
|
||||||
modification, are permitted provided that the following conditions are met:
|
|
||||||
|
|
||||||
1. Redistributions of source code must retain the above copyright notice, this
|
|
||||||
list of conditions and the following disclaimer.
|
|
||||||
|
|
||||||
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
||||||
this list of conditions and the following disclaimer in the documentation
|
|
||||||
and/or other materials provided with the distribution.
|
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
||||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
||||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
||||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
||||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
||||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
||||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
||||||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
||||||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
17
init.lua
17
init.lua
@ -25,7 +25,6 @@ end
|
|||||||
|
|
||||||
local ACTION = make_logger("action")
|
local ACTION = make_logger("action")
|
||||||
local WARNING = make_logger("warning")
|
local WARNING = make_logger("warning")
|
||||||
local ERROR = make_logger("error")
|
|
||||||
|
|
||||||
local unit_to_secs = {
|
local unit_to_secs = {
|
||||||
s = 1, m = 60, h = 3600,
|
s = 1, m = 60, h = 3600,
|
||||||
@ -344,12 +343,18 @@ end
|
|||||||
|
|
||||||
local function save_db()
|
local function save_db()
|
||||||
minetest.after(SAVE_INTERVAL, save_db)
|
minetest.after(SAVE_INTERVAL, save_db)
|
||||||
|
local f, e = io.open(DB_FILENAME, "wt")
|
||||||
db.timestamp = os.time()
|
db.timestamp = os.time()
|
||||||
local contents = assert(xban.serialize_db(db))
|
if f then
|
||||||
local ok = minetest.safe_file_write(DB_FILENAME, contents)
|
local ok, err = f:write(xban.serialize(db))
|
||||||
if not ok then
|
if not ok then
|
||||||
ERROR("Unable to save database")
|
WARNING("Unable to save database: %s", err)
|
||||||
end
|
end
|
||||||
|
else
|
||||||
|
WARNING("Unable to save database: %s", e)
|
||||||
|
end
|
||||||
|
if f then f:close() end
|
||||||
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local function load_db()
|
local function load_db()
|
||||||
@ -363,7 +368,7 @@ local function load_db()
|
|||||||
WARNING("Unable to load database: %s", "Read failed")
|
WARNING("Unable to load database: %s", "Read failed")
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
local t, e2 = xban.deserialize_db(cont)
|
local t, e2 = minetest.deserialize(cont)
|
||||||
if not t then
|
if not t then
|
||||||
WARNING("Unable to load database: %s",
|
WARNING("Unable to load database: %s",
|
||||||
"Deserialization failed: "..(e2 or "unknown error"))
|
"Deserialization failed: "..(e2 or "unknown error"))
|
||||||
@ -411,3 +416,5 @@ minetest.after(1, check_temp_bans)
|
|||||||
|
|
||||||
dofile(xban.MP.."/dbimport.lua")
|
dofile(xban.MP.."/dbimport.lua")
|
||||||
dofile(xban.MP.."/gui.lua")
|
dofile(xban.MP.."/gui.lua")
|
||||||
|
|
||||||
|
minetest.log("action", "[xban2] loaded.")
|
||||||
|
@ -27,44 +27,5 @@ local function my_serialize_2(t, level)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function xban.serialize(t)
|
function xban.serialize(t)
|
||||||
minetest.log("warning", "[xban2] xban.serialize() is deprecated")
|
|
||||||
return "return {\n"..my_serialize_2(t, 1).."\n}"
|
return "return {\n"..my_serialize_2(t, 1).."\n}"
|
||||||
end
|
end
|
||||||
|
|
||||||
-- JSON doesn't allow combined string+number keys, this function moves any
|
|
||||||
-- number keys into an "entries" table
|
|
||||||
function xban.serialize_db(t)
|
|
||||||
local res = {}
|
|
||||||
local entries = {}
|
|
||||||
for k, v in pairs(t) do
|
|
||||||
if type(k) == "number" then
|
|
||||||
entries[k] = v
|
|
||||||
else
|
|
||||||
res[k] = v
|
|
||||||
end
|
|
||||||
end
|
|
||||||
res.entries = entries
|
|
||||||
return minetest.write_json(res, true)
|
|
||||||
end
|
|
||||||
|
|
||||||
function xban.deserialize_db(s)
|
|
||||||
if s:sub(1, 1) ~= "{" then
|
|
||||||
-- Load legacy databases
|
|
||||||
return minetest.deserialize(s)
|
|
||||||
end
|
|
||||||
|
|
||||||
local res, err = minetest.parse_json(s)
|
|
||||||
if not res then
|
|
||||||
return nil, err
|
|
||||||
end
|
|
||||||
|
|
||||||
-- Remove all "null"s added by empty tables
|
|
||||||
for i, entry in ipairs(res.entries or {}) do
|
|
||||||
entry.names = entry.names or {}
|
|
||||||
entry.record = entry.record or {}
|
|
||||||
res[i] = entry
|
|
||||||
end
|
|
||||||
res.entries = nil
|
|
||||||
|
|
||||||
return res
|
|
||||||
end
|
|
||||||
|
Reference in New Issue
Block a user