Software /
code /
prosody
Annotate
util/jid.lua @ 344:ed5824e9dd94
Don't attempt to auth connection unless stanzas are being sent across it
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Wed, 19 Nov 2008 05:12:21 +0000 |
parent | 109:7efedc96352a |
child | 365:a59300fc22ec |
rev | line source |
---|---|
0 | 1 |
2 local match = string.match; | |
3 | |
4 module "jid" | |
5 | |
6 function split(jid) | |
109
7efedc96352a
Minor edit, and added a TODO
Waqas Hussain <waqas20@gmail.com>
parents:
104
diff
changeset
|
7 if not jid then return; end |
7efedc96352a
Minor edit, and added a TODO
Waqas Hussain <waqas20@gmail.com>
parents:
104
diff
changeset
|
8 -- TODO verify JID, and return; if invalid |
27
859b316e2fb0
Fixing jid.split() for all JIDs
Matthew Wild <mwild1@gmail.com>
parents:
0
diff
changeset
|
9 local node = match(jid, "^([^@]+)@"); |
859b316e2fb0
Fixing jid.split() for all JIDs
Matthew Wild <mwild1@gmail.com>
parents:
0
diff
changeset
|
10 local server = (node and match(jid, ".-@([^@/]+)")) or match(jid, "^([^@/]+)"); |
859b316e2fb0
Fixing jid.split() for all JIDs
Matthew Wild <mwild1@gmail.com>
parents:
0
diff
changeset
|
11 local resource = match(jid, "/(.+)$"); |
859b316e2fb0
Fixing jid.split() for all JIDs
Matthew Wild <mwild1@gmail.com>
parents:
0
diff
changeset
|
12 return node, server, resource; |
0 | 13 end |
104
cfbd3b849f9e
Fixed: util/jid.lua now returns module object
Waqas Hussain <waqas20@gmail.com>
parents:
29
diff
changeset
|
14 |
cfbd3b849f9e
Fixed: util/jid.lua now returns module object
Waqas Hussain <waqas20@gmail.com>
parents:
29
diff
changeset
|
15 return _M; |