- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
验证 xmpp jid 的正确方法是什么?语法描述为 here: ,但我真的不明白。此外,它看起来相当复杂,因此使用库来完成它似乎是个好主意。
我目前正在使用 xmpppy,但我似乎无法找到如何使用它来验证 jid。任何帮助表示赞赏!
最佳答案
首先,目前关于 JID 的最佳引用是 RFC 6122 .
我只是想在这里给你正则表达式,但有点忘乎所以,实现了所有的规范:
import re
import sys
import socket
import encodings.idna
import stringprep
# These characters aren't allowed in domain names that are used
# in XMPP
BAD_DOMAIN_ASCII = "".join([chr(c) for c in range(0,0x2d) +
[0x2e, 0x2f] +
range(0x3a,0x41) +
range(0x5b,0x61) +
range(0x7b, 0x80)])
# check bi-directional character validity
def bidi(chars):
RandAL = map(stringprep.in_table_d1, chars)
for c in RandAL:
if c:
# There is a RandAL char in the string. Must perform further
# tests:
# 1) The characters in section 5.8 MUST be prohibited.
# This is table C.8, which was already checked
# 2) If a string contains any RandALCat character, the string
# MUST NOT contain any LCat character.
if filter(stringprep.in_table_d2, chars):
raise UnicodeError("Violation of BIDI requirement 2")
# 3) If a string contains any RandALCat character, a
# RandALCat character MUST be the first character of the
# string, and a RandALCat character MUST be the last
# character of the string.
if not RandAL[0] or not RandAL[-1]:
raise UnicodeError("Violation of BIDI requirement 3")
def nodeprep(u):
chars = list(unicode(u))
i = 0
while i < len(chars):
c = chars[i]
# map to nothing
if stringprep.in_table_b1(c):
del chars[i]
else:
# case fold
chars[i] = stringprep.map_table_b2(c)
i += 1
# NFKC
chars = stringprep.unicodedata.normalize("NFKC", "".join(chars))
for c in chars:
if (stringprep.in_table_c11(c) or
stringprep.in_table_c12(c) or
stringprep.in_table_c21(c) or
stringprep.in_table_c22(c) or
stringprep.in_table_c3(c) or
stringprep.in_table_c4(c) or
stringprep.in_table_c5(c) or
stringprep.in_table_c6(c) or
stringprep.in_table_c7(c) or
stringprep.in_table_c8(c) or
stringprep.in_table_c9(c) or
c in "\"&'/:<>@"):
raise UnicodeError("Invalid node character")
bidi(chars)
return chars
def resourceprep(res):
chars = list(unicode(res))
i = 0
while i < len(chars):
c = chars[i]
# map to nothing
if stringprep.in_table_b1(c):
del chars[i]
else:
i += 1
# NFKC
chars = stringprep.unicodedata.normalize("NFKC", "".join(chars))
for c in chars:
if (stringprep.in_table_c12(c) or
stringprep.in_table_c21(c) or
stringprep.in_table_c22(c) or
stringprep.in_table_c3(c) or
stringprep.in_table_c4(c) or
stringprep.in_table_c5(c) or
stringprep.in_table_c6(c) or
stringprep.in_table_c7(c) or
stringprep.in_table_c8(c) or
stringprep.in_table_c9(c)):
raise UnicodeError("Invalid node character")
bidi(chars)
return chars
def parse_jid(jid):
# first pass
m = re.match("^(?:([^\"&'/:<>@]{1,1023})@)?([^/@]{1,1023})(?:/(.{1,1023}))?$", jid)
if not m:
return False
(node, domain, resource) = m.groups()
try:
# ipv4 address?
socket.inet_pton(socket.AF_INET, domain)
except socket.error:
# ipv6 address?
try:
socket.inet_pton(socket.AF_INET6, domain)
except socket.error:
# domain name
dom = []
for label in domain.split("."):
try:
label = encodings.idna.nameprep(unicode(label))
encodings.idna.ToASCII(label)
except UnicodeError:
return False
# UseSTD3ASCIIRules is set, but Python's nameprep doesn't enforce it.
# a) Verify the absence of non-LDH ASCII code points; that is, the
for c in label:
if c in BAD_DOMAIN_ASCII:
return False
# Verify the absence of leading and trailing hyphen-minus
if label[0] == '-' or label[-1] == "-":
return False
dom.append(label)
domain = ".".join(dom)
try:
if node is not None:
node = nodeprep(node)
if resource is not None:
resource = resourceprep(resource)
except UnicodeError:
return False
return node, domain, resource
if __name__ == "__main__":
results = parse_jid(sys.argv[1])
if not results:
print "FAIL"
else:
print results
是的,这是很多工作。所有这一切都有充分的理由,但如果 précis,我们希望在未来稍微简化它。工作组取得成果。
关于python - 使用 python 验证 XMPP jid?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3514342/
在 Smack API 中,有一个用于连接的配置类,在此页面中描述 ConnectionConfiguration 我对服务名称和服务器名称之间的区别感到困惑。 假设我有一台名为“mybox.mydo
我想阻止常见的 xmpp 客户端(例如 Pidgin、PSI+...)登录我们的 xmpp 服务器(ejabberd)。我怎样才能做到这一点? 提前致谢。 最佳答案 我认为这不可能真正做到。当然,您可
我想阻止常见的 xmpp 客户端(例如 Pidgin、PSI+...)登录我们的 xmpp 服务器(ejabberd)。我怎样才能做到这一点? 提前致谢。 最佳答案 我不认为这真的可以做到。当然,您可
我正在尝试使用 XEP-0048 - 书签 (http://xmpp.org/extensions/xep-0048.html) 自动加入房间。 我正在使用 RobbieHanson XMPPFram
我正在使用 XMPP(通过 ejabberd)。据此XEP standard ,我发现XMPP服务器可以存储离线消息,并且可以在离线用户上线时传递它们(分享他的存在)。 我的问题是: 1> 这些离线消
我试图通过用低级 Python 编码来学习 XMPP 规范( RFC 3920 )。但是我在 6.5 的第 4 步被挂断了一个多小时。 ,选择身份验证机制。我发送: ,并得到:而不是 base64 编
我搜索过但没有找到 XMPP 使用哪些端口。我需要实现XMPP服务器和客户端并使用XML传输、文件传输和流媒体。他们使用不同的端口吗?有没有办法让它们都一样使用,这样我就不需要打扰网络管理员?谢谢 最
我正在编写一个通过 XMPP 与客户端通信的应用程序。我希望能够使用用户现有的 xmpp 帐户(他们都有 google ID),但我不希望我的消息出现在他们的常规 IM 流中。 我在想,当我的客户端与
如果他们有 jabber 帐户,我想高效地检查所有本地地址簿联系人。用户使用手机号在XMPP服务器上注册。我目前将以下 XEP-0055 节发送到 ejabberd 服务器并评估结果。
是否可以将消息传递到服务器时包含到 XMPP 消息时间? 现在我从 OpenFire 服务器收到如下消息: test 但我需要知道消息何时发送(传递到服务器),例如: test2012-10-12 1
我想知道 xmpp 发布-订阅功能是同时向所有订阅者发送通知(广播)还是在队列中发送通知,即一个一个地发送通知。 我想知道我正在使用的 pub-sub 和 jaxl 类之间的区别,因为 jaxl 在队
关闭。这个问题是off-topic .它目前不接受答案。 想改善这个问题吗? Update the question所以它是 on-topic对于堆栈溢出。 8年前关闭。 Improve this q
XMPP 允许用户使用同一个帐户同时从多个客户端连接到服务器。我构建了一个执行此操作的应用程序,但如果启用了桌面客户端,我不希望用户能够使用移动客户端进行连接。这是一个游戏,连接到这两个会导致问题。
我正在为我的 XMPP 连接使用 libjingle。我可以在没有服务器的情况下连接两个 XMPP 客户端吗?如果是,我该怎么做,如果不是,那为什么不可能呢? XMPP client1 XMPP c
我目前正在研究 XMPP,我想知道是否有办法创建动态 XMPP 花名册。我希望服务器/组件/插件自动生成任何用户的联系人列表。 组件可以访问和修改名册吗? 我知道有些服务器(如 OpenFire)使用
我的网络上有两台机器。我在其中一台机器(机器 A)上安装了 ejabberd,在那里注册了两个用户。我在两台机器上都运行了 Pidgin。我在机器 A 上登录到 Pidgin,并且能够登录。当我尝试在
已结束。此问题正在寻求书籍、工具、软件库等的推荐。它不满足Stack Overflow guidelines 。目前不接受答案。 我们不允许提出寻求书籍、工具、软件库等推荐的问题。您可以编辑问题,以便
默认情况下,XMPP 状态会发布给所有订阅该人的人。是否可以发送诸如 iq 调用之类的内容来获取不在我的名册中的 ID 的存在标签? 最佳答案 如果您想知道 XMPP 实体是否已连接,可以使用 XMP
我希望使用 xmpp 在我的应用程序中包含两个功能。第一个是几乎完成的一对一聊天(使用 strophe),第二个是实时通知,就像它在 facebook 中的工作方式一样。我试图了解 xmpp 中的 p
引用this question ,XMPP 被认为是 IM 互操作性的开放标准。 对于我的应用程序来说,如果我使用 XMPP 进行内部客户端-服务器通信,或者开发自己的内部协议(protocol)但在
我是一名优秀的程序员,十分优秀!