37
40
urwid.curses_display.curses.A_UNDERLINE |= (
38
41
urwid.curses_display.curses.A_BLINK)
43
def isoformat_to_datetime(iso):
44
"Parse an ISO 8601 date string to a datetime.datetime()"
47
d, t = iso.split(u"T", 1)
48
year, month, day = d.split(u"-", 2)
49
hour, minute, second = t.split(u":", 2)
50
second, fraction = divmod(float(second), 1)
51
return datetime.datetime(int(year),
56
int(second), # Whole seconds
57
int(fraction*1000000)) # Microseconds
40
59
class MandosClientPropertyCache(object):
41
60
"""This wraps a Mandos Client D-Bus proxy object, caches the
42
61
properties and calls a hook function when any of them are
50
69
self.property_changed,
54
73
self.properties.update(
55
74
self.proxy.GetAll(client_interface,
56
75
dbus_interface = dbus.PROPERTIES_IFACE))
57
super(MandosClientPropertyCache, self).__init__(
58
proxy_object=proxy_object, *args, **kwargs)
77
#XXX This break good super behaviour!
78
# super(MandosClientPropertyCache, self).__init__(
60
81
def property_changed(self, property=None, value=None):
61
82
"""This is called whenever we get a PropertyChanged signal
102
126
client_interface,
103
127
byte_arrays=True)
128
self.proxy.connect_to_signal(u"NeedApproval",
104
132
self.proxy.connect_to_signal(u"Rejected",
106
134
client_interface,
107
135
byte_arrays=True)
136
last_checked_ok = isoformat_to_datetime(self.properties
138
if last_checked_ok is None:
139
self.last_checker_failed = True
141
self.last_checker_failed = ((datetime.datetime.utcnow()
145
self.properties["interval"]))
146
if self.last_checker_failed:
147
self._update_timer_callback_tag = (gobject.timeout_add
109
151
def checker_completed(self, exitstatus, condition, command):
110
152
if exitstatus == 0:
153
if self.last_checker_failed:
154
self.last_checker_failed = False
155
gobject.source_remove(self._update_timer_callback_tag)
156
self._update_timer_callback_tag = None
111
157
self.logger(u'Checker for client %s (command "%s")'
112
158
u' was successful'
113
159
% (self.properties[u"name"], command))
163
if not self.last_checker_failed:
164
self.last_checker_failed = True
165
self._update_timer_callback_tag = (gobject.timeout_add
115
168
if os.WIFEXITED(condition):
116
169
self.logger(u'Checker for client %s (command "%s")'
117
170
u' failed with exit code %s'
118
171
% (self.properties[u"name"], command,
119
172
os.WEXITSTATUS(condition)))
121
if os.WIFSIGNALED(condition):
173
elif os.WIFSIGNALED(condition):
122
174
self.logger(u'Checker for client %s (command "%s")'
123
175
u' was killed by signal %s'
124
176
% (self.properties[u"name"], command,
125
177
os.WTERMSIG(condition)))
127
if os.WCOREDUMP(condition):
178
elif os.WCOREDUMP(condition):
128
179
self.logger(u'Checker for client %s (command "%s")'
130
181
% (self.properties[u"name"], command))
131
self.logger(u'Checker for client %s completed mysteriously')
183
self.logger(u'Checker for client %s completed mysteriously')
133
186
def checker_started(self, command):
134
self.logger(u'Client %s started checker "%s"'
135
% (self.properties[u"name"], unicode(command)))
187
#self.logger(u'Client %s started checker "%s"'
188
# % (self.properties[u"name"], unicode(command)))
137
191
def got_secret(self):
192
self.last_checker_failed = False
138
193
self.logger(u'Client %s received its secret'
139
194
% self.properties[u"name"])
142
self.logger(u'Client %s was rejected'
143
% self.properties[u"name"])
196
def need_approval(self, timeout, default):
198
message = u'Client %s needs approval within %s seconds'
200
message = u'Client %s will get its secret in %s seconds'
202
% (self.properties[u"name"], timeout/1000))
204
def rejected(self, reason):
205
self.logger(u'Client %s was rejected; reason: %s'
206
% (self.properties[u"name"], reason))
145
208
def selectable(self):
146
209
"""Make this a "selectable" widget.
168
231
u"bold-underline-blink":
169
232
u"bold-underline-blink-standout",
172
235
# Rebuild focus and non-focus widgets using current properties
173
self._text = (u'%(name)s: %(enabled)s'
174
% { u"name": self.properties[u"name"],
177
if self.properties[u"enabled"]
237
# Base part of a client. Name!
238
base = (u'%(name)s: '
239
% {u"name": self.properties[u"name"]})
240
if not self.properties[u"enabled"]:
241
message = u"DISABLED"
242
elif self.properties[u"approved_pending"]:
243
if self.properties[u"approved_by_default"]:
244
message = u"Connection established to client. (d)eny?"
246
message = u"Seeks approval to send secret. (a)pprove?"
247
elif self.last_checker_failed:
248
timeout = datetime.timedelta(milliseconds
249
= self.properties[u"timeout"])
250
last_ok = isoformat_to_datetime(
251
max((self.properties["last_checked_ok"]
252
or self.properties["created"]),
253
self.properties[u"last_enabled"]))
254
timer = timeout - (datetime.datetime.utcnow() - last_ok)
255
message = (u'A checker has failed! Time until client gets diabled: %s'
256
% unicode(timer).rsplit(".", 1)[0])
259
self._text = "%s%s" % (base, message)
179
261
if not urwid.supports_unicode():
180
262
self._text = self._text.encode("ascii", "replace")
181
263
textlist = [(u"normal", self._text)]
205
295
def keypress(self, (maxcol,), key):
207
297
This overrides the method from urwid.FlowWidget"""
208
if key == u"e" or key == u"+":
210
elif key == u"d" or key == u"-":
299
self.proxy.Enable(dbus_interface = client_interface)
301
self.proxy.Disable(dbus_interface = client_interface)
303
self.proxy.Approve(dbus.Boolean(True, variant_level=1),
304
dbus_interface = client_interface)
306
self.proxy.Approve(dbus.Boolean(False, variant_level=1),
307
dbus_interface = client_interface)
212
308
elif key == u"r" or key == u"_" or key == u"ctrl k":
213
309
self.server_proxy_object.RemoveClient(self.proxy
215
311
elif key == u"s":
216
self.proxy.StartChecker()
312
self.proxy.StartChecker(dbus_interface = client_interface)
217
313
elif key == u"S":
218
self.proxy.StopChecker()
314
self.proxy.StopChecker(dbus_interface = client_interface)
219
315
elif key == u"C":
220
self.proxy.CheckedOK()
316
self.proxy.CheckedOK(dbus_interface = client_interface)
222
318
# elif key == u"p" or key == "=":
223
319
# self.proxy.pause()