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()
147
if self.last_checker_failed:
148
self._update_timer_callback_tag = (gobject.timeout_add
109
152
def checker_completed(self, exitstatus, condition, command):
110
153
if exitstatus == 0:
111
self.logger(u'Checker for client %s (command "%s")'
113
% (self.properties[u"name"], command))
154
if self.last_checker_failed:
155
self.last_checker_failed = False
156
gobject.source_remove(self._update_timer_callback_tag)
157
self._update_timer_callback_tag = None
158
#self.logger(u'Checker for client %s (command "%s")'
160
# % (self.properties[u"Name"], command))
164
if not self.last_checker_failed:
165
self.last_checker_failed = True
166
self._update_timer_callback_tag = (gobject.timeout_add
115
169
if os.WIFEXITED(condition):
116
170
self.logger(u'Checker for client %s (command "%s")'
117
171
u' failed with exit code %s'
118
% (self.properties[u"name"], command,
172
% (self.properties[u"Name"], command,
119
173
os.WEXITSTATUS(condition)))
121
if os.WIFSIGNALED(condition):
174
elif os.WIFSIGNALED(condition):
122
175
self.logger(u'Checker for client %s (command "%s")'
123
176
u' was killed by signal %s'
124
% (self.properties[u"name"], command,
177
% (self.properties[u"Name"], command,
125
178
os.WTERMSIG(condition)))
127
if os.WCOREDUMP(condition):
179
elif os.WCOREDUMP(condition):
128
180
self.logger(u'Checker for client %s (command "%s")'
130
% (self.properties[u"name"], command))
131
self.logger(u'Checker for client %s completed mysteriously')
182
% (self.properties[u"Name"], command))
184
self.logger(u'Checker for client %s completed'
133
188
def checker_started(self, command):
134
self.logger(u'Client %s started checker "%s"'
135
% (self.properties[u"name"], unicode(command)))
189
#self.logger(u'Client %s started checker "%s"'
190
# % (self.properties[u"Name"], unicode(command)))
137
193
def got_secret(self):
194
self.last_checker_failed = False
138
195
self.logger(u'Client %s received its secret'
139
% self.properties[u"name"])
142
self.logger(u'Client %s was rejected'
143
% self.properties[u"name"])
196
% self.properties[u"Name"])
198
def need_approval(self, timeout, default):
200
message = u'Client %s needs approval within %s seconds'
202
message = u'Client %s will get its secret in %s seconds'
204
% (self.properties[u"Name"], timeout/1000))
206
def rejected(self, reason):
207
self.logger(u'Client %s was rejected; reason: %s'
208
% (self.properties[u"Name"], reason))
145
210
def selectable(self):
146
211
"""Make this a "selectable" widget.
168
233
u"bold-underline-blink":
169
234
u"bold-underline-blink-standout",
172
237
# 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"]
239
# Base part of a client. Name!
240
base = (u'%(name)s: '
241
% {u"name": self.properties[u"Name"]})
242
if not self.properties[u"Enabled"]:
243
message = u"DISABLED"
244
elif self.properties[u"ApprovalPending"]:
245
if self.properties[u"ApprovedByDefault"]:
246
message = u"Connection established to client. (d)eny?"
248
message = u"Seeks approval to send secret. (a)pprove?"
249
elif self.last_checker_failed:
250
timeout = datetime.timedelta(milliseconds
253
last_ok = isoformat_to_datetime(
254
max((self.properties[u"LastCheckedOK"]
255
or self.properties[u"Created"]),
256
self.properties[u"LastEnabled"]))
257
timer = timeout - (datetime.datetime.utcnow() - last_ok)
258
message = (u'A checker has failed! Time until client'
260
% unicode(timer).rsplit(".", 1)[0])
263
self._text = "%s%s" % (base, message)
179
265
if not urwid.supports_unicode():
180
266
self._text = self._text.encode("ascii", "replace")
181
267
textlist = [(u"normal", self._text)]
205
299
def keypress(self, (maxcol,), key):
207
301
This overrides the method from urwid.FlowWidget"""
208
if key == u"e" or key == u"+":
210
elif key == u"d" or key == u"-":
303
self.proxy.Enable(dbus_interface = client_interface)
305
self.proxy.Disable(dbus_interface = client_interface)
307
self.proxy.Approve(dbus.Boolean(True, variant_level=1),
308
dbus_interface = client_interface)
310
self.proxy.Approve(dbus.Boolean(False, variant_level=1),
311
dbus_interface = client_interface)
212
312
elif key == u"r" or key == u"_" or key == u"ctrl k":
213
313
self.server_proxy_object.RemoveClient(self.proxy
215
315
elif key == u"s":
216
self.proxy.StartChecker()
316
self.proxy.StartChecker(dbus_interface = client_interface)
217
317
elif key == u"S":
218
self.proxy.StopChecker()
318
self.proxy.StopChecker(dbus_interface = client_interface)
219
319
elif key == u"C":
220
self.proxy.CheckedOK()
320
self.proxy.CheckedOK(dbus_interface = client_interface)
222
322
# elif key == u"p" or key == "=":
223
323
# self.proxy.pause()