mirror of
https://github.com/NoiTheCat/WorldTime.git
synced 2024-11-21 14:34:36 +00:00
Change output format for tz.list single
This commit is contained in:
parent
2a4c9f5a0c
commit
e1f8bf8b6e
2 changed files with 45 additions and 29 deletions
59
commands.py
59
commands.py
|
@ -38,12 +38,10 @@ class WtCommands:
|
||||||
def _tzPrint(self, zone : str):
|
def _tzPrint(self, zone : str):
|
||||||
"""
|
"""
|
||||||
Returns a string displaying the current time in the given time zone.
|
Returns a string displaying the current time in the given time zone.
|
||||||
Resulting string should be placed in a code block.
|
String begins with four numbers for sorting purposes and must be trimmed before output.
|
||||||
"""
|
"""
|
||||||
padding = ''
|
|
||||||
now_time = datetime.now(pytz.timezone(zone))
|
now_time = datetime.now(pytz.timezone(zone))
|
||||||
if len(now_time.strftime("%Z")) != 4: padding = ' '
|
return "{:s}● {:s}".format(now_time.strftime("%m%d"), now_time.strftime("%d-%b %H:%M %Z (UTC%z)"))
|
||||||
return "{:s}{:s} | {:s}".format(now_time.strftime("%H:%M %d-%b %Z%z"), padding, zone)
|
|
||||||
|
|
||||||
def _userResolve(self, guild: discord.Guild, userIds: list):
|
def _userResolve(self, guild: discord.Guild, userIds: list):
|
||||||
"""
|
"""
|
||||||
|
@ -77,6 +75,26 @@ class WtCommands:
|
||||||
else:
|
else:
|
||||||
result = result[:-2] + "."
|
result = result[:-2] + "."
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
def _userFormat(self, member: discord.Member):
|
||||||
|
"""
|
||||||
|
Given a member, returns a formatted string showing their username and nickname
|
||||||
|
prepared for result output.
|
||||||
|
"""
|
||||||
|
username = self._userFormatEscapeFormattingCharacters(member.name)
|
||||||
|
if member.nick is not None:
|
||||||
|
nickname = self._userFormatEscapeFormattingCharacters(member.nick)
|
||||||
|
return "**{}** ({}#{})".format(nickname, username, member.discriminator)
|
||||||
|
else:
|
||||||
|
return "**{}#{}**".format(username, member.discriminator)
|
||||||
|
|
||||||
|
def _userFormatEscapeFormattingCharacters(self, input: str):
|
||||||
|
result = ''
|
||||||
|
for char in input:
|
||||||
|
if char == '\\' or char == '_' or char == '~' or char == '*':
|
||||||
|
result += '\\'
|
||||||
|
result += char
|
||||||
|
return result
|
||||||
|
|
||||||
def _isUserAdmin(self, member: discord.Member):
|
def _isUserAdmin(self, member: discord.Member):
|
||||||
"""
|
"""
|
||||||
|
@ -186,7 +204,7 @@ class WtCommands:
|
||||||
async def cmd_list(self, guild: discord.Guild, channel: discord.TextChannel, author: discord.User, msgcontent: str):
|
async def cmd_list(self, guild: discord.Guild, channel: discord.TextChannel, author: discord.User, msgcontent: str):
|
||||||
wspl = msgcontent.split(' ', 1)
|
wspl = msgcontent.split(' ', 1)
|
||||||
if len(wspl) == 1:
|
if len(wspl) == 1:
|
||||||
await self._list_noparam2(guild, channel)
|
await self._list_noparam(guild, channel)
|
||||||
else:
|
else:
|
||||||
await self._list_userparam(guild, channel, author, wspl[1])
|
await self._list_userparam(guild, channel, author, wspl[1])
|
||||||
|
|
||||||
|
@ -218,22 +236,6 @@ class WtCommands:
|
||||||
# Supplemental command functions
|
# Supplemental command functions
|
||||||
|
|
||||||
async def _list_noparam(self, guild: discord.Guild, channel: discord.TextChannel):
|
async def _list_noparam(self, guild: discord.Guild, channel: discord.TextChannel):
|
||||||
# To do: improve and merge into noparam2
|
|
||||||
clist = self.userdb.get_list(guild.id)
|
|
||||||
if len(clist) == 0:
|
|
||||||
await channel.send(':x: No users with registered time zones have been active in the last 30 days.')
|
|
||||||
return
|
|
||||||
resultarr = []
|
|
||||||
for i in clist:
|
|
||||||
resultarr.append(self._tzPrint(i))
|
|
||||||
resultarr.sort()
|
|
||||||
resultstr = '```\n'
|
|
||||||
for i in resultarr:
|
|
||||||
resultstr += i + '\n'
|
|
||||||
resultstr += '```'
|
|
||||||
await channel.send(resultstr)
|
|
||||||
|
|
||||||
async def _list_noparam2(self, guild: discord.Guild, channel: discord.TextChannel):
|
|
||||||
rawlist = self.userdb.get_list2(guild.id)
|
rawlist = self.userdb.get_list2(guild.id)
|
||||||
if len(rawlist) == 0:
|
if len(rawlist) == 0:
|
||||||
await channel.send(':x: No users with registered time zones have been active in the last 30 days.')
|
await channel.send(':x: No users with registered time zones have been active in the last 30 days.')
|
||||||
|
@ -252,25 +254,24 @@ class WtCommands:
|
||||||
await channel.send(resultFinal)
|
await channel.send(resultFinal)
|
||||||
|
|
||||||
async def _list_userparam(self, guild: discord.Guild, channel: discord.TextChannel, author: discord.User, param):
|
async def _list_userparam(self, guild: discord.Guild, channel: discord.TextChannel, author: discord.User, param):
|
||||||
# wishlist: search based on username/nickname
|
|
||||||
param = str(param)
|
param = str(param)
|
||||||
usersearch = self._resolve_user(guild, param)
|
usersearch = self._resolve_member(guild, param)
|
||||||
if usersearch is None:
|
if usersearch is None:
|
||||||
await channel.send(':x: Cannot find the specified user.')
|
await channel.send(':x: Cannot find the specified user.')
|
||||||
return
|
return
|
||||||
|
|
||||||
res = self.userdb.get_list(guild.id, usersearch.id)
|
res = self.userdb.get_user(guild.id, usersearch.id)
|
||||||
if len(res) == 0:
|
if res is None:
|
||||||
ownsearch = author.id == param
|
ownsearch = author.id == param
|
||||||
if ownsearch: await channel.send(':x: You do not have a time zone. Set it with `tz.set`.')
|
if ownsearch: await channel.send(':x: You do not have a time zone. Set it with `tz.set`.')
|
||||||
else: await channel.send(':x: The given user does not have a time zone set.')
|
else: await channel.send(':x: The given user does not have a time zone set.')
|
||||||
return
|
return
|
||||||
resultstr = '```\n' + self._tzPrint(res[0]) + '\n```'
|
em = discord.Embed(description=self._tzPrint(res)[4:] + ": " + self._userFormat(usersearch))
|
||||||
await channel.send(resultstr)
|
await channel.send(embed=em)
|
||||||
|
|
||||||
def _resolve_user(self, guild: discord.Guild, inputstr: str):
|
def _resolve_member(self, guild: discord.Guild, inputstr: str):
|
||||||
"""
|
"""
|
||||||
Takes a string input and attempts to find the corresponding user.
|
Takes a string input and attempts to find the corresponding member.
|
||||||
"""
|
"""
|
||||||
idsearch = None
|
idsearch = None
|
||||||
try:
|
try:
|
||||||
|
|
15
userdb.py
15
userdb.py
|
@ -61,6 +61,21 @@ class UserDatabase:
|
||||||
self.db.commit()
|
self.db.commit()
|
||||||
c.close()
|
c.close()
|
||||||
|
|
||||||
|
def get_user(self, serverid, usreid):
|
||||||
|
'''
|
||||||
|
Retrieves the time zone name of a single user
|
||||||
|
'''
|
||||||
|
c = self.db.cursor()
|
||||||
|
c.execute("""
|
||||||
|
SELECT zone FROM userdata
|
||||||
|
WHERE guild_id = %s
|
||||||
|
""", (serverid,))
|
||||||
|
result = c.fetchone()
|
||||||
|
c.close()
|
||||||
|
if result is None: return None
|
||||||
|
return result[0]
|
||||||
|
|
||||||
|
|
||||||
def get_list(self, serverid, userid=None):
|
def get_list(self, serverid, userid=None):
|
||||||
'''
|
'''
|
||||||
Retrieves a list of recent time zones based on
|
Retrieves a list of recent time zones based on
|
||||||
|
|
Loading…
Reference in a new issue