Convert YCC module to V3.2

This commit is contained in:
Némunaire 2012-08-22 21:17:16 +02:00
parent 7e20368c10
commit db7bb4ad3a
2 changed files with 31 additions and 28 deletions

4
modules/ycc.xml Normal file
View file

@ -0,0 +1,4 @@
<?xml version="1.0" ?>
<nemubotmodule name="ycc">
<message type="cmd" name="ycc" call="cmd_ycc" />
</nemubotmodule>

View file

@ -7,7 +7,7 @@ import sys
from . import Tinyfier
nemubotversion = 3.0
nemubotversion = 3.2
def help_tiny ():
"""Line inserted in the response to the command !help"""
@ -19,9 +19,8 @@ def help_full ():
def reload():
imp.reload(Tinyfier)
def parseanswer(msg):
def cmd_ycc(data, msg):
global LAST_URLS
if msg.cmd[0] == "ycc":
if len(msg.cmd) == 1:
if msg.channel in LAST_URLS and len(LAST_URLS[msg.channel]) > 0:
url = LAST_URLS[msg.channel].pop()
@ -35,14 +34,14 @@ def parseanswer(msg):
t = Tinyfier.Tinyfier(url, msg)
t.start()
else:
msg.send_chn("%s: je ne peux pas réduire autant d'URL d'un seul coup." % msg.nick)
return True
else:
msg.send_chn("%s: je ne peux pas réduire autant d'URL d'un seul"
" coup." % msg.nick)
return False
return True
LAST_URLS = dict()
def parselisten (msg):
def parselisten(data, msg):
global LAST_URLS
if re.match(".*(https?://|www\.)[^ ]+.*", msg.content) is not None:
res = re.match(".*(((ht|f)tps?://|www\.)[^ ]+).*", msg.content)