Supybot-plugins/Trigger/plugin.py

78 lines
3.1 KiB
Python
Raw Normal View History

2011-01-07 23:46:28 -08:00
###
# Copyright (c) 2011, Valentin Lorentz
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice,
# this list of conditions, and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions, and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of the author of this software nor the name of
# contributors to this software may be used to endorse or promote products
# derived from this software without specific prior written consent.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
###
import supybot.utils as utils
from supybot.commands import *
import supybot.plugins as plugins
import supybot.ircmsgs as ircmsgs
2011-01-07 23:46:28 -08:00
import supybot.ircutils as ircutils
import supybot.callbacks as callbacks
2011-02-28 06:34:05 -08:00
try:
from supybot.i18n import PluginInternationalization
from supybot.i18n import internationalizeDocstring
_ = PluginInternationalization('Trigger')
except:
# This are useless functions that's allow to run the plugin on a bot
# without the i18n plugin
_ = lambda x:x
internationalizeDocstring = lambda x:x
2011-01-07 23:46:28 -08:00
@internationalizeDocstring
class Trigger(callbacks.Plugin):
"""Add the help for "@plugin help Trigger" here
This should describe *how* to use this plugin."""
def _run(self, irc, msg, triggerName):
2011-02-28 06:34:05 -08:00
command = self.registryValue('triggers.%s' % triggerName, msg.args[0])
2011-01-07 23:46:28 -08:00
if command == '':
return
tokens = callbacks.tokenize(command)
try:
self.Proxy(irc.irc, msg, tokens)
except Exception, e:
log.exception('Error occured while running triggered command:')
def doJoin(self, irc, msg):
self._run(irc, msg, 'join')
def doPart(self, irc, msg):
self._run(irc, msg, 'part')
def doPrivmsg(self, irc, msg):
self._run(irc, msg, 'privmsg')
def doNotice(self, irc, msg):
self._run(irc, msg, 'notice')
def do376(self, irc, msg):
command = self.registryValue('triggers.connect')
irc.queueMsg(ircmsgs.IrcMsg(command))
2011-01-07 23:46:28 -08:00
Class = Trigger
# vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79: