2018-10-31 16:12:28 +00:00
|
|
|
#--require-config imgur-api-key
|
|
|
|
|
2019-02-24 21:13:02 +00:00
|
|
|
import re, datetime
|
2019-02-24 20:37:17 +00:00
|
|
|
from src import ModuleManager, utils, EventManager
|
2018-10-31 16:12:28 +00:00
|
|
|
|
2018-10-31 16:29:24 +00:00
|
|
|
REGEX_IMAGE = re.compile("https?://(?:i\.)?imgur.com/(\w+)")
|
2018-10-31 17:41:12 +00:00
|
|
|
REGEX_GALLERY = re.compile("https?://imgur.com/gallery/(\w+)")
|
2018-10-31 17:44:21 +00:00
|
|
|
|
2018-10-31 16:12:28 +00:00
|
|
|
URL_IMAGE = "https://api.imgur.com/3/image/%s"
|
2018-10-31 17:44:21 +00:00
|
|
|
URL_GALLERY = "https://api.imgur.com/3/gallery/%s"
|
2018-10-31 16:12:28 +00:00
|
|
|
|
2019-02-24 21:10:25 +00:00
|
|
|
NSFW_TEXT = "(NSFW)"
|
|
|
|
|
2019-02-24 20:34:10 +00:00
|
|
|
@utils.export("channelset", {"setting": "auto-imgur",
|
|
|
|
"help": "Disable/Enable automatically getting info from Imgur URLs",
|
|
|
|
"validate": utils.bool_or_none})
|
2018-10-31 16:12:28 +00:00
|
|
|
class Module(ModuleManager.BaseModule):
|
2018-10-31 17:41:12 +00:00
|
|
|
def _prefix(self, data):
|
|
|
|
text = "%s: " % data["id"]
|
|
|
|
if data["nsfw"]:
|
|
|
|
text += "[NSFW] "
|
|
|
|
if data["account_url"]:
|
|
|
|
text += "%s " % data["account_url"]
|
2018-10-31 17:54:44 +00:00
|
|
|
return text
|
2018-10-31 17:41:12 +00:00
|
|
|
|
2019-02-24 20:34:10 +00:00
|
|
|
@utils.hook("received.message.channel",
|
|
|
|
priority=EventManager.PRIORITY_LOW)
|
|
|
|
def channel_message(self, event):
|
|
|
|
if not event["channel"].get_setting("auto-imgur", False):
|
|
|
|
return
|
|
|
|
|
|
|
|
msg = event["message"]
|
|
|
|
reply = ""
|
|
|
|
match_gallery = REGEX_GALLERY.match(msg)
|
|
|
|
match_image = REGEX_IMAGE.match(msg)
|
|
|
|
|
|
|
|
if match_gallery:
|
|
|
|
reply = self._parse_gallery(match_gallery.group(1))
|
|
|
|
|
2019-02-24 21:14:08 +00:00
|
|
|
elif match_image:
|
2019-02-24 20:34:10 +00:00
|
|
|
reply = self._parse_image(match_image.group(1))
|
|
|
|
|
2019-02-25 09:01:52 +00:00
|
|
|
else:
|
2019-02-24 20:34:10 +00:00
|
|
|
return
|
|
|
|
|
|
|
|
event.eat()
|
|
|
|
|
2019-02-24 21:10:25 +00:00
|
|
|
self.events.on("send.stdout").call(target=event["channel"], module_name="Imgur", server=event["server"],
|
2019-02-24 20:34:10 +00:00
|
|
|
message=reply)
|
|
|
|
return
|
|
|
|
|
|
|
|
def _parse_gallery(self, hash):
|
|
|
|
api_key = self.bot.config["imgur-api-key"]
|
|
|
|
result = utils.http.request(URL_GALLERY % hash,
|
|
|
|
headers={"Authorization": "Client-ID %s" % api_key},
|
|
|
|
json=True)
|
|
|
|
|
|
|
|
if result and result.data["success"]:
|
|
|
|
data = result.data["data"]
|
|
|
|
text = ""
|
|
|
|
|
2019-02-24 21:10:25 +00:00
|
|
|
nsfw = utils.irc.bold(NSFW_TEXT) + " " if data["nsfw"] else ""
|
|
|
|
title = data["title"] + " " if data["title"] else ""
|
2019-02-24 20:34:10 +00:00
|
|
|
views = data["views"]
|
2019-02-24 21:13:02 +00:00
|
|
|
time = datetime.datetime.utcfromtimestamp(data["datetime"]). \
|
2019-02-24 20:34:10 +00:00
|
|
|
strftime("%e %b, %Y at %H:%M")
|
|
|
|
ups = utils.irc.color(str(data["ups"]) + "▲", utils.consts.GREEN)
|
|
|
|
downs = utils.irc.color("▼" + str(data["downs"]), utils.consts.RED)
|
|
|
|
images = data["images_count"]
|
2019-02-24 21:10:25 +00:00
|
|
|
image_plural = "" if images == 1 else "s"
|
2019-02-24 20:34:10 +00:00
|
|
|
|
|
|
|
bracket_left = "(" if title or nsfw else ""
|
|
|
|
bracket_right = ")" if title or nsfw else ""
|
|
|
|
|
|
|
|
return "%s%s%sA gallery with %s image%s, %s views, posted %s (%s%s)%s" % \
|
|
|
|
(nsfw, title, bracket_left, images, image_plural, views,
|
|
|
|
time, ups, downs,
|
|
|
|
bracket_right)
|
|
|
|
|
|
|
|
|
|
|
|
def _parse_image(self, hash):
|
|
|
|
api_key = self.bot.config["imgur-api-key"]
|
|
|
|
result = utils.http.request(URL_IMAGE % hash,
|
|
|
|
headers={"Authorization": "Client-ID %s" % api_key},
|
|
|
|
json=True)
|
|
|
|
|
|
|
|
if result and result.data["success"]:
|
|
|
|
data = result.data["data"]
|
|
|
|
text = ""
|
|
|
|
|
2019-02-24 21:10:25 +00:00
|
|
|
nsfw = utils.irc.bold(NSFW_TEXT) + " " if data["nsfw"] else ""
|
|
|
|
title = data["title"] + " " if data["title"] else ""
|
2019-02-24 20:34:10 +00:00
|
|
|
type = data["type"].split("/")[-1]
|
|
|
|
width = data["width"]
|
|
|
|
height = data["height"]
|
|
|
|
views = data["views"]
|
2019-02-24 21:13:02 +00:00
|
|
|
time = datetime.datetime.utcfromtimestamp(data["datetime"]).\
|
2019-02-24 20:34:10 +00:00
|
|
|
strftime("%e %b, %Y at %H:%M")
|
|
|
|
|
|
|
|
#%Y-%m-%d %H:%M:%S+00:00 (UTC)
|
|
|
|
|
|
|
|
bracket_left = "(" if title or nsfw else ""
|
|
|
|
bracket_right = ")" if title or nsfw else ""
|
|
|
|
|
|
|
|
return "%s%s%sA %s image, %sx%s, with %s views, posted %s%s" % \
|
|
|
|
(nsfw, title, bracket_left, type, width, height, views, time,
|
|
|
|
bracket_right)
|
|
|
|
|
2018-10-31 16:12:28 +00:00
|
|
|
def _image_info(self, hash):
|
|
|
|
api_key = self.bot.config["imgur-api-key"]
|
2018-12-11 22:26:38 +00:00
|
|
|
result = utils.http.request(URL_IMAGE % hash,
|
2018-10-31 16:17:22 +00:00
|
|
|
headers={"Authorization": "Client-ID %s" % api_key},
|
2018-10-31 16:12:28 +00:00
|
|
|
json=True)
|
|
|
|
|
2018-12-11 22:26:38 +00:00
|
|
|
if result and result.data["success"]:
|
|
|
|
data = result.data["data"]
|
2018-10-31 17:41:12 +00:00
|
|
|
text = self._prefix(data)
|
2018-10-31 16:12:28 +00:00
|
|
|
|
2018-10-31 17:54:44 +00:00
|
|
|
text += "(%s %dx%d, %d views)" % (data["type"], data["width"],
|
2018-10-31 16:12:28 +00:00
|
|
|
data["height"], data["views"])
|
|
|
|
if data["title"]:
|
2018-10-31 17:54:44 +00:00
|
|
|
text += " %s" % data["title"]
|
2018-10-31 17:41:12 +00:00
|
|
|
return text
|
|
|
|
else:
|
|
|
|
raise utils.EventsResultsError()
|
|
|
|
|
|
|
|
def _gallery_info(self, hash):
|
|
|
|
api_key = self.bot.config["imgur-api-key"]
|
2018-12-11 22:26:38 +00:00
|
|
|
result = utils.http.request(URL_GALLERY % hash,
|
2018-10-31 17:41:12 +00:00
|
|
|
headers={"Authorization": "Client-ID %s" % api_key},
|
|
|
|
json=True)
|
|
|
|
|
2018-12-11 22:26:38 +00:00
|
|
|
if result and result.data["success"]:
|
|
|
|
data = result.data["data"]
|
2018-10-31 17:41:12 +00:00
|
|
|
text = self._prefix(data)
|
2018-10-31 17:54:44 +00:00
|
|
|
text += "(%d views, %d▲▼%d)" % (data["views"],
|
|
|
|
data["ups"], data["downs"])
|
2018-10-31 17:41:12 +00:00
|
|
|
if data["title"]:
|
2018-10-31 17:54:44 +00:00
|
|
|
text += " %s" % data["title"]
|
2018-10-31 16:12:28 +00:00
|
|
|
return text
|
|
|
|
else:
|
|
|
|
raise utils.EventsResultsError()
|
|
|
|
|
|
|
|
@utils.hook("received.command.imgur", min_args=1)
|
|
|
|
def imgur(self, event):
|
|
|
|
"""
|
|
|
|
:help: Get information about a given imgur image URL
|
|
|
|
:usage: <url>
|
|
|
|
"""
|
2019-02-24 20:34:10 +00:00
|
|
|
msg = event["args_split"][0]
|
|
|
|
|
|
|
|
match = REGEX_GALLERY.match(msg)
|
2018-10-31 17:41:12 +00:00
|
|
|
if match:
|
|
|
|
event["stdout"].write(self._gallery_info(match.group(1)))
|
2018-10-31 17:54:44 +00:00
|
|
|
return
|
2019-02-24 20:34:10 +00:00
|
|
|
|
2018-10-31 17:54:44 +00:00
|
|
|
match = REGEX_IMAGE.match(event["args_split"][0])
|
|
|
|
if match:
|
|
|
|
event["stdout"].write(self._image_info(match.group(1)))
|
|
|
|
return
|