2016-03-29 15:20:50 +00:00
|
|
|
import re
|
2018-10-03 12:22:37 +00:00
|
|
|
from src import ModuleManager, utils
|
2016-03-29 15:20:50 +00:00
|
|
|
|
2018-09-09 20:47:28 +00:00
|
|
|
ISGD_API_URL = "https://is.gd/create.php"
|
2016-03-29 15:20:50 +00:00
|
|
|
REGEX_URL = re.compile("https?://", re.I)
|
|
|
|
|
2018-09-27 10:46:10 +00:00
|
|
|
class Module(ModuleManager.BaseModule):
|
2018-10-03 12:22:37 +00:00
|
|
|
@utils.hook("get.shortlink")
|
2016-03-29 15:20:50 +00:00
|
|
|
def shortlink(self, event):
|
2018-09-09 12:20:59 +00:00
|
|
|
url = event["url"]
|
2016-03-29 15:20:50 +00:00
|
|
|
if not re.match(REGEX_URL, url):
|
|
|
|
url = "http://%s" % url
|
2018-10-03 12:22:37 +00:00
|
|
|
|
|
|
|
data = utils.http.get_url(ISGD_API_URL, get_params=
|
|
|
|
{"format": "json", "url": url}, json=True)
|
2018-09-09 20:47:28 +00:00
|
|
|
|
|
|
|
if data and data["shorturl"]:
|
|
|
|
return data["shorturl"]
|
2016-03-29 15:20:50 +00:00
|
|
|
|
2018-10-03 12:22:37 +00:00
|
|
|
@utils.hook("received.command.shorten", min_args=1)
|
2016-03-29 15:20:50 +00:00
|
|
|
def shorten(self, event):
|
2018-09-26 17:27:17 +00:00
|
|
|
"""
|
2018-09-30 16:29:09 +00:00
|
|
|
:help: Shorten a given URL using the is.gd service
|
|
|
|
:usage: <url>
|
2018-09-26 17:27:17 +00:00
|
|
|
"""
|
2018-09-09 15:07:39 +00:00
|
|
|
link = self.events.on("get.shortlink").call_for_result(
|
|
|
|
url=event["args"])
|
2016-03-29 15:20:50 +00:00
|
|
|
if link:
|
2018-09-09 20:47:28 +00:00
|
|
|
event["stdout"].write("Shortened URL: %s" % link)
|
2016-03-29 15:20:50 +00:00
|
|
|
else:
|
|
|
|
event["stderr"].write("Unable to shorten that URL.")
|