From efd8b206715e7a7a10f37eeb2b0a66a318a26550 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucio=20Andr=C3=A9s=20Illanes=20Albornoz?= Date: Mon, 3 Dec 2018 11:51:20 +0100 Subject: [PATCH] IrcMiRCARTBot.py:_{dispatchPrivmsg,uploadToImgur}(): gracefully handle invalid responses from Imgur.com. --- MiRCART-python/IrcMiRCARTBot.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/MiRCART-python/IrcMiRCARTBot.py b/MiRCART-python/IrcMiRCARTBot.py index 92dadc1..04f0bd4 100755 --- a/MiRCART-python/IrcMiRCARTBot.py +++ b/MiRCART-python/IrcMiRCARTBot.py @@ -139,7 +139,10 @@ class IrcMiRCARTBot(IrcClient.IrcClient): canvasStore.outMap.append([[1, 1, 0, " "]] * len(canvasStore.outMap[0])) MiRCARTToPngFile(canvasStore.outMap, "DejaVuSansMono.ttf", 11).export(imgTmpFilePath) imgurResponse = self._uploadToImgur(imgTmpFilePath, "MiRCART image", "MiRCART image", self.imgurApiKey) - if imgurResponse[0] == 200: + if imgurResponse[0] == None: + self._log("Upload failed with exception `{}'".format(imgurResponse[1])) + self.queue("PRIVMSG", message[2], "4/!\\ Upload failed with exception `{}'!".format(imgurResponse[1])) + elif imgurResponse[0] == 200: self._log("Uploaded as: {}".format(imgurResponse[1])) self.queue("PRIVMSG", message[2], "8/!\\ Uploaded as: {}".format(imgurResponse[1])) self.clientChannelLastMessage = int(time.time()) @@ -177,7 +180,10 @@ class IrcMiRCARTBot(IrcClient.IrcClient): requestHeaders = { \ "Authorization": "Client-ID " + apiKey} responseHttp = requests.post("https://api.imgur.com/3/upload.json", data=requestData, headers=requestHeaders) - responseDict = json.loads(responseHttp.text) + try: + responseDict = json.loads(responseHttp.text) + except json.decoder.JSONDecodeError as err: + return [None, err] if responseHttp.status_code == 200: return [200, responseDict.get("data").get("link")] else: