mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
Merge 0.10->trunk
This commit is contained in:
commit
9b9d6a9ba9
8 changed files with 25 additions and 14 deletions
|
@ -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");
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue