yedit.py 30 KB

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