40
37
urwid.curses_display.curses.A_UNDERLINE |= (
41
38
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
59
40
class MandosClientPropertyCache(object):
60
41
"""This wraps a Mandos Client D-Bus proxy object, caches the
61
42
properties and calls a hook function when any of them are
69
50
self.property_changed,
73
54
self.properties.update(
74
55
self.proxy.GetAll(client_interface,
75
56
dbus_interface = dbus.PROPERTIES_IFACE))
77
#XXX This break good super behaviour!
78
# super(MandosClientPropertyCache, self).__init__(
57
super(MandosClientPropertyCache, self).__init__(
58
proxy_object=proxy_object, *args, **kwargs)
81
60
def property_changed(self, property=None, value=None):
82
61
"""This is called whenever we get a PropertyChanged signal
126
102
client_interface,
127
103
byte_arrays=True)
128
self.proxy.connect_to_signal(u"NeedApproval",
132
104
self.proxy.connect_to_signal(u"Rejected",
134
106
client_interface,
135
107
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
151
109
def checker_completed(self, exitstatus, condition, command):
152
110
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
157
111
self.logger(u'Checker for client %s (command "%s")'
158
112
u' was successful'
159
113
% (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
168
115
if os.WIFEXITED(condition):
169
116
self.logger(u'Checker for client %s (command "%s")'
170
117
u' failed with exit code %s'
171
118
% (self.properties[u"name"], command,
172
119
os.WEXITSTATUS(condition)))
173
elif os.WIFSIGNALED(condition):
121
if os.WIFSIGNALED(condition):
174
122
self.logger(u'Checker for client %s (command "%s")'
175
123
u' was killed by signal %s'
176
124
% (self.properties[u"name"], command,
177
125
os.WTERMSIG(condition)))
178
elif os.WCOREDUMP(condition):
127
if os.WCOREDUMP(condition):
179
128
self.logger(u'Checker for client %s (command "%s")'
181
130
% (self.properties[u"name"], command))
183
self.logger(u'Checker for client %s completed mysteriously')
131
self.logger(u'Checker for client %s completed mysteriously')
186
133
def checker_started(self, command):
187
#self.logger(u'Client %s started checker "%s"'
188
# % (self.properties[u"name"], unicode(command)))
134
self.logger(u'Client %s started checker "%s"'
135
% (self.properties[u"name"], unicode(command)))
191
137
def got_secret(self):
192
self.last_checker_failed = False
193
138
self.logger(u'Client %s received its secret'
194
139
% 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))
142
self.logger(u'Client %s was rejected'
143
% self.properties[u"name"])
208
145
def selectable(self):
209
146
"""Make this a "selectable" widget.
231
168
u"bold-underline-blink":
232
169
u"bold-underline-blink-standout",
235
172
# Rebuild focus and non-focus widgets using current properties
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)
173
self._text = (u'%(name)s: %(enabled)s'
174
% { u"name": self.properties[u"name"],
177
if self.properties[u"enabled"]
261
179
if not urwid.supports_unicode():
262
180
self._text = self._text.encode("ascii", "replace")
263
181
textlist = [(u"normal", self._text)]
295
205
def keypress(self, (maxcol,), key):
297
207
This overrides the method from urwid.FlowWidget"""
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)
208
if key == u"e" or key == u"+":
210
elif key == u"d" or key == u"-":
308
212
elif key == u"r" or key == u"_" or key == u"ctrl k":
309
213
self.server_proxy_object.RemoveClient(self.proxy
311
215
elif key == u"s":
312
self.proxy.StartChecker(dbus_interface = client_interface)
216
self.proxy.StartChecker()
313
217
elif key == u"S":
314
self.proxy.StopChecker(dbus_interface = client_interface)
218
self.proxy.StopChecker()
315
219
elif key == u"C":
316
self.proxy.CheckedOK(dbus_interface = client_interface)
220
self.proxy.CheckedOK()
318
222
# elif key == u"p" or key == "=":
319
223
# self.proxy.pause()