mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-02 17:29:22 +01:00
Updates and tweaks to some ircutils functions.
This commit is contained in:
parent
5ccb242657
commit
6135a88741
@ -48,14 +48,10 @@ def debug(s, *args):
|
|||||||
"""Prints a debug string. Most likely replaced by our logging debug."""
|
"""Prints a debug string. Most likely replaced by our logging debug."""
|
||||||
print '***', s % args
|
print '***', s % args
|
||||||
|
|
||||||
|
userHostmaskRe = re.compile(r'^\S+!\S+@\S+$')
|
||||||
def isUserHostmask(s):
|
def isUserHostmask(s):
|
||||||
"""Returns whether or not the string s is a valid User hostmask."""
|
"""Returns whether or not the string s is a valid User hostmask."""
|
||||||
p1 = s.find('!')
|
return userHostmaskRe.match(s) is not None
|
||||||
p2 = s.find('@')
|
|
||||||
if p1 < p2-1 and p1 >= 1 and p2 >= 3 and len(s) > p2+1:
|
|
||||||
return True
|
|
||||||
else:
|
|
||||||
return False
|
|
||||||
|
|
||||||
def isServerHostmask(s):
|
def isServerHostmask(s):
|
||||||
"""s => bool
|
"""s => bool
|
||||||
@ -66,19 +62,19 @@ def nickFromHostmask(hostmask):
|
|||||||
"""hostmask => nick
|
"""hostmask => nick
|
||||||
Returns the nick from a user hostmask."""
|
Returns the nick from a user hostmask."""
|
||||||
assert isUserHostmask(hostmask)
|
assert isUserHostmask(hostmask)
|
||||||
return hostmask.split('!', 1)[0]
|
return splitHostmask(hostmask)[0]
|
||||||
|
|
||||||
def userFromHostmask(hostmask):
|
def userFromHostmask(hostmask):
|
||||||
"""hostmask => user
|
"""hostmask => user
|
||||||
Returns the user from a user hostmask."""
|
Returns the user from a user hostmask."""
|
||||||
assert isUserHostmask(hostmask)
|
assert isUserHostmask(hostmask)
|
||||||
return hostmask.split('!', 1)[1].split('@', 1)[0]
|
return splitHostmask(hostmask)[1]
|
||||||
|
|
||||||
def hostFromHostmask(hostmask):
|
def hostFromHostmask(hostmask):
|
||||||
"""hostmask => host
|
"""hostmask => host
|
||||||
Returns the host from a user hostmask."""
|
Returns the host from a user hostmask."""
|
||||||
assert isUserHostmask(hostmask)
|
assert isUserHostmask(hostmask)
|
||||||
return hostmask.split('@', 1)[1]
|
return splitHostmask(hostmask)[2]
|
||||||
|
|
||||||
def splitHostmask(hostmask):
|
def splitHostmask(hostmask):
|
||||||
"""hostmask => (nick, user, host)
|
"""hostmask => (nick, user, host)
|
||||||
@ -86,13 +82,13 @@ def splitHostmask(hostmask):
|
|||||||
assert isUserHostmask(hostmask)
|
assert isUserHostmask(hostmask)
|
||||||
nick, rest = hostmask.split('!', 1)
|
nick, rest = hostmask.split('!', 1)
|
||||||
user, host = rest.split('@', 1)
|
user, host = rest.split('@', 1)
|
||||||
return (nick, user, host)
|
return (intern(nick), intern(user), intern(host))
|
||||||
|
|
||||||
def joinHostmask(nick, ident, host):
|
def joinHostmask(nick, ident, host):
|
||||||
"""nick, user, host => hostmask
|
"""nick, user, host => hostmask
|
||||||
Joins the nick, ident, host into a user hostmask."""
|
Joins the nick, ident, host into a user hostmask."""
|
||||||
assert nick and ident and host
|
assert nick and ident and host
|
||||||
return '%s!%s@%s' % (nick, ident, host)
|
return intern('%s!%s@%s' % (nick, ident, host))
|
||||||
|
|
||||||
_rfc1459trans = string.maketrans(string.ascii_uppercase + r'\[]~',
|
_rfc1459trans = string.maketrans(string.ascii_uppercase + r'\[]~',
|
||||||
string.ascii_lowercase + r'|{}^')
|
string.ascii_lowercase + r'|{}^')
|
||||||
|
Loading…
Reference in New Issue
Block a user