utils
index
/home/gl/pylink/utils.py

utils.py - PyLink utilities module.
 
This module contains various utility functions related to IRC and/or the PyLink
framework.

 
Modules
       
conf
importlib
inspect
os
re
string
world

 
Classes
       
builtins.Exception(builtins.BaseException)
NotAuthenticatedError
builtins.object
TS6SIDGenerator
TS6UIDGenerator

 
class NotAuthenticatedError(builtins.Exception)
    Exception raised by checkAuthenticated() when a user fails authentication
requirements.
 
 
Method resolution order:
NotAuthenticatedError
builtins.Exception
builtins.BaseException
builtins.object

Data descriptors defined here:
__weakref__
list of weak references to the object (if defined)

Methods inherited from builtins.Exception:
__init__(self, /, *args, **kwargs)
Initialize self.  See help(type(self)) for accurate signature.
__new__(*args, **kwargs) from builtins.type
Create and return a new object.  See help(type) for accurate signature.

Methods inherited from builtins.BaseException:
__delattr__(self, name, /)
Implement delattr(self, name).
__getattribute__(self, name, /)
Return getattr(self, name).
__reduce__(...)
helper for pickle
__repr__(self, /)
Return repr(self).
__setattr__(self, name, value, /)
Implement setattr(self, name, value).
__setstate__(...)
__str__(self, /)
Return str(self).
with_traceback(...)
Exception.with_traceback(tb) --
set self.__traceback__ to tb and return self.

Data descriptors inherited from builtins.BaseException:
__cause__
exception cause
__context__
exception context
__dict__
__suppress_context__
__traceback__
args

 
class TS6SIDGenerator(builtins.object)
    TS6 SID Generator. <query> is a 3 character string with any combination of
uppercase letters, digits, and #'s. it must contain at least one #,
which are used by the generator as a wildcard. On every next_sid() call,
the first available wildcard character (from the right) will be
incremented to generate the next SID.
 
When there are no more available SIDs left (SIDs are not reused, only
incremented), RuntimeError is raised.
 
Example queries:
    "1#A" would give: 10A, 11A, 12A ... 19A, 1AA, 1BA ... 1ZA (36 total results)
    "#BQ" would give: 0BQ, 1BQ, 2BQ ... 9BQ (10 total results)
    "6##" would give: 600, 601, 602, ... 60Y, 60Z, 610, 611, ... 6ZZ (1296 total results)
 
  Methods defined here:
__init__(self, irc)
Initialize self.  See help(type(self)) for accurate signature.
increment(self, pos=2)
Increments the SID generator to the next available SID.
next_sid(self)
Returns the next unused TS6 SID for the server.

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class TS6UIDGenerator(builtins.object)
    TS6 UID Generator module, adapted from InspIRCd source:
https://github.com/inspircd/inspircd/blob/f449c6b296ab/src/server.cpp#L85-L156
 
  Methods defined here:
__init__(self, sid)
Initialize self.  See help(type(self)) for accurate signature.
increment(self, pos=5)
Increments the SID generator to the next available SID.
next_uid(self)
Returns the next unused TS6 UID for the server.

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
Functions
       
add_cmd(func, name=None)
Binds an IRC command function to the given command name.
add_hook(func, command)
Binds a hook function to the given command name.
applyModes(irc, target, changedmodes)
Takes a list of parsed IRC modes, and applies them on the given target.
 
The target can be either a channel or a user; this is handled automatically.
checkAuthenticated(irc, uid, allowAuthed=True, allowOper=True)
Checks whether the given user has operator status on PyLink, raising
NotAuthenticatedError and logging the access denial if not.
getDatabaseName(dbname)
Returns a database filename with the given base DB name appropriate for the
current PyLink instance.
 
This returns '<dbname>.db' if the running config name is PyLink's default
(config.yml), and '<dbname>-<config name>.db' for anything else. For example,
if this is called from an instance running as './pylink testing.yml', it
would return '<dbname>-testing.db'.
getHostmask(irc, user, realhost=False, ip=False)
Returns the hostmask of the given user, if present. If the realhost option
is given, return the real host of the user instead of the displayed host.
If the ip option is given, return the IP address of the user (this overrides
realhost).
getProtocolModule(protoname)
Imports and returns the protocol module requested.
isChannel(s)
Returns whether the string given is a valid channel name.
isHostmask(text)
Returns whether the given text is a valid hostmask.
isManipulatableClient(irc, uid)
Returns whether the given user is marked as an internal, manipulatable
client. Usually, automatically spawned services clients should have this
set True to prevent interactions with opers (like mode changes) from
causing desyncs.
isNick(s, nicklen=None)
Returns whether the string given is a valid nick.
isOper(irc, uid, allowAuthed=True, allowOper=True)
Returns whether the given user has operator status on PyLink. This can be achieved
by either identifying to PyLink as admin (if allowAuthed is True),
or having user mode +o set (if allowOper is True). At least one of
allowAuthed or allowOper must be True for this to give any meaningful
results.
isServerName(s)
Returns whether the string given is a valid IRC server name.
joinModes(modes)
Takes a list of (mode, arg) tuples in parseModes() format, and
joins them into a string.
 
See testJoinModes in tests/test_utils.py for some examples.
loadModuleFromFolder(name, folder)
Imports and returns a module, if existing, from a specific folder.
parseModes(irc, target, args)
Parses a modestring list into a list of (mode, argument) tuples.
['+mitl-o', '3', 'person'] => [('+m', None), ('+i', None), ('+t', None), ('+l', '3'), ('-o', 'person')]
reverseModes(irc, target, modes, oldobj=None)
Reverses/Inverts the mode string or mode list given.
 
Optionally, an oldobj argument can be given to look at an earlier state of
a channel/user object, e.g. for checking the op status of a mode setter
before their modes are processed and added to the channel state.
 
This function allows both mode strings or mode lists. Example uses:
    "+mi-lk test => "-mi+lk test"
    "mi-k test => "-mi+k test"
    [('+m', None), ('+r', None), ('+l', '3'), ('-o', 'person')
     => {('-m', None), ('-r', None), ('-l', None), ('+o', 'person')})
    {('s', None), ('+o', 'whoever') => {('-s', None), ('-o', 'whoever')})
toLower(irc, text)
Returns a lowercase representation of text based on the IRC object's
casemapping (rfc1459 or ascii).

 
Data
        hostmaskRe = re.compile('^\\S+!\\S+@\\S+$')
log = <logging.RootLogger object>