parent
86eddea996
commit
f65248f797
|
@ -222,12 +222,14 @@ class Bot(irc.bot.SingleServerIRCBot):
|
||||||
for msg in output.msg:
|
for msg in output.msg:
|
||||||
if len(msg.encode('UTF-8')) > 512:
|
if len(msg.encode('UTF-8')) > 512:
|
||||||
self.logger.error('output message too long: {}'.format(msg))
|
self.logger.error('output message too long: {}'.format(msg))
|
||||||
elif output.msg_type == 'message':
|
elif output.msg_type == pinhook.plugin.OutputType.Message:
|
||||||
self.logger.debug('output message: {}'.format(msg))
|
self.logger.debug('output message: {}'.format(msg))
|
||||||
c.privmsg(chan, msg)
|
c.privmsg(chan, msg)
|
||||||
elif output.msg_type == 'action':
|
elif output.msg_type == pinhook.plugin.OutputType.Action:
|
||||||
self.logger.debug('output action: {}'.format(msg))
|
self.logger.debug('output action: {}'.format(msg))
|
||||||
c.action(chan, msg)
|
c.action(chan, msg)
|
||||||
|
else:
|
||||||
|
self.logger.warning("Unsupported output type '{}'".format(output.msg_type))
|
||||||
time.sleep(.5)
|
time.sleep(.5)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,15 @@
|
||||||
|
from enum import Enum
|
||||||
|
|
||||||
|
|
||||||
cmds = {}
|
cmds = {}
|
||||||
lstnrs = {}
|
lstnrs = {}
|
||||||
|
|
||||||
|
|
||||||
|
class OutputType(Enum):
|
||||||
|
Message = 'message'
|
||||||
|
Action = 'action'
|
||||||
|
|
||||||
|
|
||||||
class Output:
|
class Output:
|
||||||
def __init__(self, msg_type, msg):
|
def __init__(self, msg_type, msg):
|
||||||
self.msg_type = msg_type
|
self.msg_type = msg_type
|
||||||
|
@ -15,11 +23,11 @@ class Output:
|
||||||
|
|
||||||
|
|
||||||
def action(msg):
|
def action(msg):
|
||||||
return Output('action', msg)
|
return Output(OutputType.Action, msg)
|
||||||
|
|
||||||
|
|
||||||
def message(msg):
|
def message(msg):
|
||||||
return Output('message', msg)
|
return Output(OutputType.Message, msg)
|
||||||
|
|
||||||
|
|
||||||
def _add_plugin(command, func):
|
def _add_plugin(command, func):
|
||||||
|
|
1
setup.py
1
setup.py
|
@ -21,6 +21,7 @@ AUTHOR = 'M. Hancock'
|
||||||
# What packages are required for this module to be executed?
|
# What packages are required for this module to be executed?
|
||||||
REQUIRED = [
|
REQUIRED = [
|
||||||
'irc',
|
'irc',
|
||||||
|
'enum34',
|
||||||
]
|
]
|
||||||
|
|
||||||
# The rest you shouldn't have to touch too much :)
|
# The rest you shouldn't have to touch too much :)
|
||||||
|
|
Loading…
Reference in New Issue