forked from MycroftAI/skill-date-time
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__init__.py
622 lines (544 loc) · 23.9 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
# Copyright 2017, Mycroft AI Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import datetime
import holidays
import pytz
import re
import time
from astral import Astral
import mycroft.audio
from adapt.intent import IntentBuilder
from mycroft.util.format import nice_date, nice_duration, nice_time
from mycroft.messagebus.message import Message
from mycroft import MycroftSkill, intent_handler, intent_file_handler
from mycroft.util.parse import (extract_datetime, fuzzy_match, extract_number,
normalize)
from mycroft.util.time import now_utc, to_local, now_local
from mycroft.skills.core import resting_screen_handler
def speakable_timezone(tz):
"""Convert timezone to a better speakable version
Splits joined words, e.g. EasterIsland to "Easter Island",
"North_Dakota" to "North Dakota" etc.
Then parses the output into the correct order for speech,
eg. "America/North Dakota/Center" to
resulting in something like "Center North Dakota America", or
"Easter Island Chile"
"""
say = re.sub(r"([a-z])([A-Z])", r"\g<1> \g<2>", tz)
say = say.replace("_", " ")
say = say.split("/")
say.reverse()
return " ".join(say)
class TimeSkill(MycroftSkill):
def __init__(self):
super(TimeSkill, self).__init__("TimeSkill")
self.astral = Astral()
self.displayed_time = None
self.display_tz = None
self.answering_query = False
self.log.info('test')
self.log.info('test again')
def initialize(self):
# Start a callback that repeats every 10 seconds
# TODO: Add mechanism to only start timer when UI setting
# is checked, but this requires a notifier for settings
# updates from the web.
now = datetime.datetime.now()
callback_time = (datetime.datetime(now.year, now.month, now.day,
now.hour, now.minute) +
datetime.timedelta(seconds=60))
self.schedule_repeating_event(self.update_display, callback_time, 10)
# TODO:19.08 Moved to MycroftSkill
@property
def platform(self):
""" Get the platform identifier string
Returns:
str: Platform identifier, such as "mycroft_mark_1",
"mycroft_picroft", "mycroft_mark_2". None for nonstandard.
"""
if self.config_core and self.config_core.get("enclosure"):
return self.config_core["enclosure"].get("platform")
else:
return None
@resting_screen_handler('Time and Date')
def handle_idle(self, message):
self.gui.clear()
self.log.debug('Activating Time/Date resting page')
self.gui['time_string'] = self.get_display_current_time()
self.gui['ampm_string'] = ''
self.gui['date_string'] = self.get_display_date()
self.gui['weekday_string'] = self.get_weekday()
self.gui['month_string'] = self.get_month_date()
self.gui['year_string'] = self.get_year()
self.gui.show_page('idle.qml')
@property
def use_24hour(self):
return self.config_core.get('time_format') == 'full'
def _get_timezone_from_builtins(self, locale):
try:
# This handles common city names, like "Dallas" or "Paris"
return pytz.timezone(self.astral[locale].timezone)
except Exception:
pass
try:
# This handles codes like "America/Los_Angeles"
return pytz.timezone(locale)
except Exception:
pass
return None
def _get_timezone_from_table(self, locale):
"""Check lookup table for timezones.
This can also be a translation layer.
E.g. "china = GMT+8"
"""
timezones = self.translate_namedvalues("timezone.value")
for timezone in timezones:
if locale.lower() == timezone.lower():
# assumes translation is correct
return pytz.timezone(timezones[timezone].strip())
return None
def _get_timezone_from_fuzzymatch(self, locale):
"""Fuzzymatch a location against the pytz timezones.
The pytz timezones consists of
Location/Name pairs. For example:
["Africa/Abidjan", "Africa/Accra", ... "America/Denver", ...
"America/New_York", ..., "America/North_Dakota/Center", ...
"Cuba", ..., "EST", ..., "Egypt", ..., "Etc/GMT+3", ...
"Etc/Zulu", ... "US/Eastern", ... "UTC", ..., "Zulu"]
These are parsed and compared against the provided location.
"""
target = locale.lower()
best = None
for name in pytz.all_timezones:
# Separate at '/'
normalized = name.lower().replace("_", " ").split("/")
if len(normalized) == 1:
pct = fuzzy_match(normalized[0], target)
elif len(normalized) >= 2:
# Check for locations like "Sydney"
pct1 = fuzzy_match(normalized[1], target)
# locations like "Sydney Australia" or "Center North Dakota"
pct2 = fuzzy_match(normalized[-2] + " " + normalized[-1],
target)
pct3 = fuzzy_match(normalized[-1] + " " + normalized[-2],
target)
pct = max(pct1, pct2, pct3)
if not best or pct >= best[0]:
best = (pct, name)
if best and best[0] > 0.8:
# solid choice
return pytz.timezone(best[1])
elif best and best[0] > 0.3:
say = speakable_timezone(best[1])
if self.ask_yesno("did.you.mean.timezone",
data={"zone_name": say}) == "yes":
return pytz.timezone(best[1])
else:
return None
def get_timezone(self, locale):
"""Get the timezone.
This uses a variety of approaches to determine the intended timezone.
"""
timezone = self._get_timezone_from_builtins(locale)
if not timezone:
timezone = self._get_timezone_from_table(locale)
if not timezone:
timezone = self._get_timezone_from_fuzzymatch(locale)
return timezone
def get_local_datetime(self, location, dtUTC=None):
if not dtUTC:
dtUTC = now_utc()
if self.display_tz:
# User requested times be shown in some timezone
tz = self.display_tz
else:
tz = self.get_timezone(self.location_timezone)
if location:
tz = self.get_timezone(location)
if not tz:
self.speak_dialog("time.tz.not.found", {"location": location})
return None
return dtUTC.astimezone(tz)
def get_display_date(self, day=None, location=None):
if not day:
day = self.get_local_datetime(location)
if self.config_core.get('date_format') == 'MDY':
return day.strftime("%-m/%-d/%Y")
else:
return day.strftime("%Y/%-d/%-m")
def get_display_current_time(self, location=None, dtUTC=None):
# Get a formatted digital clock time based on the user preferences
dt = self.get_local_datetime(location, dtUTC)
if not dt:
return None
return nice_time(dt, self.lang, speech=False,
use_24hour=self.use_24hour)
def get_spoken_current_time(self, location=None,
dtUTC=None, force_ampm=False):
# Get a formatted spoken time based on the user preferences
dt = self.get_local_datetime(location, dtUTC)
if not dt:
return
# speak AM/PM when talking about somewhere else
say_am_pm = bool(location) or force_ampm
s = nice_time(dt, self.lang, speech=True,
use_24hour=self.use_24hour, use_ampm=say_am_pm)
# HACK: Mimic 2 has a bug with saying "AM". Work around it for now.
if say_am_pm:
s = s.replace("AM", "A.M.")
return s
def display(self, display_time):
if display_time:
if self.platform == "mycroft_mark_1":
self.display_mark1(display_time)
self.display_gui(display_time)
def display_mark1(self, display_time):
# Map characters to the display encoding for a Mark 1
# (4x8 except colon, which is 2x8)
code_dict = {
':': 'CIICAA',
'0': 'EIMHEEMHAA',
'1': 'EIIEMHAEAA',
'2': 'EIEHEFMFAA',
'3': 'EIEFEFMHAA',
'4': 'EIMBABMHAA',
'5': 'EIMFEFEHAA',
'6': 'EIMHEFEHAA',
'7': 'EIEAEAMHAA',
'8': 'EIMHEFMHAA',
'9': 'EIMBEBMHAA',
}
# clear screen (draw two blank sections, numbers cover rest)
if len(display_time) == 4:
# for 4-character times, 9x8 blank
self.enclosure.mouth_display(img_code="JIAAAAAAAAAAAAAAAAAA",
refresh=False)
self.enclosure.mouth_display(img_code="JIAAAAAAAAAAAAAAAAAA",
x=22, refresh=False)
else:
# for 5-character times, 7x8 blank
self.enclosure.mouth_display(img_code="HIAAAAAAAAAAAAAA",
refresh=False)
self.enclosure.mouth_display(img_code="HIAAAAAAAAAAAAAA",
x=24, refresh=False)
# draw the time, centered on display
xoffset = (32 - (4*(len(display_time))-2)) / 2
for c in display_time:
if c in code_dict:
self.enclosure.mouth_display(img_code=code_dict[c],
x=xoffset, refresh=False)
if c == ":":
xoffset += 2 # colon is 1 pixels + a space
else:
xoffset += 4 # digits are 3 pixels + a space
if self._is_alarm_set():
# Show a dot in the upper-left
self.enclosure.mouth_display(img_code="CIAACA", x=29,
refresh=False)
else:
self.enclosure.mouth_display(img_code="CIAAAA", x=29,
refresh=False)
def _is_alarm_set(self):
"""Query the alarm skill if an alarm is set."""
query = Message("private.mycroftai.has_alarm")
msg = self.bus.wait_for_response(query)
return msg and msg.data.get("active_alarms", 0) > 0
def display_gui(self, display_time):
""" Display time on the Mycroft GUI. """
self.gui.clear()
self.gui['time_string'] = display_time
self.gui['ampm_string'] = ''
self.gui['date_string'] = self.get_display_date()
self.gui.show_page('time.qml')
def _is_display_idle(self):
# check if the display is being used by another skill right now
# or _get_active() == "TimeSkill"
return self.enclosure.display_manager.get_active() == ''
def update_display(self, force=False):
# Don't show idle time when answering a query to prevent
# overwriting the displayed value.
if self.answering_query:
return
self.gui['time_string'] = self.get_display_current_time()
self.gui['date_string'] = self.get_display_date()
self.gui['ampm_string'] = '' # TODO
if self.settings.get("show_time", False):
# user requested display of time while idle
if (force is True) or self._is_display_idle():
current_time = self.get_display_current_time()
if self.displayed_time != current_time:
self.displayed_time = current_time
self.display(current_time)
# return mouth to 'idle'
self.enclosure.display_manager.remove_active()
else:
self.displayed_time = None # another skill is using display
else:
# time display is not wanted
if self.displayed_time:
if self._is_display_idle():
# erase the existing displayed time
self.enclosure.mouth_reset()
# return mouth to 'idle'
self.enclosure.display_manager.remove_active()
self.displayed_time = None
def _extract_location(self, utt):
# if "Location" in message.data:
# return message.data["Location"]
rx_file = self.find_resource('location.rx', 'regex')
if rx_file:
with open(rx_file) as f:
for pat in f.read().splitlines():
pat = pat.strip()
if pat and pat[0] == "#":
continue
res = re.search(pat, utt)
if res:
try:
return res.group("Location")
except IndexError:
pass
return None
######################################################################
# Time queries / display
@intent_handler(IntentBuilder("").require("Query").require("Time").
optionally("Location"))
def handle_query_time(self, message):
utt = message.data.get('utterance', "")
location = self._extract_location(utt)
current_time = self.get_spoken_current_time(location)
if not current_time:
return
# speak it
self.speak_dialog("time.current", {"time": current_time})
# and briefly show the time
self.answering_query = True
self.enclosure.deactivate_mouth_events()
self.display(self.get_display_current_time(location))
time.sleep(5)
mycroft.audio.wait_while_speaking()
self.enclosure.mouth_reset()
self.enclosure.activate_mouth_events()
self.answering_query = False
self.displayed_time = None
@intent_handler("what.time.is.it.intent")
def handle_current_time_simple(self, message):
self.handle_query_time(message)
@intent_file_handler("what.time.will.it.be.intent")
def handle_query_future_time(self, message):
utt = normalize(message.data.get('utterance', "").lower())
extract = extract_datetime(utt)
if extract:
dt = extract[0]
utt = extract[1]
location = self._extract_location(utt)
future_time = self.get_spoken_current_time(location, dt, True)
if not future_time:
return
# speak it
self.speak_dialog("time.future", {"time": future_time})
# and briefly show the time
self.answering_query = True
self.enclosure.deactivate_mouth_events()
self.display(self.get_display_current_time(location, dt))
time.sleep(5)
mycroft.audio.wait_while_speaking()
self.enclosure.mouth_reset()
self.enclosure.activate_mouth_events()
self.answering_query = False
self.displayed_time = None
@intent_handler(IntentBuilder("future_time_handler_simple").
require("Time").require("Future").optionally("Location"))
def handle_future_time_simple(self, message):
self.handle_query_future_time(message)
@intent_handler(IntentBuilder("").require("Display").require("Time").
optionally("Location"))
def handle_show_time(self, message):
self.display_tz = None
utt = message.data.get('utterance', "")
location = self._extract_location(utt)
if location:
tz = self.get_timezone(location)
if not tz:
self.speak_dialog("time.tz.not.found", {"location": location})
return
else:
self.display_tz = tz
else:
self.display_tz = None
# show time immediately
self.settings["show_time"] = True
self.update_display(True)
######################################################################
# Date queries
def handle_query_date(self, message, response_type="simple"):
utt = message.data.get('utterance', "").lower()
try:
extract = extract_datetime(utt)
except Exception:
self.speak_dialog('date.not.found')
return
day = extract[0] if extract else now_local()
# check if a Holiday was requested, e.g. "What day is Christmas?"
year = extract_number(utt)
if not year or year < 1500 or year > 3000: # filter out non-years
year = day.year
all_holidays = {}
# TODO: How to pick a location for holidays?
for st in holidays.US.STATES:
holiday_dict = holidays.US(years=[year], state=st)
for d, name in holiday_dict.items():
if name not in all_holidays:
all_holidays[name] = d
for name in all_holidays:
d = all_holidays[name]
# Uncomment to display all holidays in the database
# self.log.info("Day, name: " +str(d) + " " + str(name))
if name.replace(" Day", "").lower() in utt:
day = d
break
location = self._extract_location(utt)
today = to_local(now_utc())
if location:
# TODO: Timezone math!
if (day.year == today.year and day.month == today.month
and day.day == today.day):
day = now_utc() # for questions ~ "what is the day in sydney"
day = self.get_local_datetime(location, dtUTC=day)
if not day:
return # failed in timezone lookup
speak_date = nice_date(day, lang=self.lang)
# speak it
if response_type is "simple":
self.speak_dialog("date", {"date": speak_date})
elif response_type is "relative":
# remove time data to get clean dates
day_date = day.replace(hour=0, minute=0,
second=0, microsecond=0)
today_date = today.replace(hour=0, minute=0,
second=0, microsecond=0)
num_days = (day_date - today_date).days
if num_days >= 0:
speak_num_days = nice_duration(num_days * 86400)
self.speak_dialog("date.relative.future",
{"date": speak_date,
"num_days": speak_num_days})
else:
# if in the past, make positive before getting duration
speak_num_days = nice_duration(num_days * -86400)
self.speak_dialog("date.relative.past",
{"date": speak_date,
"num_days": speak_num_days})
# and briefly show the date
self.answering_query = True
self.show_date(location, day=day)
time.sleep(10)
mycroft.audio.wait_while_speaking()
if self.platform == "mycroft_mark_1":
self.enclosure.mouth_reset()
self.enclosure.activate_mouth_events()
self.answering_query = False
self.displayed_time = None
@intent_handler(IntentBuilder("").require("Query").require("Date").
optionally("Location"))
def handle_query_date_simple(self, message):
self.handle_query_date(message, response_type="simple")
@intent_handler(IntentBuilder("").require("Query").require("Month"))
def handle_day_for_date(self, message):
self.handle_query_date(message, response_type="relative")
@intent_handler(IntentBuilder("").require("Query").require("RelativeDay")
.optionally("Date"))
def handle_query_relative_date(self, message):
if self.voc_match(message.data.get('utterance', ""), 'Today'):
self.handle_query_date(message, response_type="simple")
else:
self.handle_query_date(message, response_type="relative")
@intent_handler(IntentBuilder("").require("RelativeDay").require("Date"))
def handle_query_relative_date_alt(self, message):
if self.voc_match(message.data.get('utterance', ""), 'Today'):
self.handle_query_date(message, response_type="simple")
else:
self.handle_query_date(message, response_type="relative")
@intent_file_handler("date.future.weekend.intent")
def handle_date_future_weekend(self, message):
# Strip year off nice_date as request is inherently close
# Don't pass `now` to `nice_date` as a
# request on Friday will return "tomorrow"
saturday_date = ', '.join(nice_date(extract_datetime(
'this saturday')[0]).split(', ')[:2])
sunday_date = ', '.join(nice_date(extract_datetime(
'this sunday')[0]).split(', ')[:2])
self.speak_dialog('date.future.weekend', {
'direction': 'next',
'saturday_date': saturday_date,
'sunday_date': sunday_date
})
@intent_file_handler("date.last.weekend.intent")
def handle_date_last_weekend(self, message):
# Strip year off nice_date as request is inherently close
# Don't pass `now` to `nice_date` as a
# request on Monday will return "yesterday"
saturday_date = ', '.join(nice_date(extract_datetime(
'this saturday')[0]).split(', ')[:2])
sunday_date = ', '.join(nice_date(extract_datetime(
'this sunday')[0]).split(', ')[:2])
self.speak_dialog('date.last.weekend', {
'direction': 'last',
'saturday_date': saturday_date,
'sunday_date': sunday_date
})
@intent_handler(IntentBuilder("").require("Query").require("LeapYear"))
def handle_query_next_leap_year(self, message):
now = datetime.datetime.now()
leap_date = datetime.datetime(now.year, 2, 28)
year = now.year if now <= leap_date else now.year + 1
next_leap_year = self.get_next_leap_year(year)
self.speak_dialog('next.leap.year', {'year': next_leap_year})
def show_date(self, location, day=None):
if self.platform == "mycroft_mark_1":
self.show_date_mark1(location, day)
self.show_date_gui(location, day)
def show_date_mark1(self, location, day):
show = self.get_display_date(day, location)
self.enclosure.deactivate_mouth_events()
self.enclosure.mouth_text(show)
def get_weekday(self, day=None, location=None):
if not day:
day = self.get_local_datetime(location)
return day.strftime("%A")
def get_month_date(self, day=None, location=None):
if not day:
day = self.get_local_datetime(location)
return day.strftime("%B %d")
def get_year(self, day=None, location=None):
if not day:
day = self.get_local_datetime(location)
return day.strftime("%Y")
def get_next_leap_year(self, year):
next_year = year + 1
if self.is_leap_year(next_year):
return next_year
else:
return self.get_next_leap_year(next_year)
def is_leap_year(self, year):
return (year % 400 == 0) or ((year % 4 == 0) and (year % 100 != 0))
def show_date_gui(self, location, day):
self.gui.clear()
self.gui['date_string'] = self.get_display_date(day, location)
self.gui['weekday_string'] = self.get_weekday(day, location)
self.gui['month_string'] = self.get_month_date(day, location)
self.gui['year_string'] = self.get_year(day, location)
self.gui.show_page('date.qml')
def create_skill():
return TimeSkill()