Compare commits

...

3 commits

Author SHA1 Message Date
n
d83463d27a increment version 2025-01-31 20:58:18 -06:00
n
5c3f9031dc Finish debug mode 2025-01-31 20:54:58 -06:00
n
94e871556e start work on a debugMode 2025-01-31 20:51:27 -06:00
2 changed files with 41 additions and 14 deletions

28
bot.py
View file

@ -2,7 +2,7 @@ import simplematrixbotlib as botLibrary
import json import json
import fetch import fetch
version = "0.1.0" version = "0.1.5"
print("Imag/quotes bot version " + version) print("Imag/quotes bot version " + version)
print("Loading config…") print("Loading config…")
@ -15,6 +15,11 @@ except FileNotFoundError:
except: except:
print("Something bad and unforseen happened, please report the bug to @n:everypizza.im") print("Something bad and unforseen happened, please report the bug to @n:everypizza.im")
if config['bot']['debugMode'] == True:
debugMode = True
else:
debugMode = False
print("Logging in…") print("Logging in…")
credentials = botLibrary.Creds(config['matrix']['server'], config['matrix']['userid'], config['matrix']['password']) credentials = botLibrary.Creds(config['matrix']['server'], config['matrix']['userid'], config['matrix']['password'])
bot = botLibrary.Bot(credentials) bot = botLibrary.Bot(credentials)
@ -27,7 +32,7 @@ async def help_message(room, message):
if not (match.is_not_from_this_bot() and match.prefix() if not (match.is_not_from_this_bot() and match.prefix()
and match.command("help")): and match.command("help")):
return return
if debugMode == False:
message = (f""" message = (f"""
Help Help
============================ ============================
@ -37,6 +42,21 @@ async def help_message(room, message):
{PREFIX} source - send a link to the source code {PREFIX} source - send a link to the source code
{PREFIX} version - show the bot version {PREFIX} version - show the bot version
""") """)
else:
message = (f"""
Help
============================
A work-in-progress Python rewrite of the original quotes bot, aiming for a mostly complete remake.
{PREFIX} help - show this message
{PREFIX} get - fetch a image from the defined instance
{PREFIX} source - send a link to the source code
{PREFIX} version - show the bot version
---
NOTE: Debug mode is on. Output will be more verbose.
""")
await bot.api.send_text_message(room.room_id, message) await bot.api.send_text_message(room.room_id, message)
@ -53,6 +73,10 @@ async def make_choice(room, message):
id = match.args() id = match.args()
id = str(id[1]) id = str(id[1])
quoteImage = fetch.fetchQuote(id) quoteImage = fetch.fetchQuote(id)
if debugMode == False:
pass
else:
message = (f""" message = (f"""
Command recived (DEBUG). Command recived (DEBUG).
(We're supposed to fetch quote number {id} now.) (We're supposed to fetch quote number {id} now.)

View file

@ -7,5 +7,8 @@
"imag":{ "imag":{
"_comment": "Don't put a slash at an end of this. That took quite a bit of running around in circles to fix.", "_comment": "Don't put a slash at an end of this. That took quite a bit of running around in circles to fix.",
"server": "https://quotes.example.com" "server": "https://quotes.example.com"
},
"bot": {
"debugMode": true
} }
} }