Split plugin outout on newlines and ensure plugins folder exists

pull/5/head
Sina Mashek 2017-11-27 07:10:40 +02:00
parent 6e47d13361
commit cf91e90451
2 changed files with 17 additions and 6 deletions

View File

@ -1,11 +1,14 @@
import imp import imp
import os import os
import ssl import ssl
import time
import irc.bot import irc.bot
irc.client.ServerConnection.buffer_class.errors = 'replace' irc.client.ServerConnection.buffer_class.errors = 'replace'
class Message: class Message:
def __init__(self, channel, nick, cmd, arg, botnick, ops): def __init__(self, channel, nick, cmd, arg, botnick, ops):
self.channel = channel self.channel = channel
@ -45,7 +48,10 @@ class Bot(irc.bot.SingleServerIRCBot):
setattr(self, a, kwarguments[a]) setattr(self, a, kwarguments[a])
def load_plugins(self): def load_plugins(self):
# load all plugins # ensure plugin folder exists
if not os.path.exists(self.plugin_dir):
os.makedirs(self.plugin_dir)
# load all plugins
plugins = [] plugins = []
for m in os.listdir(self.plugin_dir): for m in os.listdir(self.plugin_dir):
if m.endswith('.py'): if m.endswith('.py'):
@ -114,8 +120,10 @@ class Bot(irc.bot.SingleServerIRCBot):
print(e) print(e)
if output: if output:
if output.msg_type == 'message': for msg in output.msg:
c.privmsg(chan, output.msg) if output.msg_type == 'message':
elif output.msg_type == 'action': c.privmsg(chan, msg)
c.action(chan, output.msg) elif output.msg_type == 'action':
c.action(chan, msg)
time.sleep(.5)

View File

@ -3,7 +3,10 @@ cmds = []
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
self.msg = msg self.msg = self.sanitize(msg)
def sanitize(self, msg):
return msg.splitlines()
def action(msg): def action(msg):