forked from productsupcom/ansible-dyninv-mysql
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathinventoryctl.py
executable file
·552 lines (465 loc) · 21.6 KB
/
inventoryctl.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
#!/usr/bin/env python
"""
Created on 19/10/2017
@author: askdaddy
"""
import argparse
import ast
import configparser
import os
import pprint
import sys
from distutils.util import strtobool
import pymysql
try:
import json
from json import JSONDecodeError
except ImportError:
import simplejson as json
from simplejson import JSONDecodeError
VAR_DEL_MARK = 'nil'
class InventoryCtl(object):
def __init__(self):
self.myconfig = None
self.facts_hostname_var = None
self.conn = None
self.cursor = None
self.args = []
self.read_settings()
self.parse_cli_args()
# pprint.pprint(self.args)
self.run_command()
def read_settings(self):
""" Reads the settings from the mysql.ini file """
config = configparser.ConfigParser()
config.read(os.path.dirname(os.path.realpath(__file__)) + '/mysql.ini')
self.myconfig = dict(config.items('server'))
if 'port' in self.myconfig:
self.myconfig['port'] = config.getint('server', 'port')
self.facts_hostname_var = config.get('config', 'facts_hostname_var')
def parse_cli_args(self):
""" Command line argument processing """
parser = argparse.ArgumentParser(
description='Query or send control commands to the Ansible Dynamic Inventory based on MySQL'
)
# Sub commands
subparsers = parser.add_subparsers(dest='cmd')
# Groups
parser_group = subparsers.add_parser('group', help='Create or Update a Group')
parser_group.add_argument('-U', '--update', action='store_true',
help='Enable Update mode. In this mode, the existing Group will be updated')
parser_group.add_argument('-n', '--name', required=True,
help='Name of the Group')
parser_group.add_argument('-p', '--parent',
help='Name of parent Group')
parser_group.add_argument('-e', '--enabled', type=int, choices=[0, 1],
help='Whether to enable this Group')
parser_group.add_argument('-v', '--variable', action='append', nargs=2, metavar=('key', 'val'),
help='Add multiple Variables to an entire Group \
If val is `%s`, the variable will be removed.' % VAR_DEL_MARK)
# Hosts
parser_host = subparsers.add_parser('host', help='Add , Update or Delete a host')
parser_host.add_argument('-U', '--update', action='store_true',
help='Enable Update mode. In this mode, the existing Host will be updated')
parser_host.add_argument('-n', '--name',
help='Hostname of the host')
parser_host.add_argument('-H', '--host', required=True,
help='IP address or Domain of the Host')
parser_host.add_argument('-g', '--group', default=None,
help='The name of the group to join. \
If not set, the Host will NOT join any group')
parser_host.add_argument('-e', '--enabled', type=int, choices=[0, 1],
help='Whether to enable this Host')
parser_host.add_argument('-v', '--variable', action='append', nargs=2, metavar=('key', 'val'),
help='Add/Edit multiple Variables to an entire Host, \
e.g. ssh_user, ssh_password, ssh_key. \
If val is `%s`, the variable will be removed.' % VAR_DEL_MARK)
parser_host.add_argument('-d', '--delete', action='store_true',
help='Delete host')
# List Hosts && Groups
parser_list = subparsers.add_parser('ls',
help='List the Hosts or groups information')
parser_list.add_argument('-g', '--group', action='store_true',
help='Whether to show Groups or not')
exclusion_group = parser_list.add_mutually_exclusive_group()
exclusion_group.add_argument('-a', '--all', action='store_true',
help='List all, including disabled')
exclusion_group.add_argument('-m', '--match',
help='list only matches a part of the \
`host` or `hostname` of host and `name` of group')
if len(sys.argv[1:]) == 0:
parser.print_help()
parser.exit()
self.args = parser.parse_args()
def run_command(self):
self._connect()
print('[Command]: %s' % self.args.cmd)
if self.args.cmd == 'host':
self._cmd_host()
elif self.args.cmd == 'group':
self._cmd_group()
elif self.args.cmd == 'ls':
self._cmd_ls()
else:
print('Invalid instruction.')
self._disconnect()
def _cmd_host(self):
hostdata, groupdata = self._host_fetch()
if hostdata is None:
# Add new host
self._host_add(groupdata)
else:
# Delete host
if 'delete' in self.args and self.args.delete is True:
if self._prompt("Are you sure you want to delete the host: %s[%s] ?! \
\nAfter deleting the data will not be restored!! " % (
hostdata['host'], hostdata['hostname'])):
self._host_delete(hostdata)
else:
print('User canceled the operation.')
return
# Update host
self._host_update(hostdata, groupdata)
def _cmd_group(self):
gname = self.args.name
parent_group = self.args.parent
groups = self._group_fetch()
if parent_group is not None and parent_group not in groups:
# parent does not exist
raise Exception('The specified group[%s] does not exist' % parent_group)
if gname not in groups:
# Add a new group with its parent
self._group_add(gname, groups)
elif gname in groups:
groupdata = groups[gname]
# Delete host
if 'delete' in self.args and self.args.delete is True:
if self._prompt("Are you sure you want to delete the group: %s ?! \
\nAfter deleting the data will not be restored!! " % gname):
self._group_delete(groupdata)
else:
print('User canceled the operation.')
return
# group already exists
# Update group
self._group_update(gname, groups)
def _cmd_ls(self):
# Default list all hosts and their groups info
if self.args.group:
self._list_groups()
else:
self._list_hosts()
@property
def __enabled(self):
if self.args.enabled is None:
return 1
return self.args.enabled
@property
def __hostname(self):
if self.args.name is not None:
return self.args.name
return self.args.host
def _host_fetch(self):
host = self.args.host
group = self.args.group
groupdata = None
# if set group name [-g/--group]
# convert group name to group id
if group is not None:
sql = "SELECT * FROM `group` WHERE `group`.`name` = '%s'"
self.__cursor.execute(sql % group)
groupdata = self.__cursor.fetchone()
if groupdata is None:
print('Group %s does NOT exist!' % self.args.group)
else:
print('Assign to group: %s [id=%d]' % (groupdata['name'], groupdata['id']))
# fetch host data
sql = """SELECT `host`.`id`,`host`.`host`,`host`.`hostname`,`host`.`enabled`,`host`.`variables`,
`group`.`id` as `group_id`,`group`.`name` as `group_name`,`group`.`enabled` as `group_enabled`, `group`.`variables` as `group_variables`
FROM (`host` LEFT JOIN `hostgroups` ON `host`.`id` = `hostgroups`.`host_id`
LEFT JOIN `group` ON `hostgroups`.`group_id`=`group`.`id`)
WHERE `host`.`host` = '%s';"""
self.__cursor.execute(sql % host)
hostdata = self.__cursor.fetchone()
return hostdata, groupdata
def _host_add(self, group):
affected_rows = 0
print('Create mode')
# combination variables
variables = None
if self.args.variable is not None:
variables = json.dumps({item[0]: item[1] for item in self.args.variable})
print('Add host: %s %s %s %d' % (self.args.host, self.__hostname, variables, self.__enabled))
sql = """INSERT INTO `host`
(`host`, `hostname`, `variables`, `enabled`) VALUES
('%s', '%s', '%s', %d);"""
affected_rows += self.__cursor.execute(sql % (self.args.host, self.__hostname, variables, self.__enabled))
if group is not None:
# Add group
lastrowid = self.__cursor.lastrowid
sql = """INSERT INTO `hostgroups`
(`host_id`, `group_id`) VALUES
(%d, %d);"""
affected_rows += self.__cursor.execute(sql % (lastrowid, group['id']))
self.conn.commit()
print('Affected rows: %d' % affected_rows)
def _host_delete(self, host):
print("Remove host from groups")
rows = self.__cursor.execute("""DELETE FROM `hostgroups` WHERE `hostgroups`.`host_id` = %d;""" % host['id'])
print('Affected rows: %d' % rows)
print('Delete host: id = %d' % id)
rows = self.__cursor.execute("""DELETE FROM `host` WHERE `host`.`id` = %d;""" % host['id'])
print('Affected rows: %d' % rows)
self.conn.commit()
def _host_update(self, host, group):
if self.args.update:
print('Update mode')
affected_rows = 0
if group is not None:
# sql = """UPDATE `hostgroups` SET `group_id` = %d WHERE `host_id` = %d;"""
sql = """REPLACE into `hostgroups` (`host_id`,`group_id`) values(%d,%d)"""
affected_rows += self.__cursor.execute(sql % (host['id'], group['id']))
print('set group to %s' % group['name'])
# update hostname
if self.args.name is not None:
# TODO Verify the name is valid
sql = """UPDATE `host` SET `hostname` = '%s' WHERE `host`.`id` = %d;"""
affected_rows += self.__cursor.execute(sql % (self.args.name, host['id']))
print('set hostname to %s' % self.args.name)
# modify variables
if self.args.variable is not None:
try:
if ast.literal_eval(host['variables']) is not None:
variables = json.loads(host['variables'])
for var in self.args.variable:
variables[var[0]] = var[1]
else:
variables = {item[0]: item[1] for item in self.args.variable}
for _k, _v in variables.copy().items():
if _v == VAR_DEL_MARK:
variables.pop(_k, None)
var_json = json.dumps(variables)
sql = """UPDATE `host` SET `variables` = '%s' WHERE `host`.`id` = %d;"""
affected_rows += self.__cursor.execute(sql % (var_json, host['id']))
print('set variables to %s' % var_json)
except JSONDecodeError as e:
print(e)
raise Exception('Host does not have valid JSON', host['host'], host['variables'])
# change enable state
if host['enabled'] != self.__enabled:
sql = """UPDATE `host` SET `enabled` = %d WHERE `host`.`id` = %d;"""
affected_rows += self.__cursor.execute(sql % (self.__enabled, host['id']))
print('set enabled to %d' % self.__enabled)
# commit to db
print('Update %s affected rows: %d' % (host['host'], affected_rows))
self.conn.commit()
else:
# only show the host data
host['group'] = group
pprint.pprint(host)
print(' ----- ')
print('If you want to UPDATE this host, plz attach -U/--update argument')
def _group_fetch(self):
# a list store all the names to query
group_names = [self.args.name]
if self.args.parent is not None:
group_names.append(self.args.parent)
# fetch group info with name
sql = """SELECT `child`.`name`,`child`.`id`,`child`.`variables`,`child`.`enabled`,
`parent`.`name`,`parent`.`id` as `parent_id`, `parent`.`variables` as `parent_variables`,
`parent`.`enabled` as `parent_enabled`
FROM `group` `child`
LEFT JOIN `childgroups` ON `child`.`id` = `childgroups`.`child_id`
LEFT JOIN `group` `parent` ON `childgroups`.`parent_id` = `parent`.`id`
WHERE `child`.`name` IN (%s);"""
self.__cursor.execute(sql % ("'" + "','".join(map(str, group_names)) + "'"))
groups = self.__cursor.fetchall()
return {i['name']: i for i in groups}
def _group_add(self, gname, groups):
affected_rows = 0
# add a new group
print('Create mode')
# combination variables
variables = None
if self.args.variable is not None:
variables = json.dumps({item[0]: item[1] for item in self.args.variable})
sql = """INSERT INTO `group` (`name`, `variables`, `enabled`)
VALUES ('%s', '%s', %d);"""
affected_rows += self.__cursor.execute(sql % (gname, variables, self.__enabled))
lastrowid = self.__cursor.lastrowid
if self.args.parent is not None:
# the new group has a parent
sql = """INSERT INTO `childgroups` (`child_id`,`parent_id`) VALUES
(%d,%d);"""
affected_rows += self.__cursor.execute(sql % (lastrowid, groups[self.args.parent]['id']))
self.conn.commit()
print('Affected rows: %d' % affected_rows)
print('Add group id: %d' % lastrowid)
def _group_delete(self, group):
print('Break the relationship between groups')
s = """DELETE FROM `childgroups` WHERE `child_id` = %d OR `parent_id` = %d;"""
rows = self.__cursor.execute(s % (group['id'], group['id']))
print('Affected rows: %d' % rows)
print('Delete group named `%s` with variables %s' % (group['name'], group['variables']))
s = """DELETE FROM `group` WHERE `id` = %d;"""
rows = self.__cursor.execute(s % group['id'])
print('Affected rows: %d' % rows)
self.conn.commit()
def _group_update(self, gname, groups):
affected_rows = 0
group = groups[gname]
parent = None
if self.args.parent in groups:
parent = group[self.args.parent]
if self.args.update:
print('Update mode')
if group['enabled'] != self.__enabled:
# modify enabled
sql = """UPDATE `group` SET `enabled` = %d WHERE `id` = %d;"""
affected_rows += self.__cursor.execute(sql % (self.args.enabled, group['id']))
# modify variables
if self.args.variable is not None:
try:
if ast.literal_eval(group['variables']) is not None:
variables = json.loads(group['variables'])
for var in self.args.variable:
variables[var[0]] = var[1]
else:
variables = {item[0]: item[1] for item in self.args.variable}
for _k, _v in variables.copy().items():
if _v == VAR_DEL_MARK:
variables.pop(_k, None)
var_json = json.dumps(variables)
sql = """UPDATE `group` SET `variables` = '%s' WHERE `group`.`id` = %d;"""
affected_rows += self.__cursor.execute(sql % (var_json, group['id']))
print('set variables to %s' % var_json)
except JSONDecodeError as e:
print(e)
raise Exception('Group does not have valid JSON', group['name'], group['variables'])
# modify parent group
if parent is not None:
sql = """UPDATE `childgroups` SET `parent_id` = %d WHERE `child_id` = %d;"""
affected_rows += self.__cursor.execute(sql % (group['id'], parent['id']))
self.conn.commit()
else:
print('View mode')
pprint.pprint(groups[g['name']])
print(' ----- ')
print('If you want to UPDATE this group, plz attach -U/--update argument')
def _list_hosts(self):
sql = """SELECT `host`.`host`,`host`.`hostname`,`host`.`variables` AS `vars`, `host`.`enabled`,
`group`.`name` AS `group`,`group`.`variables` AS `group_vars`
FROM `host`
LEFT JOIN `hostgroups` ON `host`.id = `hostgroups`.`host_id`
LEFT JOIN `group` ON `hostgroups`.`group_id` = `group`.`id`
{}
ORDER BY `host`.`host`;"""
# default
where = "WHERE `host`.`enabled` = 1"
if self.args.all:
where = ''
if self.args.match is not None:
m = self.args.match
where = "WHERE `host`.`host` LIKE '%%%s%%' OR `host`.`hostname` LIKE '%%%s%%'" % (m, m)
sql = sql.format(where)
self.__cursor.execute(sql)
hosts = self.__cursor.fetchall()
# reformat
reformated = dict()
for host in hosts:
h_vars = None
g_vars = None
try:
if host['vars'] is not None:
h_vars = json.loads(host['vars'])
if host['group_vars'] is not None:
g_vars = json.loads(host['group_vars'])
except JSONDecodeError:
pass
reformated[host['host']] = {
'hostname': host['hostname'],
'vars': h_vars,
'group': host['group'],
'group_vars': g_vars}
if 'enabled' in host:
reformated[host['host']]['state'] = 'enable' if host['enabled'] == 1 else 'disable'
pprint.pprint(reformated)
def _list_groups(self):
sql = """SELECT `gc`.`name` as `child`,`gc`.`variables` as `c_vars`,
`gp`.`name` as `parent` ,`gp`.`variables` as `p_vars`
FROM `group` `gc`
LEFT JOIN `childgroups` ON `gc`.`id` = `childgroups`.`child_id`
LEFT JOIN `group` `gp` ON `childgroups`.`parent_id` = `gp`.`id`
{}
ORDER BY `parent`
"""
# default
where = "WHERE `gc`.`enabled` = 1 "
if self.args.all:
where = ''
if self.args.match is not None:
m = self.args.match
where = "WHERE `gc`.`name` LIKE '%%%s%%' OR `gp`.`name` LIKE '%%%s%%' " % (m, m)
self.__cursor.execute(sql.format(where))
groupsdata = self.__cursor.fetchall()
groups = [[{'name': g['child'], 'vars': self._loads_json(g['c_vars'])},
{'name': g['parent'], 'vars': self._loads_json(g['p_vars'])} if g['parent'] is not None else None]
for g in groupsdata]
pprint.pprint(self._construct_group_trees(groups))
@staticmethod
def _construct_group_trees(groups):
trees = dict()
for child, parent in groups:
if parent is not None:
parent_k = parent['name']
if parent_k not in trees:
trees[parent_k] = parent
if 'children' not in trees[parent_k]:
trees[parent_k]['children'] = list()
trees[parent_k]['children'].append(child)
else:
child_k = child['name']
if child_k not in trees:
trees[child_k] = child
# pprint.pprint(trees)
return trees
# Find roots
# children, parents = map(list, zip(*groups))
# pprint.pprint(trees.keys())
# pprint.pprint(children)
# pprint.pprint(parents)
#
# roots = [children[k] for k, v in enumerate(parents) if v['name'] in trees.keys()]
# pprint.pprint(roots)
#
# return {root['name']: trees[root['name']] for root in roots}
def _connect(self):
if not self.conn:
self.conn = pymysql.connect(**self.myconfig)
def _disconnect(self):
if self.conn:
self.conn.close()
def _prompt(self, query):
sys.stdout.write('''%s [y/n]: ''' % query)
val = input()
try:
ret = strtobool(val)
except ValueError:
sys.stdout.write('Please answer with a y/n\n')
return self._prompt(query)
return ret
@property
def __cursor(self):
if self.cursor is None:
self.cursor = self.conn.cursor(pymysql.cursors.DictCursor)
return self.cursor
@staticmethod
def _loads_json(json_str):
ret = None
if json_str is not None:
try:
ret = json.loads(json_str)
except JSONDecodeError as e:
pass
return ret
InventoryCtl()