util/jid.lua
author Matthew Wild <mwild1@gmail.com>
Fri, 21 Nov 2008 05:06:35 +0000
changeset 368 34e88709b1b5
parent 367 cc26368294a3
child 369 42de92add67b
permissions -rw-r--r--
Remove old TODO


local match = string.match;

module "jid"

function split(jid)
	if not jid then return; end
	local node, nodelen = match(jid, "^([^@]+)@()");
	local host, hostlen = match(jid, "^([^@/]+)()", nodelen)
	if node and not host then return nil, nil, nil; end
	local resource = match(jid, "^/(.+)$", hostlen);
	if (not host) or ((not resource) and #jid >= hostlen) then return nil, nil, nil; end
	return node, host, resource;
end

function bare(jid)
	local node, host = split(jid);
	if node and host then
		return node.."@"..host;
	elseif host then
		return host;
	end
	return nil;
end

return _M;