PagerMaid-Modify/pagermaid/modules/clock.py
Xtao_dada 46aa4b5ec4
support set alias for the command. (#88)
*  支持为命令设置别名。
2021-06-15 12:31:05 +08:00

70 lines
2.3 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

""" This module handles world clock related utility. """
from datetime import datetime
from pytz import country_names, country_timezones, timezone
from pagermaid import config
from pagermaid.listener import listener
from pagermaid.utils import lang, alias_command
@listener(is_plugin=False, outgoing=True, command=alias_command('time'),
description=lang('time_des'),
parameters=lang('time_parameters'))
async def time(context):
""" For querying time. """
if len(context.parameter) > 1:
context.edit()
if len(context.parameter) == 1:
country = context.parameter[0].title()
else:
country = config['application_region']
time_form = "%I:%M %p"
date_form = "%A %d/%m/%y"
if not country:
time_zone = await get_timezone(config['application_region'])
await context.edit(
f"**Time in {config['application_region']}**\n"
f"`{datetime.now(time_zone).strftime(date_form)} "
f"{datetime.now(time_zone).strftime(time_form)}`"
)
return
time_zone = await get_timezone(country)
if not time_zone:
await context.edit(lang('arg_error'))
return
try:
country_name = country_names[country]
except KeyError:
country_name = country
await context.edit(f"**{country_name} {lang('time_time')}**\n"
f"`{datetime.now(time_zone).strftime(date_form)} "
f"{datetime.now(time_zone).strftime(time_form)}`")
async def get_timezone(target):
""" Returns timezone of the parameter in command. """
if "(Uk)" in target:
target = target.replace("Uk", "UK")
if "(Us)" in target:
target = target.replace("Us", "US")
if " Of " in target:
target = target.replace(" Of ", " of ")
if "(Western)" in target:
target = target.replace("(Western)", "(western)")
if "Minor Outlying Islands" in target:
target = target.replace("Minor Outlying Islands", "minor outlying islands")
if "Nl" in target:
target = target.replace("Nl", "NL")
for country_code in country_names:
if target == country_names[country_code]:
return timezone(country_timezones[country_code][0])
try:
if country_names[target]:
return timezone(country_timezones[target][0])
except KeyError:
return