183
173
client_interface,
184
174
byte_arrays=True))
185
#self.logger('Created client %s' % (self.properties["Name"]))
175
#self.logger('Created client {0}'
176
# .format(self.properties["Name"]))
187
178
def property_changed(self, property=None, value=None):
188
179
super(self, MandosClientWidget).property_changed(property,
190
181
if property == "ApprovalPending":
191
182
using_timer(bool(value))
183
if property == "LastCheckerStatus":
184
using_timer(value != 0)
185
#self.logger('Checker for client {0} (command "{1}") was '
186
# ' successful'.format(self.properties["Name"],
193
189
def using_timer(self, flag):
194
190
"""Call this method with True or False when timer should be
195
191
activated or deactivated.
211
207
def checker_completed(self, exitstatus, condition, command):
212
208
if exitstatus == 0:
213
if self.last_checker_failed:
214
self.last_checker_failed = False
215
self.using_timer(False)
216
#self.logger('Checker for client %s (command "%s")'
218
# % (self.properties["Name"], command))
222
if not self.last_checker_failed:
223
self.last_checker_failed = True
224
self.using_timer(True)
225
212
if os.WIFEXITED(condition):
226
self.logger('Checker for client %s (command "%s")'
227
' failed with exit code %s'
228
% (self.properties["Name"], command,
229
os.WEXITSTATUS(condition)))
213
self.logger('Checker for client {0} (command "{1}")'
214
' failed with exit code {2}'
215
.format(self.properties["Name"], command,
216
os.WEXITSTATUS(condition)))
230
217
elif os.WIFSIGNALED(condition):
231
self.logger('Checker for client %s (command "%s")'
232
' was killed by signal %s'
233
% (self.properties["Name"], command,
234
os.WTERMSIG(condition)))
218
self.logger('Checker for client {0} (command "{1}") was'
219
' killed by signal {2}'
220
.format(self.properties["Name"], command,
221
os.WTERMSIG(condition)))
235
222
elif os.WCOREDUMP(condition):
236
self.logger('Checker for client %s (command "%s")'
223
self.logger('Checker for client {0} (command "{1}")'
238
% (self.properties["Name"], command))
225
.format(self.properties["Name"], command))
240
self.logger('Checker for client %s completed'
227
self.logger('Checker for client {0} completed'
229
.format(self.properties["Name"]))
244
232
def checker_started(self, command):
245
233
"""Server signals that a checker started. This could be useful
246
234
to log in the future. """
247
#self.logger('Client %s started checker "%s"'
248
# % (self.properties["Name"], unicode(command)))
235
#self.logger('Client {0} started checker "{1}"'
236
# .format(self.properties["Name"],
251
240
def got_secret(self):
252
self.last_checker_failed = False
253
self.logger('Client %s received its secret'
254
% self.properties["Name"])
241
self.logger('Client {0} received its secret'
242
.format(self.properties["Name"]))
256
244
def need_approval(self, timeout, default):
258
message = 'Client %s needs approval within %s seconds'
246
message = 'Client {0} needs approval within {1} seconds'
260
message = 'Client %s will get its secret in %s seconds'
262
% (self.properties["Name"], timeout/1000))
248
message = 'Client {0} will get its secret in {1} seconds'
249
self.logger(message.format(self.properties["Name"],
263
251
self.using_timer(True)
265
253
def rejected(self, reason):
266
self.logger('Client %s was rejected; reason: %s'
267
% (self.properties["Name"], reason))
254
self.logger('Client {0} was rejected; reason: {1}'
255
.format(self.properties["Name"], reason))
269
257
def selectable(self):
270
258
"""Make this a "selectable" widget.
313
300
timer = datetime.timedelta()
314
301
if self.properties["ApprovedByDefault"]:
315
message = "Approval in %s. (d)eny?"
302
message = "Approval in {0}. (d)eny?"
317
message = "Denial in %s. (a)pprove?"
318
message = message % unicode(timer).rsplit(".", 1)[0]
319
elif self.last_checker_failed:
304
message = "Denial in {0}. (a)pprove?"
305
message = message.format(unicode(timer).rsplit(".", 1)[0])
306
elif self.properties["LastCheckerStatus"] != 0:
320
307
# When checker has failed, print a timer until client expires
321
308
expires = self.properties["Expires"]
322
309
if expires == "":
326
313
'%Y-%m-%dT%H:%M:%S.%f')
327
314
timer = expires - datetime.datetime.utcnow()
328
315
message = ('A checker has failed! Time until client'
330
% unicode(timer).rsplit(".", 1)[0])
316
' gets disabled: {0}'
317
.format(unicode(timer).rsplit(".", 1)[0]))
332
319
message = "enabled"
333
self._text = "%s%s" % (base, message)
320
self._text = "{0}{1}".format(base, message)
335
322
if not urwid.supports_unicode():
336
323
self._text = self._text.encode("ascii", "replace")
501
488
self.main_loop = gobject.MainLoop()
503
490
def client_not_found(self, fingerprint, address):
504
self.log_message(("Client with address %s and fingerprint %s"
505
" could not be found" % (address,
491
self.log_message("Client with address {0} and fingerprint"
492
" {1} could not be found"
493
.format(address, fingerprint))
508
495
def rebuild(self):
509
496
"""This rebuilds the User Interface.