185
181
using_timer(bool(value))
186
182
if property == "LastCheckerStatus":
187
183
using_timer(value != 0)
188
#self.logger('Checker for client {0} (command "{1}") was '
189
# ' successful'.format(self.properties["Name"],
184
#self.logger('Checker for client %s (command "%s")'
186
# % (self.properties["Name"], command))
192
188
def using_timer(self, flag):
193
189
"""Call this method with True or False when timer should be
215
211
if os.WIFEXITED(condition):
216
self.logger('Checker for client {0} (command "{1}")'
217
' failed with exit code {2}'
218
.format(self.properties["Name"], command,
219
os.WEXITSTATUS(condition)))
212
self.logger('Checker for client %s (command "%s")'
213
' failed with exit code %s'
214
% (self.properties["Name"], command,
215
os.WEXITSTATUS(condition)))
220
216
elif os.WIFSIGNALED(condition):
221
self.logger('Checker for client {0} (command "{1}") was'
222
' killed by signal {2}'
223
.format(self.properties["Name"], command,
224
os.WTERMSIG(condition)))
217
self.logger('Checker for client %s (command "%s")'
218
' was killed by signal %s'
219
% (self.properties["Name"], command,
220
os.WTERMSIG(condition)))
225
221
elif os.WCOREDUMP(condition):
226
self.logger('Checker for client {0} (command "{1}")'
222
self.logger('Checker for client %s (command "%s")'
228
.format(self.properties["Name"], command))
224
% (self.properties["Name"], command))
230
self.logger('Checker for client {0} completed'
232
.format(self.properties["Name"]))
226
self.logger('Checker for client %s completed'
235
230
def checker_started(self, command):
236
231
"""Server signals that a checker started. This could be useful
237
232
to log in the future. """
238
#self.logger('Client {0} started checker "{1}"'
239
# .format(self.properties["Name"],
233
#self.logger('Client %s started checker "%s"'
234
# % (self.properties["Name"], unicode(command)))
243
237
def got_secret(self):
244
self.logger('Client {0} received its secret'
245
.format(self.properties["Name"]))
238
self.logger('Client %s received its secret'
239
% self.properties["Name"])
247
241
def need_approval(self, timeout, default):
249
message = 'Client {0} needs approval within {1} seconds'
243
message = 'Client %s needs approval within %s seconds'
251
message = 'Client {0} will get its secret in {1} seconds'
252
self.logger(message.format(self.properties["Name"],
245
message = 'Client %s will get its secret in %s seconds'
247
% (self.properties["Name"], timeout/1000))
254
248
self.using_timer(True)
256
250
def rejected(self, reason):
257
self.logger('Client {0} was rejected; reason: {1}'
258
.format(self.properties["Name"], reason))
251
self.logger('Client %s was rejected; reason: %s'
252
% (self.properties["Name"], reason))
260
254
def selectable(self):
261
255
"""Make this a "selectable" widget.
303
298
timer = datetime.timedelta()
304
299
if self.properties["ApprovedByDefault"]:
305
message = "Approval in {0}. (d)eny?"
300
message = "Approval in %s. (d)eny?"
307
message = "Denial in {0}. (a)pprove?"
308
message = message.format(unicode(timer).rsplit(".", 1)[0])
302
message = "Denial in %s. (a)pprove?"
303
message = message % unicode(timer).rsplit(".", 1)[0]
309
304
elif self.properties["LastCheckerStatus"] != 0:
310
# When checker has failed, show timer until client expires
305
# When checker has failed, print a timer until client expires
311
306
expires = self.properties["Expires"]
312
307
if expires == "":
313
308
timer = datetime.timedelta(0)
315
expires = (datetime.datetime.strptime
316
(expires, '%Y-%m-%dT%H:%M:%S.%f'))
310
expires = datetime.datetime.strptime(expires,
311
'%Y-%m-%dT%H:%M:%S.%f')
317
312
timer = expires - datetime.datetime.utcnow()
318
313
message = ('A checker has failed! Time until client'
319
' gets disabled: {0}'
320
.format(unicode(timer).rsplit(".", 1)[0]))
315
% unicode(timer).rsplit(".", 1)[0])
322
317
message = "enabled"
323
self._text = "{0}{1}".format(base, message)
318
self._text = "%s%s" % (base, message)
325
320
if not urwid.supports_unicode():
326
321
self._text = self._text.encode("ascii", "replace")
491
486
self.main_loop = gobject.MainLoop()
493
488
def client_not_found(self, fingerprint, address):
494
self.log_message("Client with address {0} and fingerprint"
495
" {1} could not be found"
496
.format(address, fingerprint))
489
self.log_message(("Client with address %s and fingerprint %s"
490
" could not be found" % (address,
498
493
def rebuild(self):
499
494
"""This rebuilds the User Interface.