This repository was archived by the owner on Oct 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathaction-timer.py
executable file
·225 lines (166 loc) · 6.82 KB
/
action-timer.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
#!/usr/bin/env python3
# coding: utf-8
from hermes_python.hermes import Hermes
from datetime import timedelta
import time
from threading import Thread
MQTT_IP_ADDR = "localhost"
MQTT_PORT = 1883
MQTT_ADDR = "{}:{}".format(MQTT_IP_ADDR, str(MQTT_PORT))
TIMER_LIST = []
class TimerBase(Thread):
"""
"""
def __init__(self, hermes, intentMessage):
super(TimerBase, self).__init__()
self._start_time = 0
self.hermes = hermes
self.session_id = intentMessage.session_id
self.site_id = intentMessage.site_id
if intentMessage.slots.duration:
duration = intentMessage.slots.duration.first()
self.durationRaw = self.get_duration_raw(duration)
self.wait_seconds = self.get_seconds_from_duration(duration)
else:
text_now = u"Je n'ai pas compris la duré du minuteur, désolé."
hermes.publish_end_session(intentMessage.session_id, text_now)
raise Exception('Timer need dutration')
if intentMessage.slots.sentence:
self.sentence = intentMessage.slots.sentence.first().rawValue
else:
self.sentence = None
TIMER_LIST.append(self)
self.send_end()
@staticmethod
def get_seconds_from_duration(duration):
days = duration.days
hours = duration.hours
minutes = duration.minutes
seconds = duration.seconds
return timedelta(days=days, hours=hours, minutes=minutes, seconds=seconds).total_seconds()
@staticmethod
def get_duration_raw(duration):
result = ''
days = duration.days
hours = duration.hours
minutes = duration.minutes
seconds = duration.seconds
length = 0
if seconds > 0:
result = '{} seconds'.format(str(seconds))
length += 1
if minutes > 0:
if length > 0:
add_and = ' et '
else:
add_and = ''
result = '{} minutes{}{}'.format(str(minutes), add_and, result)
length += 1
if hours > 0:
if length > 1:
add_and = ', '
elif length > 0:
add_and = ' et '
else:
add_and = ''
result = '{} heures{}{}'.format(str(hours), add_and, result)
length += 1
if days > 0:
if length > 1:
add_and = ', '
elif length > 0:
add_and = ' et '
else:
add_and = ''
result = '{} jours{}{}'.format(str(days), add_and, result)
return result
@property
def remaining_time(self):
if self._start_time == 0:
return 0
return int((self._start_time + self.wait_seconds) - time.time())
@property
def remaining_time_str(self):
seconds = self.remaining_time
if seconds == 0:
return None
result = ''
add_and = ''
t = str(timedelta(seconds=seconds)).split(':')
if int(t[2]) > 0:
add_and = ' et '
result += "{} secondes".format(int(t[2]))
if int(t[1]) > 0:
result = "{} minutes {}{}".format(int(t[1]), add_and, result)
if add_and != '':
add_and = ', '
else:
add_and = ' et '
if int(t[0]) > 0:
result = "{} heures{}{}".format(int(t[0]), add_and, result)
return result
def run(self):
print("[{}] Start timer: wait {} seconds".format(time.time(), self.wait_seconds))
self._start_time = time.time()
time.sleep(self.wait_seconds)
self.__callback()
def __callback(self):
print("[{}] End timer: wait {} seconds".format(time.time(), self.wait_seconds))
TIMER_LIST.remove(self)
self.callback()
def callback(self):
raise NotImplementedError('You should implement your callback')
def send_end(self):
raise NotImplementedError('You should implement your send end')
class TimerSendNotification(TimerBase):
def callback(self):
if self.sentence is None:
text = u"Le minuteur de {} vient de ce terminer".format(str(self.durationRaw))
else:
text = u"Le minuteur de {} vient de ce terminer je doit vous rappeler de {}".format(
self.durationRaw, self.sentence)
self.hermes.publish_start_session_notification(site_id=self.site_id, session_initiation_text=text,
custom_data=None)
def send_end(self):
if self.sentence is None:
text_now = u"Je vous rappelerais dans {} que le minuteur c'est terminé".format(str(self.durationRaw))
else:
text_now = u"Je vous rappelerais dans {} de {}".format(str(self.durationRaw), str(self.sentence))
self.hermes.publish_end_session(self.session_id, text_now)
class TimerSendAction(TimerBase):
def callback(self):
self.hermes.publish_start_session_action(site_id=self.site_id, session_init_text=self.sentence,
session_init_intent_filter=[],
session_init_can_be_enqueued=False, custom_data=None)
def send_end(self):
if self.sentence is None:
raise Exception('TimerSendAction need sentence with action')
text_now = u"Dans {} je ferais l'action: {}".format(str(self.durationRaw), str(self.sentence))
self.hermes.publish_end_session(self.session_id, text_now)
def timerRemember(hermes, intentMessage):
timer = TimerSendNotification(hermes, intentMessage)
timer.start()
def timerAction(hermes, intentMessage):
# Example in 15 minutes start the TV
timer = TimerSendAction(hermes, intentMessage)
timer.start()
def timerRemainingTime(hermes, intentMessage):
len_timer_list = len(TIMER_LIST)
if len_timer_list < 1:
hermes.publish_end_session(intentMessage.session_id, "Il n'y a pas de minuteur en cours")
else:
text = u''
for i, timer in enumerate(TIMER_LIST):
text += u"Pour le minuteur numéro {} il reste {}".format(i + 1, timer.remaining_time_str)
if len_timer_list <= i:
text += u", "
hermes.publish_end_session(intentMessage.session_id, text)
def timerList(hermes, intentMessage):
pass
def timerRemove(hermes, intentMessage):
pass
if __name__ == "__main__":
with Hermes(MQTT_ADDR) as h:
h.subscribe_intent("Tealque:timerRemember", timerRemember)\
.subscribe_intent("Tealque:timerRemainingTime", timerRemainingTime)\
.loop_forever()