Merge 13.0->trunk

This commit is contained in:
Kim Alvefur 2025-03-22 11:56:23 +01:00
commit 244220453d
3 changed files with 31 additions and 30 deletions

View file

@ -307,7 +307,8 @@ local function is_admin(jid, host)
end end
log("warn", "Usage of legacy is_admin() API, which will be disabled in a future build: %s", debug.traceback()); log("warn", "Usage of legacy is_admin() API, which will be disabled in a future build: %s", debug.traceback());
log("warn", "See https://prosody.im/doc/developers/permissions about the new permissions API"); log("warn", "See https://prosody.im/doc/developers/permissions about the new permissions API");
return legacy_admin_roles[get_jid_role(jid, host)] or false; local role = get_jid_role(jid, host);
return role and legacy_admin_roles[role.name] or false;
end end
local function get_users_with_role(role, host) local function get_users_with_role(role, host)

View file

@ -866,38 +866,38 @@ local function upgrade_table(engine, params, apply_changes) -- luacheck: ignore
success,err = engine:transaction(function() success,err = engine:transaction(function()
return engine:execute(check_encoding_query, params.database, return engine:execute(check_encoding_query, params.database,
engine.charset, engine.charset.."_bin"); engine.charset, engine.charset.."_bin");
end); end);
if not success then if not success then
module:log("error", "Failed to check/upgrade database encoding: %s", err or "unknown error"); module:log("error", "Failed to check/upgrade database encoding: %s", err or "unknown error");
return false; return false;
end
else
local indices = {};
engine:transaction(function ()
if params.driver == "SQLite3" then
for row in engine:select [[SELECT "name" FROM "sqlite_schema" WHERE "type"='index' AND "tbl_name"='prosody' AND "name"='prosody_index';]] do
indices[row[1]] = true;
end
elseif params.driver == "PostgreSQL" then
for row in engine:select [[SELECT "indexname" FROM "pg_indexes" WHERE "tablename"='prosody' AND "indexname"='prosody_index';]] do
indices[row[1]] = true;
end
end end
else end)
local indices = {}; if indices["prosody_index"] then
engine:transaction(function () if apply_changes then
if params.driver == "SQLite3" then local success = engine:transaction(function ()
for row in engine:select [[SELECT "name" FROM "sqlite_schema" WHERE "type"='index' AND "tbl_name"='prosody' AND "name"='prosody_index';]] do return assert(engine:execute([[DROP INDEX "prosody_index";]]));
indices[row[1]] = true; end);
end if not success then
elseif params.driver == "PostgreSQL" then module:log("error", "Failed to delete obsolete index \"prosody_index\"");
for row in engine:select [[SELECT "indexname" FROM "pg_indexes" WHERE "tablename"='prosody' AND "indexname"='prosody_index';]] do return false;
indices[row[1]] = true;
end
end
end)
if indices["prosody_index"] then
if apply_changes then
local success = engine:transaction(function ()
return assert(engine:execute([[DROP INDEX "prosody_index";]]));
end);
if not success then
module:log("error", "Failed to delete obsolete index \"prosody_index\"");
return false;
end
else
changes = true;
end end
else
changes = true;
end end
end end
end
return changes; return changes;
end end

View file

@ -63,7 +63,7 @@ describe("storagemanager", function ()
end end
assert(hm.activate(test_host, {})); assert(hm.activate(test_host, {}));
sm.initialize_host(test_host); sm.initialize_host(test_host);
assert(mm.load(test_host, "storage_"..backend_config.storage)); mm.load(test_host, "storage_"..backend_config.storage);
describe("key-value stores", function () describe("key-value stores", function ()
-- These tests rely on being executed in order, disable any order -- These tests rely on being executed in order, disable any order