mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
portmanager, s2smanager, sessionmanager, stanza_router, storagemanager, usermanager, util.xml: Add luacheck annotations
This commit is contained in:
parent
59c9585f12
commit
7b3df2bae6
7 changed files with 11 additions and 8 deletions
|
@ -41,7 +41,7 @@ local active_services = multitable.new();
|
|||
|
||||
--- Private helpers
|
||||
|
||||
local function error_to_friendly_message(service_name, port, err)
|
||||
local function error_to_friendly_message(service_name, port, err) --luacheck: ignore 212/service_name
|
||||
local friendly_message = err;
|
||||
if err:match(" in use") then
|
||||
-- FIXME: Use service_name here
|
||||
|
|
|
@ -49,11 +49,11 @@ local resting_session = { -- Resting, not dead
|
|||
close = function (session)
|
||||
session.log("debug", "Attempt to close already-closed session");
|
||||
end;
|
||||
filter = function (type, data) return data; end;
|
||||
filter = function (type, data) return data; end; --luacheck: ignore 212/type
|
||||
}; resting_session.__index = resting_session;
|
||||
|
||||
function retire_session(session, reason)
|
||||
local log = session.log or log;
|
||||
local log = session.log or log; --luacheck: ignore 431/log
|
||||
for k in pairs(session) do
|
||||
if k ~= "log" and k ~= "id" and k ~= "conn" then
|
||||
session[k] = nil;
|
||||
|
|
|
@ -54,11 +54,11 @@ local resting_session = { -- Resting, not dead
|
|||
close = function (session)
|
||||
session.log("debug", "Attempt to close already-closed session");
|
||||
end;
|
||||
filter = function (type, data) return data; end;
|
||||
filter = function (type, data) return data; end; --luacheck: ignore 212/type
|
||||
}; resting_session.__index = resting_session;
|
||||
|
||||
function retire_session(session)
|
||||
local log = session.log or log;
|
||||
local log = session.log or log; --luacheck: ignore 431/log
|
||||
for k in pairs(session) do
|
||||
if k ~= "log" and k ~= "id" then
|
||||
session[k] = nil;
|
||||
|
|
|
@ -30,7 +30,7 @@ deprecated_warning"core_process_stanza";
|
|||
deprecated_warning"core_route_stanza";
|
||||
|
||||
local valid_stanzas = { message = true, presence = true, iq = true };
|
||||
local function handle_unhandled_stanza(host, origin, stanza)
|
||||
local function handle_unhandled_stanza(host, origin, stanza) --luacheck: ignore 212/host
|
||||
local name, xmlns, origin_type = stanza.name, stanza.attr.xmlns or "jabber:client", origin.type;
|
||||
if xmlns == "jabber:client" and valid_stanzas[name] then
|
||||
-- A normal stanza
|
||||
|
@ -221,6 +221,8 @@ function core_route_stanza(origin, stanza)
|
|||
end
|
||||
end
|
||||
end
|
||||
|
||||
--luacheck: ignore 122/prosody
|
||||
prosody.core_process_stanza = core_process_stanza;
|
||||
prosody.core_post_stanza = core_post_stanza;
|
||||
prosody.core_route_stanza = core_route_stanza;
|
||||
|
|
|
@ -23,7 +23,7 @@ local null_storage_driver = setmetatable(
|
|||
name = "null",
|
||||
open = function (self) return self; end
|
||||
}, {
|
||||
__index = function (self, method)
|
||||
__index = function (self, method) --luacheck: ignore 212
|
||||
return null_storage_method;
|
||||
end
|
||||
}
|
||||
|
|
|
@ -29,7 +29,7 @@ function new_null_provider()
|
|||
local function dummy() return nil, "method not implemented"; end;
|
||||
local function dummy_get_sasl_handler() return sasl_new(nil, {}); end
|
||||
return setmetatable({name = "null", get_sasl_handler = dummy_get_sasl_handler}, {
|
||||
__index = function(self, method) return dummy; end
|
||||
__index = function(self, method) return dummy; end --luacheck: ignore 212
|
||||
});
|
||||
end
|
||||
|
||||
|
|
|
@ -11,6 +11,7 @@ local parse_xml = (function()
|
|||
local ns_separator = "\1";
|
||||
local ns_pattern = "^([^"..ns_separator.."]*)"..ns_separator.."?(.*)$";
|
||||
return function(xml)
|
||||
--luacheck: ignore 212/self
|
||||
local handler = {};
|
||||
local stanza = st.stanza("root");
|
||||
function handler:StartElement(tagname, attr)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue