nemubot/modules/ycc.py

75 lines
2.2 KiB
Python
Raw Normal View History

2012-11-04 14:32:39 +00:00
# coding=utf-8
2014-08-27 23:39:31 +00:00
"""URL reducer module"""
2012-11-04 14:32:39 +00:00
import re
from urllib.parse import urlparse
from urllib.parse import quote
from urllib.request import urlopen
2012-11-04 14:32:39 +00:00
from hooks import hook
2014-08-13 13:53:55 +00:00
nemubotversion = 3.4
2012-11-04 14:32:39 +00:00
def help_full():
return "!ycc [<url>]: with an argument, reduce the given <url> thanks to ycc.fr; without argument, reduce the last URL said on the current channel."
2012-11-04 14:32:39 +00:00
LAST_URLS = dict()
def gen_response(res, msg, srv):
if res is None:
raise IRCException("la situation est embarassante, il semblerait que YCC soit down :(")
2012-11-04 14:32:39 +00:00
elif isinstance(res, str):
return Response("URL pour %s : %s" % (srv, res), msg.channel)
2012-11-04 14:32:39 +00:00
else:
raise IRCException("mauvaise URL : %s" % srv)
2012-11-04 14:32:39 +00:00
@hook("cmd_hook", "ycc")
2012-11-04 14:32:39 +00:00
def cmd_ycc(msg):
if len(msg.cmds) == 1:
global LAST_URLS
if msg.channel in LAST_URLS and len(LAST_URLS[msg.channel]) > 0:
msg.cmds.append(LAST_URLS[msg.channel].pop())
else:
raise IRCException("je n'ai pas d'autre URL à réduire.")
2012-11-04 14:32:39 +00:00
if len(msg.cmds) > 5:
raise IRCException("je ne peux pas réduire autant d'URL d'un seul coup.")
res = list()
for url in msg.cmds[1:]:
o = urlparse(url, "http")
if o.scheme != "":
snd_url = "http://ycc.fr/redirection/create/" + quote(url, "/:%@&=?")
print_debug(snd_url)
raw = urlopen(snd_url, timeout=10)
if o.netloc == "":
res.append(gen_response(raw.read().decode(), msg, o.scheme))
2012-11-04 14:32:39 +00:00
else:
res.append(gen_response(raw.read().decode(), msg, o.netloc))
else:
res.append(gen_response(False, msg, url))
return res
2012-11-04 14:32:39 +00:00
@hook("msg_default")
2012-11-04 14:32:39 +00:00
def parselisten(msg):
2014-09-03 17:06:26 +00:00
parseresponse(msg)
return None
@hook("all_post")
def parseresponse(msg):
2012-11-04 14:32:39 +00:00
global LAST_URLS
try:
urls = re.findall("([a-zA-Z0-9+.-]+:(?://)?[^ ]+)", msg.text)
for url in urls:
o = urlparse(url)
if o.scheme != "":
if o.netloc == "ycc.fr" or (o.netloc == "" and len(o.path) < 10):
continue
if msg.channel not in LAST_URLS:
LAST_URLS[msg.channel] = list()
LAST_URLS[msg.channel].append(url)
except:
pass
return msg