yedit.py 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974
  1. #!/usr/bin/env python
  2. # pylint: disable=missing-docstring
  3. # ___ ___ _ _ ___ ___ _ _____ ___ ___
  4. # / __| __| \| | __| _ \ /_\_ _| __| \
  5. # | (_ | _|| .` | _|| / / _ \| | | _|| |) |
  6. # \___|___|_|\_|___|_|_\/_/_\_\_|_|___|___/_ _____
  7. # | \ / _ \ | \| |/ _ \_ _| | __| \_ _|_ _|
  8. # | |) | (_) | | .` | (_) || | | _|| |) | | | |
  9. # |___/ \___/ |_|\_|\___/ |_| |___|___/___| |_|
  10. #
  11. # Copyright 2016 Red Hat, Inc. and/or its affiliates
  12. # and other contributors as indicated by the @author tags.
  13. #
  14. # Licensed under the Apache License, Version 2.0 (the "License");
  15. # you may not use this file except in compliance with the License.
  16. # You may obtain a copy of the License at
  17. #
  18. # http://www.apache.org/licenses/LICENSE-2.0
  19. #
  20. # Unless required by applicable law or agreed to in writing, software
  21. # distributed under the License is distributed on an "AS IS" BASIS,
  22. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  23. # See the License for the specific language governing permissions and
  24. # limitations under the License.
  25. #
  26. # -*- -*- -*- Begin included fragment: lib/import.py -*- -*- -*-
  27. # pylint: disable=wrong-import-order,wrong-import-position,unused-import
  28. from __future__ import print_function # noqa: F401
  29. import copy # noqa: F401
  30. import fcntl # noqa: F401
  31. import json # noqa: F401
  32. import os # noqa: F401
  33. import re # noqa: F401
  34. import shutil # noqa: F401
  35. import tempfile # noqa: F401
  36. import time # noqa: F401
  37. try:
  38. import ruamel.yaml as yaml # noqa: F401
  39. except ImportError:
  40. import yaml # noqa: F401
  41. from ansible.module_utils.basic import AnsibleModule
  42. # -*- -*- -*- End included fragment: lib/import.py -*- -*- -*-
  43. # -*- -*- -*- Begin included fragment: doc/yedit -*- -*- -*-
  44. DOCUMENTATION = '''
  45. ---
  46. module: yedit
  47. short_description: Create, modify, and idempotently manage yaml files.
  48. description:
  49. - Modify yaml files programmatically.
  50. options:
  51. state:
  52. description:
  53. - State represents whether to create, modify, delete, or list yaml
  54. required: true
  55. default: present
  56. choices: ["present", "absent", "list"]
  57. aliases: []
  58. debug:
  59. description:
  60. - Turn on debug information.
  61. required: false
  62. default: false
  63. aliases: []
  64. src:
  65. description:
  66. - The file that is the target of the modifications.
  67. required: false
  68. default: None
  69. aliases: []
  70. content:
  71. description:
  72. - Content represents the yaml content you desire to work with. This
  73. - could be the file contents to write or the inmemory data to modify.
  74. required: false
  75. default: None
  76. aliases: []
  77. content_type:
  78. description:
  79. - The python type of the content parameter.
  80. required: false
  81. default: 'dict'
  82. aliases: []
  83. key:
  84. description:
  85. - The path to the value you wish to modify. Emtpy string means the top of
  86. - the document.
  87. required: false
  88. default: ''
  89. aliases: []
  90. value:
  91. description:
  92. - The incoming value of parameter 'key'.
  93. required: false
  94. default:
  95. aliases: []
  96. value_type:
  97. description:
  98. - The python type of the incoming value.
  99. required: false
  100. default: ''
  101. aliases: []
  102. update:
  103. description:
  104. - Whether the update should be performed on a dict/hash or list/array
  105. - object.
  106. required: false
  107. default: false
  108. aliases: []
  109. append:
  110. description:
  111. - Whether to append to an array/list. When the key does not exist or is
  112. - null, a new array is created. When the key is of a non-list type,
  113. - nothing is done.
  114. required: false
  115. default: false
  116. aliases: []
  117. index:
  118. description:
  119. - Used in conjunction with the update parameter. This will update a
  120. - specific index in an array/list.
  121. required: false
  122. default: false
  123. aliases: []
  124. curr_value:
  125. description:
  126. - Used in conjunction with the update parameter. This is the current
  127. - value of 'key' in the yaml file.
  128. required: false
  129. default: false
  130. aliases: []
  131. curr_value_format:
  132. description:
  133. - Format of the incoming current value.
  134. choices: ["yaml", "json", "str"]
  135. required: false
  136. default: false
  137. aliases: []
  138. backup:
  139. description:
  140. - Whether to make a backup copy of the current file when performing an
  141. - edit.
  142. required: false
  143. default: true
  144. aliases: []
  145. separator:
  146. description:
  147. - The separator being used when parsing strings.
  148. required: false
  149. default: '.'
  150. aliases: []
  151. author:
  152. - "Kenny Woodson <kwoodson@redhat.com>"
  153. extends_documentation_fragment: []
  154. '''
  155. EXAMPLES = '''
  156. # Simple insert of key, value
  157. - name: insert simple key, value
  158. yedit:
  159. src: somefile.yml
  160. key: test
  161. value: somevalue
  162. state: present
  163. # Results:
  164. # test: somevalue
  165. # Multilevel insert of key, value
  166. - name: insert simple key, value
  167. yedit:
  168. src: somefile.yml
  169. key: a#b#c
  170. value: d
  171. state: present
  172. # Results:
  173. # a:
  174. # b:
  175. # c: d
  176. #
  177. # multiple edits at the same time
  178. - name: perform multiple edits
  179. yedit:
  180. src: somefile.yml
  181. edits:
  182. - key: a#b#c
  183. value: d
  184. - key: a#b#c#d
  185. value: e
  186. state: present
  187. # Results:
  188. # a:
  189. # b:
  190. # c:
  191. # d: e
  192. '''
  193. # -*- -*- -*- End included fragment: doc/yedit -*- -*- -*-
  194. # -*- -*- -*- Begin included fragment: class/yedit.py -*- -*- -*-
  195. class YeditException(Exception):
  196. ''' Exception class for Yedit '''
  197. pass
  198. # pylint: disable=too-many-public-methods
  199. class Yedit(object):
  200. ''' Class to modify yaml files '''
  201. re_valid_key = r"(((\[-?\d+\])|([0-9a-zA-Z%s/_-]+)).?)+$"
  202. re_key = r"(?:\[(-?\d+)\])|([0-9a-zA-Z{}/_-]+)"
  203. com_sep = set(['.', '#', '|', ':'])
  204. # pylint: disable=too-many-arguments
  205. def __init__(self,
  206. filename=None,
  207. content=None,
  208. content_type='yaml',
  209. separator='.',
  210. backup=False):
  211. self.content = content
  212. self._separator = separator
  213. self.filename = filename
  214. self.__yaml_dict = content
  215. self.content_type = content_type
  216. self.backup = backup
  217. self.load(content_type=self.content_type)
  218. if self.__yaml_dict is None:
  219. self.__yaml_dict = {}
  220. @property
  221. def separator(self):
  222. ''' getter method for separator '''
  223. return self._separator
  224. @separator.setter
  225. def separator(self, inc_sep):
  226. ''' setter method for separator '''
  227. self._separator = inc_sep
  228. @property
  229. def yaml_dict(self):
  230. ''' getter method for yaml_dict '''
  231. return self.__yaml_dict
  232. @yaml_dict.setter
  233. def yaml_dict(self, value):
  234. ''' setter method for yaml_dict '''
  235. self.__yaml_dict = value
  236. @staticmethod
  237. def parse_key(key, sep='.'):
  238. '''parse the key allowing the appropriate separator'''
  239. common_separators = list(Yedit.com_sep - set([sep]))
  240. return re.findall(Yedit.re_key.format(''.join(common_separators)), key)
  241. @staticmethod
  242. def valid_key(key, sep='.'):
  243. '''validate the incoming key'''
  244. common_separators = list(Yedit.com_sep - set([sep]))
  245. if not re.match(Yedit.re_valid_key.format(''.join(common_separators)), key):
  246. return False
  247. return True
  248. # pylint: disable=too-many-return-statements,too-many-branches
  249. @staticmethod
  250. def remove_entry(data, key, index=None, value=None, sep='.'):
  251. ''' remove data at location key '''
  252. if key == '' and isinstance(data, dict):
  253. if value is not None:
  254. data.pop(value)
  255. elif index is not None:
  256. raise YeditException("remove_entry for a dictionary does not have an index {}".format(index))
  257. else:
  258. data.clear()
  259. return True
  260. elif key == '' and isinstance(data, list):
  261. ind = None
  262. if value is not None:
  263. try:
  264. ind = data.index(value)
  265. except ValueError:
  266. return False
  267. elif index is not None:
  268. ind = index
  269. else:
  270. del data[:]
  271. if ind is not None:
  272. data.pop(ind)
  273. return True
  274. if not (key and Yedit.valid_key(key, sep)) and \
  275. isinstance(data, (list, dict)):
  276. return None
  277. key_indexes = Yedit.parse_key(key, sep)
  278. for arr_ind, dict_key in key_indexes[:-1]:
  279. if dict_key and isinstance(data, dict):
  280. data = data.get(dict_key)
  281. elif (arr_ind and isinstance(data, list) and
  282. int(arr_ind) <= len(data) - 1):
  283. data = data[int(arr_ind)]
  284. else:
  285. return None
  286. # process last index for remove
  287. # expected list entry
  288. if key_indexes[-1][0]:
  289. if isinstance(data, list) and int(key_indexes[-1][0]) <= len(data) - 1: # noqa: E501
  290. del data[int(key_indexes[-1][0])]
  291. return True
  292. # expected dict entry
  293. elif key_indexes[-1][1]:
  294. if isinstance(data, dict):
  295. del data[key_indexes[-1][1]]
  296. return True
  297. @staticmethod
  298. def add_entry(data, key, item=None, sep='.'):
  299. ''' Get an item from a dictionary with key notation a.b.c
  300. d = {'a': {'b': 'c'}}}
  301. key = a#b
  302. return c
  303. '''
  304. if key == '':
  305. pass
  306. elif (not (key and Yedit.valid_key(key, sep)) and
  307. isinstance(data, (list, dict))):
  308. return None
  309. key_indexes = Yedit.parse_key(key, sep)
  310. for arr_ind, dict_key in key_indexes[:-1]:
  311. if dict_key:
  312. if isinstance(data, dict) and dict_key in data and data[dict_key]: # noqa: E501
  313. data = data[dict_key]
  314. continue
  315. elif data and not isinstance(data, dict):
  316. raise YeditException("Unexpected item type found while going through key " +
  317. "path: {} (at key: {})".format(key, dict_key))
  318. data[dict_key] = {}
  319. data = data[dict_key]
  320. elif (arr_ind and isinstance(data, list) and
  321. int(arr_ind) <= len(data) - 1):
  322. data = data[int(arr_ind)]
  323. else:
  324. raise YeditException("Unexpected item type found while going through key path: {}".format(key))
  325. if key == '':
  326. data = item
  327. # process last index for add
  328. # expected list entry
  329. elif key_indexes[-1][0] and isinstance(data, list) and int(key_indexes[-1][0]) <= len(data) - 1: # noqa: E501
  330. data[int(key_indexes[-1][0])] = item
  331. # expected dict entry
  332. elif key_indexes[-1][1] and isinstance(data, dict):
  333. data[key_indexes[-1][1]] = item
  334. # didn't add/update to an existing list, nor add/update key to a dict
  335. # so we must have been provided some syntax like a.b.c[<int>] = "data" for a
  336. # non-existent array
  337. else:
  338. raise YeditException("Error adding to object at path: {}".format(key))
  339. return data
  340. @staticmethod
  341. def get_entry(data, key, sep='.'):
  342. ''' Get an item from a dictionary with key notation a.b.c
  343. d = {'a': {'b': 'c'}}}
  344. key = a.b
  345. return c
  346. '''
  347. if key == '':
  348. pass
  349. elif (not (key and Yedit.valid_key(key, sep)) and
  350. isinstance(data, (list, dict))):
  351. return None
  352. key_indexes = Yedit.parse_key(key, sep)
  353. for arr_ind, dict_key in key_indexes:
  354. if dict_key and isinstance(data, dict):
  355. data = data.get(dict_key)
  356. elif (arr_ind and isinstance(data, list) and
  357. int(arr_ind) <= len(data) - 1):
  358. data = data[int(arr_ind)]
  359. else:
  360. return None
  361. return data
  362. @staticmethod
  363. def _write(filename, contents):
  364. ''' Actually write the file contents to disk. This helps with mocking. '''
  365. tmp_filename = filename + '.yedit'
  366. with open(tmp_filename, 'w') as yfd:
  367. fcntl.flock(yfd, fcntl.LOCK_EX | fcntl.LOCK_NB)
  368. yfd.write(contents)
  369. fcntl.flock(yfd, fcntl.LOCK_UN)
  370. os.rename(tmp_filename, filename)
  371. def write(self):
  372. ''' write to file '''
  373. if not self.filename:
  374. raise YeditException('Please specify a filename.')
  375. if self.backup and self.file_exists():
  376. shutil.copy(self.filename, '{}.{}'.format(self.filename, time.strftime("%Y%m%dT%H%M%S")))
  377. # Try to set format attributes if supported
  378. try:
  379. self.yaml_dict.fa.set_block_style()
  380. except AttributeError:
  381. pass
  382. # Try to use RoundTripDumper if supported.
  383. if self.content_type == 'yaml':
  384. try:
  385. Yedit._write(self.filename, yaml.dump(self.yaml_dict, Dumper=yaml.RoundTripDumper))
  386. except AttributeError:
  387. Yedit._write(self.filename, yaml.safe_dump(self.yaml_dict, default_flow_style=False))
  388. elif self.content_type == 'json':
  389. Yedit._write(self.filename, json.dumps(self.yaml_dict, indent=4, sort_keys=True))
  390. else:
  391. raise YeditException('Unsupported content_type: {}.'.format(self.content_type) +
  392. 'Please specify a content_type of yaml or json.')
  393. return (True, self.yaml_dict)
  394. def read(self):
  395. ''' read from file '''
  396. # check if it exists
  397. if self.filename is None or not self.file_exists():
  398. return None
  399. contents = None
  400. with open(self.filename) as yfd:
  401. contents = yfd.read()
  402. return contents
  403. def file_exists(self):
  404. ''' return whether file exists '''
  405. if os.path.exists(self.filename):
  406. return True
  407. return False
  408. def load(self, content_type='yaml'):
  409. ''' return yaml file '''
  410. contents = self.read()
  411. if not contents and not self.content:
  412. return None
  413. if self.content:
  414. if isinstance(self.content, dict):
  415. self.yaml_dict = self.content
  416. return self.yaml_dict
  417. elif isinstance(self.content, str):
  418. contents = self.content
  419. # check if it is yaml
  420. try:
  421. if content_type == 'yaml' and contents:
  422. # Try to set format attributes if supported
  423. try:
  424. self.yaml_dict.fa.set_block_style()
  425. except AttributeError:
  426. pass
  427. # Try to use RoundTripLoader if supported.
  428. try:
  429. self.yaml_dict = yaml.load(contents, yaml.RoundTripLoader)
  430. except AttributeError:
  431. self.yaml_dict = yaml.safe_load(contents)
  432. # Try to set format attributes if supported
  433. try:
  434. self.yaml_dict.fa.set_block_style()
  435. except AttributeError:
  436. pass
  437. elif content_type == 'json' and contents:
  438. self.yaml_dict = json.loads(contents)
  439. except yaml.YAMLError as err:
  440. # Error loading yaml or json
  441. raise YeditException('Problem with loading yaml file. {}'.format(err))
  442. return self.yaml_dict
  443. def get(self, key):
  444. ''' get a specified key'''
  445. try:
  446. entry = Yedit.get_entry(self.yaml_dict, key, self.separator)
  447. except KeyError:
  448. entry = None
  449. return entry
  450. def pop(self, path, key_or_item):
  451. ''' remove a key, value pair from a dict or an item for a list'''
  452. try:
  453. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  454. except KeyError:
  455. entry = None
  456. if entry is None:
  457. return (False, self.yaml_dict)
  458. if isinstance(entry, dict):
  459. # AUDIT:maybe-no-member makes sense due to fuzzy types
  460. # pylint: disable=maybe-no-member
  461. if key_or_item in entry:
  462. entry.pop(key_or_item)
  463. return (True, self.yaml_dict)
  464. return (False, self.yaml_dict)
  465. elif isinstance(entry, list):
  466. # AUDIT:maybe-no-member makes sense due to fuzzy types
  467. # pylint: disable=maybe-no-member
  468. ind = None
  469. try:
  470. ind = entry.index(key_or_item)
  471. except ValueError:
  472. return (False, self.yaml_dict)
  473. entry.pop(ind)
  474. return (True, self.yaml_dict)
  475. return (False, self.yaml_dict)
  476. def delete(self, path, index=None, value=None):
  477. ''' remove path from a dict'''
  478. try:
  479. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  480. except KeyError:
  481. entry = None
  482. if entry is None:
  483. return (False, self.yaml_dict)
  484. result = Yedit.remove_entry(self.yaml_dict, path, index, value, self.separator)
  485. if not result:
  486. return (False, self.yaml_dict)
  487. return (True, self.yaml_dict)
  488. def exists(self, path, value):
  489. ''' check if value exists at path'''
  490. try:
  491. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  492. except KeyError:
  493. entry = None
  494. if isinstance(entry, list):
  495. if value in entry:
  496. return True
  497. return False
  498. elif isinstance(entry, dict):
  499. if isinstance(value, dict):
  500. rval = False
  501. for key, val in value.items():
  502. if entry[key] != val:
  503. rval = False
  504. break
  505. else:
  506. rval = True
  507. return rval
  508. return value in entry
  509. return entry == value
  510. def append(self, path, value):
  511. '''append value to a list'''
  512. try:
  513. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  514. except KeyError:
  515. entry = None
  516. if entry is None:
  517. self.put(path, [])
  518. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  519. if not isinstance(entry, list):
  520. return (False, self.yaml_dict)
  521. # AUDIT:maybe-no-member makes sense due to loading data from
  522. # a serialized format.
  523. # pylint: disable=maybe-no-member
  524. entry.append(value)
  525. return (True, self.yaml_dict)
  526. # pylint: disable=too-many-arguments
  527. def update(self, path, value, index=None, curr_value=None):
  528. ''' put path, value into a dict '''
  529. try:
  530. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  531. except KeyError:
  532. entry = None
  533. if isinstance(entry, dict):
  534. # AUDIT:maybe-no-member makes sense due to fuzzy types
  535. # pylint: disable=maybe-no-member
  536. if not isinstance(value, dict):
  537. raise YeditException('Cannot replace key, value entry in dict with non-dict type. ' +
  538. 'value=[{}] type=[{}]'.format(value, type(value)))
  539. entry.update(value)
  540. return (True, self.yaml_dict)
  541. elif isinstance(entry, list):
  542. # AUDIT:maybe-no-member makes sense due to fuzzy types
  543. # pylint: disable=maybe-no-member
  544. ind = None
  545. if curr_value:
  546. try:
  547. ind = entry.index(curr_value)
  548. except ValueError:
  549. return (False, self.yaml_dict)
  550. elif index is not None:
  551. ind = index
  552. if ind is not None and entry[ind] != value:
  553. entry[ind] = value
  554. return (True, self.yaml_dict)
  555. # see if it exists in the list
  556. try:
  557. ind = entry.index(value)
  558. except ValueError:
  559. # doesn't exist, append it
  560. entry.append(value)
  561. return (True, self.yaml_dict)
  562. # already exists, return
  563. if ind is not None:
  564. return (False, self.yaml_dict)
  565. return (False, self.yaml_dict)
  566. def put(self, path, value):
  567. ''' put path, value into a dict '''
  568. try:
  569. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  570. except KeyError:
  571. entry = None
  572. if entry == value:
  573. return (False, self.yaml_dict)
  574. # deepcopy didn't work
  575. # Try to use ruamel.yaml and fallback to pyyaml
  576. try:
  577. tmp_copy = yaml.load(yaml.round_trip_dump(self.yaml_dict,
  578. default_flow_style=False),
  579. yaml.RoundTripLoader)
  580. except AttributeError:
  581. tmp_copy = copy.deepcopy(self.yaml_dict)
  582. # set the format attributes if available
  583. try:
  584. tmp_copy.fa.set_block_style()
  585. except AttributeError:
  586. pass
  587. result = Yedit.add_entry(tmp_copy, path, value, self.separator)
  588. if result is None:
  589. return (False, self.yaml_dict)
  590. # When path equals "" it is a special case.
  591. # "" refers to the root of the document
  592. # Only update the root path (entire document) when its a list or dict
  593. if path == '':
  594. if isinstance(result, list) or isinstance(result, dict):
  595. self.yaml_dict = result
  596. return (True, self.yaml_dict)
  597. return (False, self.yaml_dict)
  598. self.yaml_dict = tmp_copy
  599. return (True, self.yaml_dict)
  600. def create(self, path, value):
  601. ''' create a yaml file '''
  602. if not self.file_exists():
  603. # deepcopy didn't work
  604. # Try to use ruamel.yaml and fallback to pyyaml
  605. try:
  606. tmp_copy = yaml.load(yaml.round_trip_dump(self.yaml_dict,
  607. default_flow_style=False),
  608. yaml.RoundTripLoader)
  609. except AttributeError:
  610. tmp_copy = copy.deepcopy(self.yaml_dict)
  611. # set the format attributes if available
  612. try:
  613. tmp_copy.fa.set_block_style()
  614. except AttributeError:
  615. pass
  616. result = Yedit.add_entry(tmp_copy, path, value, self.separator)
  617. if result is not None:
  618. self.yaml_dict = tmp_copy
  619. return (True, self.yaml_dict)
  620. return (False, self.yaml_dict)
  621. @staticmethod
  622. def get_curr_value(invalue, val_type):
  623. '''return the current value'''
  624. if invalue is None:
  625. return None
  626. curr_value = invalue
  627. if val_type == 'yaml':
  628. try:
  629. # AUDIT:maybe-no-member makes sense due to different yaml libraries
  630. # pylint: disable=maybe-no-member
  631. curr_value = yaml.safe_load(invalue, Loader=yaml.RoundTripLoader)
  632. except AttributeError:
  633. curr_value = yaml.safe_load(invalue)
  634. elif val_type == 'json':
  635. curr_value = json.loads(invalue)
  636. return curr_value
  637. @staticmethod
  638. def parse_value(inc_value, vtype=''):
  639. '''determine value type passed'''
  640. true_bools = ['y', 'Y', 'yes', 'Yes', 'YES', 'true', 'True', 'TRUE',
  641. 'on', 'On', 'ON', ]
  642. false_bools = ['n', 'N', 'no', 'No', 'NO', 'false', 'False', 'FALSE',
  643. 'off', 'Off', 'OFF']
  644. # It came in as a string but you didn't specify value_type as string
  645. # we will convert to bool if it matches any of the above cases
  646. if isinstance(inc_value, str) and 'bool' in vtype:
  647. if inc_value not in true_bools and inc_value not in false_bools:
  648. raise YeditException('Not a boolean type. str=[{}] vtype=[{}]'.format(inc_value, vtype))
  649. elif isinstance(inc_value, bool) and 'str' in vtype:
  650. inc_value = str(inc_value)
  651. # There is a special case where '' will turn into None after yaml loading it so skip
  652. if isinstance(inc_value, str) and inc_value == '':
  653. pass
  654. # If vtype is not str then go ahead and attempt to yaml load it.
  655. elif isinstance(inc_value, str) and 'str' not in vtype:
  656. try:
  657. inc_value = yaml.safe_load(inc_value)
  658. except Exception:
  659. raise YeditException('Could not determine type of incoming value. ' +
  660. 'value=[{}] vtype=[{}]'.format(type(inc_value), vtype))
  661. return inc_value
  662. @staticmethod
  663. def process_edits(edits, yamlfile):
  664. '''run through a list of edits and process them one-by-one'''
  665. results = []
  666. for edit in edits:
  667. value = Yedit.parse_value(edit['value'], edit.get('value_type', ''))
  668. if edit.get('action') == 'update':
  669. # pylint: disable=line-too-long
  670. curr_value = Yedit.get_curr_value(
  671. Yedit.parse_value(edit.get('curr_value')),
  672. edit.get('curr_value_format'))
  673. rval = yamlfile.update(edit['key'],
  674. value,
  675. edit.get('index'),
  676. curr_value)
  677. elif edit.get('action') == 'append':
  678. rval = yamlfile.append(edit['key'], value)
  679. else:
  680. rval = yamlfile.put(edit['key'], value)
  681. if rval[0]:
  682. results.append({'key': edit['key'], 'edit': rval[1]})
  683. return {'changed': len(results) > 0, 'results': results}
  684. # pylint: disable=too-many-return-statements,too-many-branches
  685. @staticmethod
  686. def run_ansible(params):
  687. '''perform the idempotent crud operations'''
  688. yamlfile = Yedit(filename=params['src'],
  689. backup=params['backup'],
  690. content_type=params['content_type'],
  691. separator=params['separator'])
  692. state = params['state']
  693. if params['src']:
  694. rval = yamlfile.load()
  695. if yamlfile.yaml_dict is None and state != 'present':
  696. return {'failed': True,
  697. 'msg': 'Error opening file [{}]. Verify that the '.format(params['src']) +
  698. 'file exists, that it is has correct permissions, and is valid yaml.'}
  699. if state == 'list':
  700. if params['content']:
  701. content = Yedit.parse_value(params['content'], params['content_type'])
  702. yamlfile.yaml_dict = content
  703. if params['key']:
  704. rval = yamlfile.get(params['key'])
  705. return {'changed': False, 'result': rval, 'state': state}
  706. elif state == 'absent':
  707. if params['content']:
  708. content = Yedit.parse_value(params['content'], params['content_type'])
  709. yamlfile.yaml_dict = content
  710. if params['update']:
  711. rval = yamlfile.pop(params['key'], params['value'])
  712. else:
  713. rval = yamlfile.delete(params['key'], params['index'], params['value'])
  714. if rval[0] and params['src']:
  715. yamlfile.write()
  716. return {'changed': rval[0], 'result': rval[1], 'state': state}
  717. elif state == 'present':
  718. # check if content is different than what is in the file
  719. if params['content']:
  720. content = Yedit.parse_value(params['content'], params['content_type'])
  721. # We had no edits to make and the contents are the same
  722. if yamlfile.yaml_dict == content and \
  723. params['value'] is None:
  724. return {'changed': False, 'result': yamlfile.yaml_dict, 'state': state}
  725. yamlfile.yaml_dict = content
  726. # If we were passed a key, value then
  727. # we enapsulate it in a list and process it
  728. # Key, Value passed to the module : Converted to Edits list #
  729. edits = []
  730. _edit = {}
  731. if params['value'] is not None:
  732. _edit['value'] = params['value']
  733. _edit['value_type'] = params['value_type']
  734. _edit['key'] = params['key']
  735. if params['update']:
  736. _edit['action'] = 'update'
  737. _edit['curr_value'] = params['curr_value']
  738. _edit['curr_value_format'] = params['curr_value_format']
  739. _edit['index'] = params['index']
  740. elif params['append']:
  741. _edit['action'] = 'append'
  742. edits.append(_edit)
  743. elif params['edits'] is not None:
  744. edits = params['edits']
  745. if edits:
  746. results = Yedit.process_edits(edits, yamlfile)
  747. # if there were changes and a src provided to us we need to write
  748. if results['changed'] and params['src']:
  749. yamlfile.write()
  750. return {'changed': results['changed'], 'result': results['results'], 'state': state}
  751. # no edits to make
  752. if params['src']:
  753. # pylint: disable=redefined-variable-type
  754. rval = yamlfile.write()
  755. return {'changed': rval[0],
  756. 'result': rval[1],
  757. 'state': state}
  758. # We were passed content but no src, key or value, or edits. Return contents in memory
  759. return {'changed': False, 'result': yamlfile.yaml_dict, 'state': state}
  760. return {'failed': True, 'msg': 'Unkown state passed'}
  761. # -*- -*- -*- End included fragment: class/yedit.py -*- -*- -*-
  762. # -*- -*- -*- Begin included fragment: ansible/yedit.py -*- -*- -*-
  763. # pylint: disable=too-many-branches
  764. def main():
  765. ''' ansible oc module for secrets '''
  766. module = AnsibleModule(
  767. argument_spec=dict(
  768. state=dict(default='present', type='str',
  769. choices=['present', 'absent', 'list']),
  770. debug=dict(default=False, type='bool'),
  771. src=dict(default=None, type='str'),
  772. content=dict(default=None),
  773. content_type=dict(default='yaml', choices=['yaml', 'json']),
  774. key=dict(default='', type='str'),
  775. value=dict(),
  776. value_type=dict(default='', type='str'),
  777. update=dict(default=False, type='bool'),
  778. append=dict(default=False, type='bool'),
  779. index=dict(default=None, type='int'),
  780. curr_value=dict(default=None, type='str'),
  781. curr_value_format=dict(default='yaml',
  782. choices=['yaml', 'json', 'str'],
  783. type='str'),
  784. backup=dict(default=True, type='bool'),
  785. separator=dict(default='.', type='str'),
  786. edits=dict(default=None, type='list'),
  787. ),
  788. mutually_exclusive=[["curr_value", "index"], ['update', "append"]],
  789. required_one_of=[["content", "src"]],
  790. )
  791. # Verify we recieved either a valid key or edits with valid keys when receiving a src file.
  792. # A valid key being not None or not ''.
  793. if module.params['src'] is not None:
  794. key_error = False
  795. edit_error = False
  796. if module.params['key'] in [None, '']:
  797. key_error = True
  798. if module.params['edits'] in [None, []]:
  799. edit_error = True
  800. else:
  801. for edit in module.params['edits']:
  802. if edit.get('key') in [None, '']:
  803. edit_error = True
  804. break
  805. if key_error and edit_error:
  806. module.fail_json(failed=True, msg='Empty value for parameter key not allowed.')
  807. rval = Yedit.run_ansible(module.params)
  808. if 'failed' in rval and rval['failed']:
  809. module.fail_json(**rval)
  810. module.exit_json(**rval)
  811. if __name__ == '__main__':
  812. main()
  813. # -*- -*- -*- End included fragment: ansible/yedit.py -*- -*- -*-