diff options
| author | Pratyush Desai | 2021-09-07 16:33:00 +0200 |
|---|---|---|
| committer | Georg Pfuetzenreuter | 2021-09-07 16:33:00 +0200 |
| commit | ca02bba8c341b00973497e6f37a8ee34d75fcf0a (patch) | |
| tree | 6f562be70e7b852076d8db07b056dce9655ea3c7 | |
| parent | 46596e0b33a9a5dc086028f8e0e023a4b599bc95 (diff) | |
| download | snoparser-ca02bba8c341b00973497e6f37a8ee34d75fcf0a.tar.gz snoparser-ca02bba8c341b00973497e6f37a8ee34d75fcf0a.tar.bz2 snoparser-ca02bba8c341b00973497e6f37a8ee34d75fcf0a.zip | |
TargetChannel config + requirements.txt (#17)
Added requirements.txt
Updated configuration value errors
Reviewed-on: https://git.com.de/LimnoriaPlugins/SnoParser/pulls/17
Co-authored-by: Pratyush Desai <pratyush.desai@liberta.casa>
Co-committed-by: Pratyush Desai <pratyush.desai@liberta.casa>
| -rw-r--r-- | config.py | 12 | ||||
| -rw-r--r-- | plugin.py | 2 | ||||
| -rw-r--r-- | requirements.txt | 3 |
3 files changed, 13 insertions, 4 deletions
@@ -28,7 +28,7 @@ ### -from supybot import conf, registry +from supybot import conf, registry, ircutils try: from supybot.i18n import PluginInternationalization _ = PluginInternationalization('SnoParser') @@ -37,6 +37,12 @@ except: # without the i18n module _ = lambda x: x +class ValidChannel(registry.string): + """Value must be a valid channel""" + def setValue(self, v): + if not (ircutils.isChannel(v)): + self.error() + registry.String.setValue(self, v) def configure(advanced): # This will be called by supybot to configure this module. advanced is @@ -52,8 +58,8 @@ SnoParser = conf.registerPlugin('SnoParser') # conf.registerGlobalValue(SnoParser, 'someConfigVariableName', # registry.Boolean(False, _("""Help for someConfigVariableName."""))) -conf.registerGlobalValue(SnoParser, 'targetChannel', - registry.String(None, ("""Sends reformatted snolines to the <channel>"""))) +conf.registerNetworkValue(SnoParser, 'targetChannel', ValidChannel, + ("", ("""Determines which channel the bot should send snolines"""))) conf.registerGlobalValue(SnoParser, 'AutoVhost', registry.String('libcasa/user/', ("""Configure the vhost eg. libcasa/user/$account"""))) @@ -397,7 +397,7 @@ class SnoParser(callbacks.Plugin): def _sendSnotice(self, irc, msg, repl): try: channel = self.registryValue('targetChannel') - if channel[0] == '#': + if irc.isChannel(channel): irc.queueMsg(msg=ircmsgs.IrcMsg(command='NOTICE', args=(channel, repl))) # what sort of exception does one raise diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..82d9a1a --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +dnspython==2.0.0 +ipwhois==1.2.0 +redis==3.5.3 |
