mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-05 18:49:23 +01:00
commands: Add converters for IRIs
Since the 'url' and 'httpUrl' converters no longer support them...
This commit is contained in:
parent
be88530fa4
commit
0131cd0691
@ -680,6 +680,12 @@ def getUrl(irc, msg, args, state):
|
||||
else:
|
||||
state.errorInvalid(_('url'), args[0])
|
||||
|
||||
def getIri(irc, msg, args, state):
|
||||
if utils.web.urlRe.match(args[0]):
|
||||
state.args.append(args.pop(0))
|
||||
else:
|
||||
state.errorInvalid(_('IRI'), args[0])
|
||||
|
||||
def getEmail(irc, msg, args, state):
|
||||
if utils.net.emailRe.match(args[0]):
|
||||
state.args.append(args.pop(0))
|
||||
@ -696,6 +702,14 @@ def getHttpUrl(irc, msg, args, state):
|
||||
else:
|
||||
state.errorInvalid(_('http url'), args[0])
|
||||
|
||||
def getHttpIri(irc, msg, args, state):
|
||||
if utils.web.httpUrlRe.match(args[0]):
|
||||
state.args.append(args.pop(0))
|
||||
elif utils.web.httpUrlRe.match('http://' + args[0]):
|
||||
state.args.append('http://' + args.pop(0))
|
||||
else:
|
||||
state.errorInvalid(_('http url'), args[0])
|
||||
|
||||
def getNow(irc, msg, args, state):
|
||||
state.args.append(int(time.time()))
|
||||
|
||||
@ -795,6 +809,7 @@ wrappers = ircutils.IrcDict({
|
||||
'haveVoice+': getHaveVoicePlus,
|
||||
'hostmask': getHostmask,
|
||||
'httpUrl': getHttpUrl,
|
||||
'httpIri': getHttpIri,
|
||||
'id': getId,
|
||||
'inChannel': inChannel,
|
||||
'index': getIndex,
|
||||
@ -828,6 +843,7 @@ wrappers = ircutils.IrcDict({
|
||||
'text': getText,
|
||||
'to': getTo,
|
||||
'url': getUrl,
|
||||
'iri': getIri,
|
||||
'user': getUser,
|
||||
'validChannel': validChannel,
|
||||
'voice': getVoice,
|
||||
|
Loading…
Reference in New Issue
Block a user