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;
end
local secret = module:get_option("component_secret");
local secret = module:get_option_string("component_secret");
if not secret then
(session.log or log)("warn", "Component attempted to identify as %s, but component_secret is not set", session.host);
session:close("not-authorized");

View file

@ -123,7 +123,9 @@ module:hook("iq-set/self/"..xmlns_mam..":query", function(event)
end
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
local qset = rsm.get(query);
@ -139,7 +141,7 @@ module:hook("iq-set/self/"..xmlns_mam..":query", function(event)
limit = qmax + 1;
before = before; after = after;
reverse = reverse;
total = get_total;
total = use_total;
});
if not data then

View file

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

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
module:hook("presence/bare", function (event)
module:hook("presence/initial", function (event)
local session, stanza = event.origin, event.stanza;
if session.username and not session.presence
and not stanza.attr.type and not stanza.attr.to then
if not stanza.attr.type and not stanza.attr.to then
local motd_stanza =
st.message({ to = session.full_jid, from = motd_jid })
: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
end
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);
local count_before = #items;
items:filter(function (item)
return item.when > query["end"];
end);
local count = #items;
local count = count_before - #items;
local ok, err = datamanager.list_store(username, host, self.store, items);
if not ok then return ok, err; end
return count;

View file

@ -33,7 +33,7 @@ local function serialize(value)
return "xml", tostring(value);
elseif t == "table" then
local encoded,err = json.encode(value);
if value then return "json", encoded; end
if encoded then return "json", encoded; end
return nil, err;
end
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
local_cross_domain:exclude(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()
cross_domain:exclude(local_cross_domain);
end

View file

@ -937,6 +937,10 @@ function commands.cert(arg)
end
end
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
function commands.check(arg)