mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_storage_sql: Record connection to database as module status
Allows retrieving this in e.g. a health reporting module Thanks pfak
This commit is contained in:
parent
dc958f1e40
commit
0147b972e0
3 changed files with 18 additions and 4 deletions
|
@ -159,6 +159,9 @@ end
|
|||
function engine:onconnect()
|
||||
-- Override from create_engine()
|
||||
end
|
||||
function engine:ondisconnect() -- luacheck: ignore 212/self
|
||||
-- Override from create_engine()
|
||||
end
|
||||
function engine:execute(sql, ...)
|
||||
local success, err = self:connect();
|
||||
if not success then return success, err; end
|
||||
|
@ -322,6 +325,7 @@ function engine:transaction(...)
|
|||
local conn = self.conn;
|
||||
if not conn or not conn:isopen() then
|
||||
self.conn = nil;
|
||||
self:ondisconnect();
|
||||
ok, ret = self:_transaction(...);
|
||||
end
|
||||
end
|
||||
|
@ -389,9 +393,9 @@ local function db2uri(params)
|
|||
};
|
||||
end
|
||||
|
||||
local function create_engine(_, params, onconnect)
|
||||
local function create_engine(_, params, onconnect, ondisconnect)
|
||||
assert(params.driver == "SQLite3", "Only SQLite3 is supported without LuaDBI");
|
||||
return setmetatable({ url = db2uri(params), params = params, onconnect = onconnect }, engine_mt);
|
||||
return setmetatable({ url = db2uri(params); params = params; onconnect = onconnect; ondisconnect = ondisconnect }, engine_mt);
|
||||
end
|
||||
|
||||
return {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue