small improvements to the worldtimeapi plugin

This commit is contained in:
ned
2023-07-02 20:48:12 +02:00
parent d29d3923fc
commit ff8101b26c
3 changed files with 33 additions and 41 deletions

View File

@@ -1,18 +1,20 @@
import os, requests
from typing import Dict
from datetime import datetime
from .plugin import Plugin
class WorldTimeApiPlugin(Plugin):
"""
A plugin to get the current time from a given timezone, using WorldTimeAPI
"""
def __init__(self):
wta_timezone = os.getenv('WORLDTIME_DEFAULT_TIMEZONE')
if not wta_timezone:
default_timezone = os.getenv('WORLDTIME_DEFAULT_TIMEZONE')
if not default_timezone:
raise ValueError('WORLDTIME_DEFAULT_TIMEZONE environment variable must be set to use WorldTimeApiPlugin')
self.defTz = wta_timezone.split('/');
self.default_timezone = default_timezone
def get_source_name(self) -> str:
return "WorldTimeAPI"
@@ -24,37 +26,25 @@ class WorldTimeApiPlugin(Plugin):
"parameters": {
"type": "object",
"properties": {
"area": {
"timezone": {
"type": "string",
"description": f"the continent of timezone identifier. use {self.defTz[0]} if not specified."
},
"location": {
"type": "string",
"description": f"the city/region of timezone identifier. use {self.defTz[1]} if not specified."
"description": f"The timezone identifier (e.g: `Europe/Rome`). Infer this from the location."
f"Use {self.default_timezone} if not specified."
}
},
"required": ["area", "location"],
"required": ["timezone"],
},
}]
async def execute(self, function_name, **kwargs) -> Dict:
areaVal = kwargs.get('area', self.defTz[0])
locVal = kwargs.get('location', self.defTz[1])
timezone = kwargs.get('timezone', self.default_timezone)
url = f'https://worldtimeapi.org/api/timezone/{timezone}'
url = f'https://worldtimeapi.org/api/timezone/{areaVal}/{locVal}'
try:
wtr = requests.get(url).json().get('datetime')
wtr_obj = datetime.strptime(wtr, "%Y-%m-%dT%H:%M:%S.%f%z")
time_24hr = wtr_obj.strftime("%H:%M:%S")
time_12hr = wtr_obj.strftime("%I:%M:%S %p")
res = {
"24hr": time_24hr,
"12hr": time_12hr
}
return {"24hr": time_24hr, "12hr": time_12hr}
except:
res = {"result": "No WorldTimeAPI result was found"}
return res
return {"result": "No result was found"}