oc_edit.py 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619
  1. #!/usr/bin/env python
  2. # ___ ___ _ _ ___ ___ _ _____ ___ ___
  3. # / __| __| \| | __| _ \ /_\_ _| __| \
  4. # | (_ | _|| .` | _|| / / _ \| | | _|| |) |
  5. # \___|___|_|\_|___|_|_\/_/_\_\_|_|___|___/_ _____
  6. # | \ / _ \ | \| |/ _ \_ _| | __| \_ _|_ _|
  7. # | |) | (_) | | .` | (_) || | | _|| |) | | | |
  8. # |___/ \___/ |_|\_|\___/ |_| |___|___/___| |_|
  9. '''
  10. OpenShiftCLI class that wraps the oc commands in a subprocess
  11. '''
  12. import atexit
  13. import json
  14. import os
  15. import shutil
  16. import subprocess
  17. import re
  18. import yaml
  19. # This is here because of a bug that causes yaml
  20. # to incorrectly handle timezone info on timestamps
  21. def timestamp_constructor(_, node):
  22. '''return timestamps as strings'''
  23. return str(node.value)
  24. yaml.add_constructor(u'tag:yaml.org,2002:timestamp', timestamp_constructor)
  25. # pylint: disable=too-few-public-methods
  26. class OpenShiftCLI(object):
  27. ''' Class to wrap the oc command line tools '''
  28. def __init__(self,
  29. namespace,
  30. kubeconfig='/etc/origin/master/admin.kubeconfig',
  31. verbose=False):
  32. ''' Constructor for OpenshiftOC '''
  33. self.namespace = namespace
  34. self.verbose = verbose
  35. self.kubeconfig = kubeconfig
  36. # Pylint allows only 5 arguments to be passed.
  37. # pylint: disable=too-many-arguments
  38. def _replace_content(self, resource, rname, content, force=False):
  39. ''' replace the current object with the content '''
  40. res = self._get(resource, rname)
  41. if not res['results']:
  42. return res
  43. fname = '/tmp/%s' % rname
  44. yed = Yedit(fname, res['results'][0])
  45. changes = []
  46. for key, value in content.items():
  47. changes.append(yed.put(key, value))
  48. if any([not change[0] for change in changes]):
  49. return {'returncode': 0, 'updated': False}
  50. yed.write()
  51. atexit.register(Utils.cleanup, [fname])
  52. return self._replace(fname, force)
  53. def _replace(self, fname, force=False):
  54. '''return all pods '''
  55. cmd = ['-n', self.namespace, 'replace', '-f', fname]
  56. if force:
  57. cmd.append('--force')
  58. return self.oc_cmd(cmd)
  59. def _create(self, fname):
  60. '''return all pods '''
  61. return self.oc_cmd(['create', '-f', fname, '-n', self.namespace])
  62. def _delete(self, resource, rname):
  63. '''return all pods '''
  64. return self.oc_cmd(['delete', resource, rname, '-n', self.namespace])
  65. def _get(self, resource, rname=None):
  66. '''return a secret by name '''
  67. cmd = ['get', resource, '-o', 'json', '-n', self.namespace]
  68. if rname:
  69. cmd.append(rname)
  70. rval = self.oc_cmd(cmd, output=True)
  71. # Ensure results are retuned in an array
  72. if rval.has_key('items'):
  73. rval['results'] = rval['items']
  74. elif not isinstance(rval['results'], list):
  75. rval['results'] = [rval['results']]
  76. return rval
  77. def oc_cmd(self, cmd, output=False):
  78. '''Base command for oc '''
  79. #cmds = ['/usr/bin/oc', '--config', self.kubeconfig]
  80. cmds = ['/usr/bin/oc']
  81. cmds.extend(cmd)
  82. rval = {}
  83. results = ''
  84. err = None
  85. if self.verbose:
  86. print ' '.join(cmds)
  87. proc = subprocess.Popen(cmds,
  88. stdout=subprocess.PIPE,
  89. stderr=subprocess.PIPE,
  90. env={'KUBECONFIG': self.kubeconfig})
  91. proc.wait()
  92. stdout = proc.stdout.read()
  93. stderr = proc.stderr.read()
  94. rval = {"returncode": proc.returncode,
  95. "results": results,
  96. }
  97. if proc.returncode == 0:
  98. if output:
  99. try:
  100. rval['results'] = json.loads(stdout)
  101. except ValueError as err:
  102. if "No JSON object could be decoded" in err.message:
  103. err = err.message
  104. if self.verbose:
  105. print stdout
  106. print stderr
  107. print
  108. if err:
  109. rval.update({"err": err,
  110. "stderr": stderr,
  111. "stdout": stdout,
  112. "cmd": cmds
  113. })
  114. else:
  115. rval.update({"stderr": stderr,
  116. "stdout": stdout,
  117. "results": {},
  118. })
  119. return rval
  120. class Utils(object):
  121. ''' utilities for openshiftcli modules '''
  122. @staticmethod
  123. def create_file(rname, data, ftype=None):
  124. ''' create a file in tmp with name and contents'''
  125. path = os.path.join('/tmp', rname)
  126. with open(path, 'w') as fds:
  127. if ftype == 'yaml':
  128. fds.write(yaml.safe_dump(data, default_flow_style=False))
  129. elif ftype == 'json':
  130. fds.write(json.dumps(data))
  131. else:
  132. fds.write(data)
  133. # Register cleanup when module is done
  134. atexit.register(Utils.cleanup, [path])
  135. return path
  136. @staticmethod
  137. def create_files_from_contents(data):
  138. '''Turn an array of dict: filename, content into a files array'''
  139. files = []
  140. for sfile in data:
  141. path = Utils.create_file(sfile['path'], sfile['content'])
  142. files.append(path)
  143. return files
  144. @staticmethod
  145. def cleanup(files):
  146. '''Clean up on exit '''
  147. for sfile in files:
  148. if os.path.exists(sfile):
  149. if os.path.isdir(sfile):
  150. shutil.rmtree(sfile)
  151. elif os.path.isfile(sfile):
  152. os.remove(sfile)
  153. @staticmethod
  154. def exists(results, _name):
  155. ''' Check to see if the results include the name '''
  156. if not results:
  157. return False
  158. if Utils.find_result(results, _name):
  159. return True
  160. return False
  161. @staticmethod
  162. def find_result(results, _name):
  163. ''' Find the specified result by name'''
  164. rval = None
  165. for result in results:
  166. if result.has_key('metadata') and result['metadata']['name'] == _name:
  167. rval = result
  168. break
  169. return rval
  170. @staticmethod
  171. def get_resource_file(sfile, sfile_type='yaml'):
  172. ''' return the service file '''
  173. contents = None
  174. with open(sfile) as sfd:
  175. contents = sfd.read()
  176. if sfile_type == 'yaml':
  177. contents = yaml.safe_load(contents)
  178. elif sfile_type == 'json':
  179. contents = json.loads(contents)
  180. return contents
  181. # Disabling too-many-branches. This is a yaml dictionary comparison function
  182. # pylint: disable=too-many-branches,too-many-return-statements
  183. @staticmethod
  184. def check_def_equal(user_def, result_def, debug=False):
  185. ''' Given a user defined definition, compare it with the results given back by our query. '''
  186. # Currently these values are autogenerated and we do not need to check them
  187. skip = ['metadata', 'status']
  188. for key, value in result_def.items():
  189. if key in skip:
  190. continue
  191. # Both are lists
  192. if isinstance(value, list):
  193. if not isinstance(user_def[key], list):
  194. return False
  195. # lists should be identical
  196. if value != user_def[key]:
  197. return False
  198. # recurse on a dictionary
  199. elif isinstance(value, dict):
  200. if not isinstance(user_def[key], dict):
  201. if debug:
  202. print "dict returned false not instance of dict"
  203. return False
  204. # before passing ensure keys match
  205. api_values = set(value.keys()) - set(skip)
  206. user_values = set(user_def[key].keys()) - set(skip)
  207. if api_values != user_values:
  208. if debug:
  209. print api_values
  210. print user_values
  211. print "keys are not equal in dict"
  212. return False
  213. result = Utils.check_def_equal(user_def[key], value, debug=debug)
  214. if not result:
  215. if debug:
  216. print "dict returned false"
  217. return False
  218. # Verify each key, value pair is the same
  219. else:
  220. if not user_def.has_key(key) or value != user_def[key]:
  221. if debug:
  222. print "value not equal; user_def does not have key"
  223. print value
  224. print user_def[key]
  225. return False
  226. return True
  227. class YeditException(Exception):
  228. ''' Exception class for Yedit '''
  229. pass
  230. class Yedit(object):
  231. ''' Class to modify yaml files '''
  232. re_valid_key = r"(((\[-?\d+\])|([a-zA-Z-./]+)).?)+$"
  233. re_key = r"(?:\[(-?\d+)\])|([a-zA-Z-./]+)"
  234. def __init__(self, filename=None, content=None, content_type='yaml'):
  235. self.content = content
  236. self.filename = filename
  237. self.__yaml_dict = content
  238. self.content_type = content_type
  239. if self.filename and not self.content:
  240. self.load(content_type=self.content_type)
  241. @property
  242. def yaml_dict(self):
  243. ''' getter method for yaml_dict '''
  244. return self.__yaml_dict
  245. @yaml_dict.setter
  246. def yaml_dict(self, value):
  247. ''' setter method for yaml_dict '''
  248. self.__yaml_dict = value
  249. @staticmethod
  250. def remove_entry(data, key):
  251. ''' remove data at location key '''
  252. if not (key and re.match(Yedit.re_valid_key, key) and isinstance(data, (list, dict))):
  253. return None
  254. key_indexes = re.findall(Yedit.re_key, key)
  255. for arr_ind, dict_key in key_indexes[:-1]:
  256. if dict_key and isinstance(data, dict):
  257. data = data.get(dict_key, None)
  258. elif arr_ind and isinstance(data, list) and int(arr_ind) <= len(data) - 1:
  259. data = data[int(arr_ind)]
  260. else:
  261. return None
  262. # process last index for remove
  263. # expected list entry
  264. if key_indexes[-1][0]:
  265. if isinstance(data, list) and int(key_indexes[-1][0]) <= len(data) - 1:
  266. del data[int(key_indexes[-1][0])]
  267. return True
  268. # expected dict entry
  269. elif key_indexes[-1][1]:
  270. if isinstance(data, dict):
  271. del data[key_indexes[-1][1]]
  272. return True
  273. @staticmethod
  274. def add_entry(data, key, item=None):
  275. ''' Get an item from a dictionary with key notation a.b.c
  276. d = {'a': {'b': 'c'}}}
  277. key = a.b
  278. return c
  279. '''
  280. if not (key and re.match(Yedit.re_valid_key, key) and isinstance(data, (list, dict))):
  281. return None
  282. curr_data = data
  283. key_indexes = re.findall(Yedit.re_key, key)
  284. for arr_ind, dict_key in key_indexes[:-1]:
  285. if dict_key:
  286. if isinstance(data, dict) and data.has_key(dict_key):
  287. data = data[dict_key]
  288. continue
  289. data[dict_key] = {}
  290. data = data[dict_key]
  291. elif arr_ind and isinstance(data, list) and int(arr_ind) <= len(data) - 1:
  292. data = data[int(arr_ind)]
  293. else:
  294. return None
  295. # process last index for add
  296. # expected list entry
  297. if key_indexes[-1][0] and isinstance(data, list) and int(key_indexes[-1][0]) <= len(data) - 1:
  298. data[int(key_indexes[-1][0])] = item
  299. # expected dict entry
  300. elif key_indexes[-1][1] and isinstance(data, dict):
  301. data[key_indexes[-1][1]] = item
  302. return curr_data
  303. @staticmethod
  304. def get_entry(data, key):
  305. ''' Get an item from a dictionary with key notation a.b.c
  306. d = {'a': {'b': 'c'}}}
  307. key = a.b
  308. return c
  309. '''
  310. if not (key and re.match(Yedit.re_valid_key, key) and isinstance(data, (list, dict))):
  311. return None
  312. key_indexes = re.findall(Yedit.re_key, key)
  313. for arr_ind, dict_key in key_indexes:
  314. if dict_key and isinstance(data, dict):
  315. data = data.get(dict_key, None)
  316. elif arr_ind and isinstance(data, list) and int(arr_ind) <= len(data) - 1:
  317. data = data[int(arr_ind)]
  318. else:
  319. return None
  320. return data
  321. def write(self):
  322. ''' write to file '''
  323. if not self.filename:
  324. raise YeditException('Please specify a filename.')
  325. with open(self.filename, 'w') as yfd:
  326. yfd.write(yaml.safe_dump(self.yaml_dict, default_flow_style=False))
  327. def read(self):
  328. ''' write to file '''
  329. # check if it exists
  330. if not self.exists():
  331. return None
  332. contents = None
  333. with open(self.filename) as yfd:
  334. contents = yfd.read()
  335. return contents
  336. def exists(self):
  337. ''' return whether file exists '''
  338. if os.path.exists(self.filename):
  339. return True
  340. return False
  341. def load(self, content_type='yaml'):
  342. ''' return yaml file '''
  343. contents = self.read()
  344. if not contents:
  345. return None
  346. # check if it is yaml
  347. try:
  348. if content_type == 'yaml':
  349. self.yaml_dict = yaml.load(contents)
  350. elif content_type == 'json':
  351. self.yaml_dict = json.loads(contents)
  352. except yaml.YAMLError as _:
  353. # Error loading yaml or json
  354. return None
  355. return self.yaml_dict
  356. def get(self, key):
  357. ''' get a specified key'''
  358. try:
  359. entry = Yedit.get_entry(self.yaml_dict, key)
  360. except KeyError as _:
  361. entry = None
  362. return entry
  363. def delete(self, key):
  364. ''' remove key from a dict'''
  365. try:
  366. entry = Yedit.get_entry(self.yaml_dict, key)
  367. except KeyError as _:
  368. entry = None
  369. if not entry:
  370. return (False, self.yaml_dict)
  371. result = Yedit.remove_entry(self.yaml_dict, key)
  372. if not result:
  373. return (False, self.yaml_dict)
  374. return (True, self.yaml_dict)
  375. def put(self, key, value):
  376. ''' put key, value into a dict '''
  377. try:
  378. entry = Yedit.get_entry(self.yaml_dict, key)
  379. except KeyError as _:
  380. entry = None
  381. if entry == value:
  382. return (False, self.yaml_dict)
  383. result = Yedit.add_entry(self.yaml_dict, key, value)
  384. if not result:
  385. return (False, self.yaml_dict)
  386. return (True, self.yaml_dict)
  387. def create(self, key, value):
  388. ''' create a yaml file '''
  389. if not self.exists():
  390. self.yaml_dict = {key: value}
  391. return (True, self.yaml_dict)
  392. return (False, self.yaml_dict)
  393. class Edit(OpenShiftCLI):
  394. ''' Class to wrap the oc command line tools
  395. '''
  396. # pylint: disable=too-many-arguments
  397. def __init__(self,
  398. kind,
  399. namespace,
  400. resource_name=None,
  401. kubeconfig='/etc/origin/master/admin.kubeconfig',
  402. verbose=False):
  403. ''' Constructor for OpenshiftOC '''
  404. super(Edit, self).__init__(namespace, kubeconfig)
  405. self.namespace = namespace
  406. self.kind = kind
  407. self.name = resource_name
  408. self.kubeconfig = kubeconfig
  409. self.verbose = verbose
  410. def get(self):
  411. '''return a secret by name '''
  412. return self._get(self.kind, self.name)
  413. def update(self, file_name, content, force=False, content_type='yaml'):
  414. '''run update '''
  415. if file_name:
  416. if content_type == 'yaml':
  417. data = yaml.load(open(file_name))
  418. elif content_type == 'json':
  419. data = json.loads(open(file_name).read())
  420. changes = []
  421. yed = Yedit(file_name, data)
  422. for key, value in content.items():
  423. changes.append(yed.put(key, value))
  424. if any([not change[0] for change in changes]):
  425. return {'returncode': 0, 'updated': False}
  426. yed.write()
  427. atexit.register(Utils.cleanup, [file_name])
  428. return self._replace(file_name, force=force)
  429. return self._replace_content(self.kind, self.name, content, force=force)
  430. def main():
  431. '''
  432. ansible oc module for services
  433. '''
  434. module = AnsibleModule(
  435. argument_spec=dict(
  436. kubeconfig=dict(default='/etc/origin/master/admin.kubeconfig', type='str'),
  437. state=dict(default='present', type='str',
  438. choices=['present']),
  439. debug=dict(default=False, type='bool'),
  440. namespace=dict(default='default', type='str'),
  441. name=dict(default=None, required=True, type='str'),
  442. kind=dict(required=True,
  443. type='str',
  444. choices=['dc', 'deploymentconfig',
  445. 'svc', 'service',
  446. 'scc', 'securitycontextconstraints',
  447. 'ns', 'namespace', 'project', 'projects',
  448. 'is', 'imagestream',
  449. 'istag', 'imagestreamtag',
  450. 'bc', 'buildconfig',
  451. 'routes',
  452. 'node',
  453. 'secret',
  454. ]),
  455. file_name=dict(default=None, type='str'),
  456. file_format=dict(default='yaml', type='str'),
  457. content=dict(default=None, required=True, type='dict'),
  458. force=dict(default=False, type='bool'),
  459. ),
  460. supports_check_mode=True,
  461. )
  462. ocedit = Edit(module.params['kind'],
  463. module.params['namespace'],
  464. module.params['name'],
  465. kubeconfig=module.params['kubeconfig'],
  466. verbose=module.params['debug'])
  467. state = module.params['state']
  468. api_rval = ocedit.get()
  469. ########
  470. # Create
  471. ########
  472. if not Utils.exists(api_rval['results'], module.params['name']):
  473. module.fail_json(msg=api_rval)
  474. ########
  475. # Update
  476. ########
  477. api_rval = ocedit.update(module.params['file_name'],
  478. module.params['content'],
  479. module.params['force'],
  480. module.params['file_format'])
  481. if api_rval['returncode'] != 0:
  482. module.fail_json(msg=api_rval)
  483. if api_rval.has_key('updated') and not api_rval['updated']:
  484. module.exit_json(changed=False, results=api_rval, state="present")
  485. # return the created object
  486. api_rval = ocedit.get()
  487. if api_rval['returncode'] != 0:
  488. module.fail_json(msg=api_rval)
  489. module.exit_json(changed=True, results=api_rval, state="present")
  490. module.exit_json(failed=True,
  491. changed=False,
  492. results='Unknown state passed. %s' % state,
  493. state="unknown")
  494. # pylint: disable=redefined-builtin, unused-wildcard-import, wildcard-import, locally-disabled
  495. # import module snippets. This are required
  496. from ansible.module_utils.basic import *
  497. main()