base xdcc module

This commit is contained in:
dave 2018-03-29 19:36:55 -07:00
parent 6c275ea269
commit 18c70b1f56
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,3 @@
{
"share": "/home/dave/Code/my/pyircbot3/share"
}

22
pyircbot/modules/XDCC.py Normal file
View File

@ -0,0 +1,22 @@
"""
.. module::XDCC
:synopsis: Provide XDCC filebot functionality
.. moduleauthor::Dave Pedu <dave@davepedu.com>
"""
import os
from pyircbot.modulebase import ModuleBase, command, hook, regex
from pyircbot.modules.ModInfo import info
from pyircbot.modules.DCC import int2ip
from threading import Thread
class XDCC(ModuleBase):
def __init__(self, bot, name):
super().__init__(bot, name)
self.dcc = self.bot.getBestModuleForService("dcc")
@regex(r'cdc list', types=['PRIVMSG'])
def xdcc_list(self, msg, match):
files = sorted(os.listdir(self.config.get("share")))
for i, f in enumerate(files):
self.bot.act_PRIVMSG(msg.args[0], "{}: {}: {}".format(msg.prefix.nick, i, f))