Merge 0.10->trunk

This commit is contained in:
Kim Alvefur 2017-05-17 01:06:20 +02:00
commit 9b9d6a9ba9
8 changed files with 25 additions and 14 deletions

View file

@ -66,7 +66,7 @@ function module.add_host(module)
return true; return true;
end end
local secret = module:get_option("component_secret"); local secret = module:get_option_string("component_secret");
if not secret then if not secret then
(session.log or log)("warn", "Component attempted to identify as %s, but component_secret is not set", session.host); (session.log or log)("warn", "Component attempted to identify as %s, but component_secret is not set", session.host);
session:close("not-authorized"); session:close("not-authorized");

View file

@ -123,7 +123,9 @@ module:hook("iq-set/self/"..xmlns_mam..":query", function(event)
end end
module:log("debug", "Archive query, id %s with %s from %s until %s)", module:log("debug", "Archive query, id %s with %s from %s until %s)",
tostring(qid), qwith or "anyone", qstart or "the dawn of time", qend or "now"); tostring(qid), qwith or "anyone",
qstart and timestamp(qstart) or "the dawn of time",
qend and timestamp(qend) or "now");
-- RSM stuff -- RSM stuff
local qset = rsm.get(query); local qset = rsm.get(query);
@ -139,7 +141,7 @@ module:hook("iq-set/self/"..xmlns_mam..":query", function(event)
limit = qmax + 1; limit = qmax + 1;
before = before; after = after; before = before; after = after;
reverse = reverse; reverse = reverse;
total = get_total; total = use_total;
}); });
if not data then if not data then

View file

@ -48,9 +48,8 @@ local function process_to_bare(bare, origin, stanza)
local node, host = jid_split(bare); local node, host = jid_split(bare);
local ok local ok
if user_exists(node, host) then if user_exists(node, host) then
-- TODO apply the default privacy list
ok = module:fire_event('message/offline/handle', { ok = module:fire_event('message/offline/handle', {
username = node;
origin = origin, origin = origin,
stanza = stanza, stanza = stanza,
}); });

View file

@ -17,10 +17,9 @@ local st = require "util.stanza";
motd_text = motd_text:gsub("^%s*(.-)%s*$", "%1"):gsub("\n[ \t]+", "\n"); -- Strip indentation from the config motd_text = motd_text:gsub("^%s*(.-)%s*$", "%1"):gsub("\n[ \t]+", "\n"); -- Strip indentation from the config
module:hook("presence/bare", function (event) module:hook("presence/initial", function (event)
local session, stanza = event.origin, event.stanza; local session, stanza = event.origin, event.stanza;
if session.username and not session.presence if not stanza.attr.type and not stanza.attr.to then
and not stanza.attr.type and not stanza.attr.to then
local motd_stanza = local motd_stanza =
st.message({ to = session.full_jid, from = motd_jid }) st.message({ to = session.full_jid, from = motd_jid })
:tag("body"):text(motd_text); :tag("body"):text(motd_text);

View file

@ -139,12 +139,19 @@ function archive:delete(username, query)
if k ~= "end" then return nil, "unsupported-query-field"; end if k ~= "end" then return nil, "unsupported-query-field"; end
end end
local items, err = datamanager.list_load(username, host, self.store); local items, err = datamanager.list_load(username, host, self.store);
if not items then return items, err; end if not items then
if err then
return items, err;
end
-- Store is empty
return 0;
end
items = array(items); items = array(items);
local count_before = #items;
items:filter(function (item) items:filter(function (item)
return item.when > query["end"]; return item.when > query["end"];
end); end);
local count = #items; local count = count_before - #items;
local ok, err = datamanager.list_store(username, host, self.store, items); local ok, err = datamanager.list_store(username, host, self.store, items);
if not ok then return ok, err; end if not ok then return ok, err; end
return count; return count;

View file

@ -33,7 +33,7 @@ local function serialize(value)
return "xml", tostring(value); return "xml", tostring(value);
elseif t == "table" then elseif t == "table" then
local encoded,err = json.encode(value); local encoded,err = json.encode(value);
if value then return "json", encoded; end if encoded then return "json", encoded; end
return nil, err; return nil, err;
end end
return nil, "Unhandled value type: "..t; return nil, "Unhandled value type: "..t;

View file

@ -334,7 +334,7 @@ function module.add_host(module)
-- This might be weird with random load order -- This might be weird with random load order
local_cross_domain:exclude(cross_domain); local_cross_domain:exclude(cross_domain);
cross_domain:include(local_cross_domain); cross_domain:include(local_cross_domain);
module:log("debug", "cross_domain = %s", cross_domain); module:log("debug", "cross_domain = %s", tostring(cross_domain));
function module.unload() function module.unload()
cross_domain:exclude(local_cross_domain); cross_domain:exclude(local_cross_domain);
end end

View file

@ -937,6 +937,10 @@ function commands.cert(arg)
end end
end end
show_usage("cert config|request|generate|key|import", "Helpers for generating X.509 certificates and keys.") show_usage("cert config|request|generate|key|import", "Helpers for generating X.509 certificates and keys.")
for _, cmd in pairs(cert_commands) do
print()
cmd{ "--help" }
end
end end
function commands.check(arg) function commands.check(arg)