38
38
                             dbus_interface = server_interface)
 
39
39
mandos_clients = mandos_serv.GetAllClientsWithProperties()
 
41
 
def timedelta_to_milliseconds(td):
 
42
 
    "Convert a datetime.timedelta object to milliseconds"
 
43
 
    return ((td.days * 24 * 60 * 60 * 1000)
 
45
 
            + (td.microseconds // 1000))
 
 
41
def datetime_to_milliseconds(dt):
 
 
42
    "Return the 'timeout' attribute in milliseconds"
 
 
43
    return ((dt.days * 24 * 60 * 60 * 1000)
 
 
45
            + (dt.microseconds // 1000))
 
47
47
def milliseconds_to_string(ms):
 
48
48
    td = datetime.timedelta(0, 0, 0, ms)
 
49
 
    return (u"%(days)s%(hours)02d:%(minutes)02d:%(seconds)02d"
 
50
 
            % { "days": "%dT" % td.days if td.days else "",
 
51
 
                "hours": td.seconds // 3600,
 
52
 
                "minutes": (td.seconds % 3600) // 60,
 
53
 
                "seconds": td.seconds % 60,
 
 
49
    return "%s%02d:%02d:%02d" % (("%dT" % td.days) if td.days else "", # days
 
 
50
                           td.seconds // 3600,        # hours
 
 
51
                           (td.seconds % 3600) // 60, # minutes
 
 
52
                           (td.seconds % 60))         # seconds
 
57
55
def string_to_delta(interval):
 
 
98
96
    def valuetostring(value, keyword):
 
99
97
        if type(value) is dbus.Boolean:
 
100
98
            return u"Yes" if value else u"No"
 
101
 
        if keyword in (u"timeout", u"interval"):
 
 
99
        if keyword in ("timeout", "interval"):
 
102
100
            return milliseconds_to_string(value)
 
103
101
        return unicode(value)
 
105
 
    # Create format string to print table rows
 
106
103
    format_string = u' '.join(u'%%-%ds' %
 
107
104
                              max(len(tablewords[key]),
 
108
105
                                  max(len(valuetostring(client[key], key))
 
111
108
                              for key in keywords)
 
113
109
    print format_string % tuple(tablewords[key] for key in keywords)
 
114
110
    for client in clients:
 
115
111
        print format_string % tuple(valuetostring(client[key], key)
 
 
150
146
    for path, client in mandos_clients.iteritems():
 
151
147
        if client['name'] == name:
 
152
148
            client_objc = bus.get_object(busname, path)
 
153
 
            clients.append(client_objc)
 
 
149
            clients.append(dbus.Interface(client_objc,
 
156
154
        print >> sys.stderr, "Client not found on server: %r" % name
 
 
169
167
    if options.remove:
 
170
168
        mandos_serv.RemoveClient(client.__dbus_object_path__)
 
171
169
    if options.enable:
 
172
 
        client.Enable(dbus_interface=client_interface)
 
173
171
    if options.disable:
 
174
 
        client.Disable(dbus_interface=client_interface)
 
175
173
    if options.bump_timeout:
 
176
 
        client.CheckedOK(dbus_interface=client_interface)
 
177
175
    if options.start_checker:
 
178
 
        client.StartChecker(dbus_interface=client_interface)
 
 
176
        client.StartChecker()
 
179
177
    if options.stop_checker:
 
180
 
        client.StopChecker(dbus_interface=client_interface)
 
181
179
    if options.is_valid:
 
182
 
        sys.exit(0 if client.Get(client_interface,
 
184
 
                                 dbus_interface=dbus.PROPERTIES_IFACE)
 
 
180
        sys.exit(0 if client.IsStillValid() else 1)
 
186
181
    if options.checker:
 
187
 
        client.Set(client_interface, u"checker", options.checker,
 
188
 
                   dbus_interface=dbus.PROPERTIES_IFACE)
 
 
182
        client.SetChecker(options.checker)
 
190
 
        client.Set(client_interface, u"host", options.host,
 
191
 
                   dbus_interface=dbus.PROPERTIES_IFACE)
 
 
184
        client.SetHost(options.host)
 
192
185
    if options.interval:
 
193
 
        client.Set(client_interface, u"interval",
 
194
 
                   timedelta_to_milliseconds
 
195
 
                   (string_to_delta(options.interval)),
 
196
 
                   dbus_interface=dbus.PROPERTIES_IFACE)
 
 
186
        client.SetInterval(datetime_to_milliseconds
 
 
187
                           (string_to_delta(options.interval)))
 
197
188
    if options.timeout:
 
198
 
        client.Set(client_interface, u"timeout",
 
199
 
                   timedelta_to_milliseconds(string_to_delta
 
201
 
                   dbus_interface=dbus.PROPERTIES_IFACE)
 
 
189
        client.SetTimeout(datetime_to_milliseconds
 
 
190
                          (string_to_delta(options.timeout)))
 
202
191
    if options.secret:
 
203
 
        client.Set(client_interface, u"secret",
 
204
 
                   dbus.ByteArray(open(options.secret, u'rb').read()),
 
205
 
                   dbus_interface=dbus.PROPERTIES_IFACE)
 
 
192
        client.SetSecret(dbus.ByteArray(open(options.secret, 'rb').read()))