mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.jid: Add join(node, host, resource) function to join the components and return nil if invalid
This commit is contained in:
parent
70ab443a15
commit
d6a193d93e
1 changed files with 13 additions and 0 deletions
13
util/jid.lua
13
util/jid.lua
|
@ -65,4 +65,17 @@ function prep(jid)
|
|||
return host;
|
||||
end
|
||||
|
||||
function join(node, host, resource)
|
||||
if node and host and resource then
|
||||
return node.."@"..host.."/"..resource;
|
||||
elseif node and host then
|
||||
return node.."@"..host;
|
||||
elseif host and resource then
|
||||
return host.."/"..resource;
|
||||
elseif host then
|
||||
return host;
|
||||
end
|
||||
return nil; -- Invalid JID
|
||||
end
|
||||
|
||||
return _M;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue