yedit.py 30 KB

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