bitbot-3.11-fork/modules/bitly.py

37 lines
1.3 KiB
Python
Raw Normal View History

2018-08-31 09:50:37 +00:00
# --require-config bitly-api-key
2016-03-29 15:20:50 +00:00
import re
import Utils
URL_BITLYSHORTEN = "https://api-ssl.bitly.com/v3/shorten"
REGEX_URL = re.compile("https?://", re.I)
2018-08-31 09:50:37 +00:00
2016-03-29 15:20:50 +00:00
class Module(object):
def __init__(self, bot):
self.bot = bot
bot.events.on("get").on("shortlink").hook(self.shortlink)
bot.events.on("received").on("command").on("shorten"
2018-08-31 09:50:37 +00:00
).hook(self.shorten,
min_args=1,
help="Shorten a URL.",
usage="<url>")
2016-03-29 15:20:50 +00:00
def shortlink(self, event):
url = event["url"]
if not re.match(REGEX_URL, url):
url = "http://%s" % url
data = Utils.get_url(URL_BITLYSHORTEN, get_params={
"access_token": self.bot.config["bitly-api-key"],
"longUrl": url}, json=True)
if data and data["data"]:
return data["data"]["url"]
def shorten(self, event):
link = self.bot.events.on("get").on("shortlink"
2018-08-31 09:50:37 +00:00
).call_for_result(url=event["args"])
2016-03-29 15:20:50 +00:00
if link:
event["stdout"].write("Short URL: %s" % link)
else:
event["stderr"].write("Unable to shorten that URL.")