bitbot-3.11-fork/modules/urbandictionary.py

36 lines
1.4 KiB
Python
Raw Normal View History

2016-03-29 11:56:58 +00:00
import json, re
from src import ModuleManager, utils
2016-03-29 11:56:58 +00:00
URL_URBANDICTIONARY = "http://api.urbandictionary.com/v0/define"
REGEX_DEFNUMBER = re.compile("-n(\d+) \S+")
class Module(ModuleManager.BaseModule):
@utils.hook("received.command.ud", alias_of="urbandictionary")
@utils.hook("received.command.urbandictionary", min_args=1)
2016-03-29 11:56:58 +00:00
def ud(self, event):
"""
:help: Get the definition of a provided term from Urban Dictionary
:usage: <term>
"""
2016-03-29 11:56:58 +00:00
term = event["args"]
number = 1
match = re.match(REGEX_DEFNUMBER, term)
if match:
number = int(match.group(1))
term = term.split(" ", 1)[1]
page = utils.http.get_url(URL_URBANDICTIONARY,
get_params={"term": term}, json=True)
2016-03-29 11:56:58 +00:00
if page:
if len(page["list"]):
if number > 0 and len(page["list"]) > number-1:
definition = page["list"][number-1]
event["stdout"].write("%s: %s" % (definition["word"],
definition["definition"].replace("\n", " ").replace(
"\r", "").replace(" ", " ")))
else:
event["stderr"].write("Definition number does not exist")
else:
event["stderr"].write("No results found")
else:
raise utils.EventsResultsError()