4
4
# Mandos Monitor - Control and monitor the Mandos server
 
6
 
# Copyright © 2009-2012 Teddy Hogeborn
 
7
 
# Copyright © 2009-2012 Björn Påhlsson
 
 
6
# Copyright © 2009-2013 Teddy Hogeborn
 
 
7
# Copyright © 2009-2013 Björn Påhlsson
 
9
9
# This program is free software: you can redistribute it and/or modify
 
10
10
# it under the terms of the GNU General Public License as published by
 
 
55
60
domain = 'se.recompile'
 
56
61
server_interface = domain + '.Mandos'
 
57
62
client_interface = domain + '.Mandos.Client'
 
60
 
# Always run in monochrome mode
 
61
 
urwid.curses_display.curses.has_colors = lambda : False
 
63
 
# Urwid doesn't support blinking, but we want it.  Since we have no
 
64
 
# use for underline on its own, we make underline also always blink.
 
65
 
urwid.curses_display.curses.A_UNDERLINE |= (
 
66
 
    urwid.curses_display.curses.A_BLINK)
 
68
65
def isoformat_to_datetime(iso):
 
69
66
    "Parse an ISO 8601 date string to a datetime.datetime()"
 
 
279
276
                message = "Approval in {0}. (d)eny?"
 
281
278
                message = "Denial in {0}. (a)pprove?"
 
282
 
            message = message.format(unicode(timer).rsplit(".", 1)[0])
 
 
279
            message = message.format(str(timer).rsplit(".", 1)[0])
 
283
280
            self.using_timer(True)
 
284
281
        elif self.properties["LastCheckerStatus"] != 0:
 
285
282
            # When checker has failed, show timer until client expires
 
 
382
379
    def property_changed(self, property=None, **kwargs):
 
383
380
        """Call self.update() if old value is not new value.
 
384
381
        This overrides the method from MandosClientPropertyCache"""
 
385
 
        property_name = unicode(property)
 
 
382
        property_name = str(property)
 
386
383
        old_value = self.properties.get(property_name)
 
387
384
        super(MandosClientWidget, self).property_changed(
 
388
385
            property=property, **kwargs)
 
 
416
413
                 "default", "default", None),
 
418
 
                 "default", "default", "bold"),
 
 
415
                 "bold", "default", "bold"),
 
419
416
                ("underline-blink",
 
420
 
                 "default", "default", "underline"),
 
 
417
                 "underline,blink", "default", "underline,blink"),
 
422
 
                 "default", "default", "standout"),
 
 
419
                 "standout", "default", "standout"),
 
423
420
                ("bold-underline-blink",
 
424
 
                 "default", "default", ("bold", "underline")),
 
 
421
                 "bold,underline,blink", "default", "bold,underline,blink"),
 
425
422
                ("bold-standout",
 
426
 
                 "default", "default", ("bold", "standout")),
 
 
423
                 "bold,standout", "default", "bold,standout"),
 
427
424
                ("underline-blink-standout",
 
428
 
                 "default", "default", ("underline", "standout")),
 
 
425
                 "underline,blink,standout", "default",
 
 
426
                 "underline,blink,standout"),
 
429
427
                ("bold-underline-blink-standout",
 
430
 
                 "default", "default", ("bold", "underline",
 
 
428
                 "bold,underline,blink,standout", "default",
 
 
429
                 "bold,underline,blink,standout"),
 
434
432
        if urwid.supports_unicode():
 
 
585
579
            mandos_clients = (self.mandos_serv
 
586
580
                              .GetAllClientsWithProperties())
 
 
581
            if not mandos_clients:
 
 
582
                self.log_message_raw(("bold", "Note: Server has no clients."))
 
587
583
        except dbus.exceptions.DBusException:
 
 
584
            self.log_message_raw(("bold", "Note: No Mandos server running."))
 
588
585
            mandos_clients = dbus.Dictionary()
 
590
587
        (self.mandos_serv
 
 
602
599
                            self.client_not_found,
 
603
600
                            dbus_interface=server_interface,
 
604
601
                            byte_arrays=True))
 
605
 
        for path, client in mandos_clients.iteritems():
 
 
602
        for path, client in mandos_clients.items():
 
606
603
            client_proxy_object = self.bus.get_object(self.busname,
 
608
605
            self.add_client(MandosClientWidget(server_proxy_object