util.jid+tests: Add simple helpers... node(), host() and resource() for extracting specific parts of a JID

This commit is contained in:
Matthew Wild 2016-03-17 23:15:08 +00:00
parent 4633eb56fb
commit 1c3c5302ba
2 changed files with 85 additions and 0 deletions

View file

@ -93,6 +93,18 @@ local function compare(jid, acl)
return false
end
local function node(jid)
return (select(1, split(jid)));
end
local function host(jid)
return (select(2, split(jid)));
end
local function resource(jid)
return (select(3, split(jid)));
end
local function escape(s) return s and (s:gsub(".", escapes)); end
local function unescape(s) return s and (s:gsub("\\%x%x", unescapes)); end
@ -103,6 +115,9 @@ return {
join = join;
prep = prep;
compare = compare;
node = node;
host = host;
resource = resource;
escape = escape;
unescape = unescape;
};