yedit.py 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953
  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. @staticmethod
  249. def remove_entry(data, key, sep='.'):
  250. ''' remove data at location key '''
  251. if key == '' and isinstance(data, dict):
  252. data.clear()
  253. return True
  254. elif key == '' and isinstance(data, list):
  255. del data[:]
  256. return True
  257. if not (key and Yedit.valid_key(key, sep)) and \
  258. isinstance(data, (list, dict)):
  259. return None
  260. key_indexes = Yedit.parse_key(key, sep)
  261. for arr_ind, dict_key in key_indexes[:-1]:
  262. if dict_key and isinstance(data, dict):
  263. data = data.get(dict_key)
  264. elif (arr_ind and isinstance(data, list) and
  265. int(arr_ind) <= len(data) - 1):
  266. data = data[int(arr_ind)]
  267. else:
  268. return None
  269. # process last index for remove
  270. # expected list entry
  271. if key_indexes[-1][0]:
  272. if isinstance(data, list) and int(key_indexes[-1][0]) <= len(data) - 1: # noqa: E501
  273. del data[int(key_indexes[-1][0])]
  274. return True
  275. # expected dict entry
  276. elif key_indexes[-1][1]:
  277. if isinstance(data, dict):
  278. del data[key_indexes[-1][1]]
  279. return True
  280. @staticmethod
  281. def add_entry(data, key, item=None, sep='.'):
  282. ''' Get an item from a dictionary with key notation a.b.c
  283. d = {'a': {'b': 'c'}}}
  284. key = a#b
  285. return c
  286. '''
  287. if key == '':
  288. pass
  289. elif (not (key and Yedit.valid_key(key, sep)) and
  290. isinstance(data, (list, dict))):
  291. return None
  292. key_indexes = Yedit.parse_key(key, sep)
  293. for arr_ind, dict_key in key_indexes[:-1]:
  294. if dict_key:
  295. if isinstance(data, dict) and dict_key in data and data[dict_key]: # noqa: E501
  296. data = data[dict_key]
  297. continue
  298. elif data and not isinstance(data, dict):
  299. raise YeditException("Unexpected item type found while going through key " +
  300. "path: {} (at key: {})".format(key, dict_key))
  301. data[dict_key] = {}
  302. data = data[dict_key]
  303. elif (arr_ind and isinstance(data, list) and
  304. int(arr_ind) <= len(data) - 1):
  305. data = data[int(arr_ind)]
  306. else:
  307. raise YeditException("Unexpected item type found while going through key path: {}".format(key))
  308. if key == '':
  309. data = item
  310. # process last index for add
  311. # expected list entry
  312. elif key_indexes[-1][0] and isinstance(data, list) and int(key_indexes[-1][0]) <= len(data) - 1: # noqa: E501
  313. data[int(key_indexes[-1][0])] = item
  314. # expected dict entry
  315. elif key_indexes[-1][1] and isinstance(data, dict):
  316. data[key_indexes[-1][1]] = item
  317. # didn't add/update to an existing list, nor add/update key to a dict
  318. # so we must have been provided some syntax like a.b.c[<int>] = "data" for a
  319. # non-existent array
  320. else:
  321. raise YeditException("Error adding to object at path: {}".format(key))
  322. return data
  323. @staticmethod
  324. def get_entry(data, key, sep='.'):
  325. ''' Get an item from a dictionary with key notation a.b.c
  326. d = {'a': {'b': 'c'}}}
  327. key = a.b
  328. return c
  329. '''
  330. if key == '':
  331. pass
  332. elif (not (key and Yedit.valid_key(key, sep)) and
  333. isinstance(data, (list, dict))):
  334. return None
  335. key_indexes = Yedit.parse_key(key, sep)
  336. for arr_ind, dict_key in key_indexes:
  337. if dict_key and isinstance(data, dict):
  338. data = data.get(dict_key)
  339. elif (arr_ind and isinstance(data, list) and
  340. int(arr_ind) <= len(data) - 1):
  341. data = data[int(arr_ind)]
  342. else:
  343. return None
  344. return data
  345. @staticmethod
  346. def _write(filename, contents):
  347. ''' Actually write the file contents to disk. This helps with mocking. '''
  348. tmp_filename = filename + '.yedit'
  349. with open(tmp_filename, 'w') as yfd:
  350. fcntl.flock(yfd, fcntl.LOCK_EX | fcntl.LOCK_NB)
  351. yfd.write(contents)
  352. fcntl.flock(yfd, fcntl.LOCK_UN)
  353. os.rename(tmp_filename, filename)
  354. def write(self):
  355. ''' write to file '''
  356. if not self.filename:
  357. raise YeditException('Please specify a filename.')
  358. if self.backup and self.file_exists():
  359. shutil.copy(self.filename, self.filename + '.orig')
  360. # Try to set format attributes if supported
  361. try:
  362. self.yaml_dict.fa.set_block_style()
  363. except AttributeError:
  364. pass
  365. # Try to use RoundTripDumper if supported.
  366. if self.content_type == 'yaml':
  367. try:
  368. Yedit._write(self.filename, yaml.dump(self.yaml_dict, Dumper=yaml.RoundTripDumper))
  369. except AttributeError:
  370. Yedit._write(self.filename, yaml.safe_dump(self.yaml_dict, default_flow_style=False))
  371. elif self.content_type == 'json':
  372. Yedit._write(self.filename, json.dumps(self.yaml_dict, indent=4, sort_keys=True))
  373. else:
  374. raise YeditException('Unsupported content_type: {}.'.format(self.content_type) +
  375. 'Please specify a content_type of yaml or json.')
  376. return (True, self.yaml_dict)
  377. def read(self):
  378. ''' read from file '''
  379. # check if it exists
  380. if self.filename is None or not self.file_exists():
  381. return None
  382. contents = None
  383. with open(self.filename) as yfd:
  384. contents = yfd.read()
  385. return contents
  386. def file_exists(self):
  387. ''' return whether file exists '''
  388. if os.path.exists(self.filename):
  389. return True
  390. return False
  391. def load(self, content_type='yaml'):
  392. ''' return yaml file '''
  393. contents = self.read()
  394. if not contents and not self.content:
  395. return None
  396. if self.content:
  397. if isinstance(self.content, dict):
  398. self.yaml_dict = self.content
  399. return self.yaml_dict
  400. elif isinstance(self.content, str):
  401. contents = self.content
  402. # check if it is yaml
  403. try:
  404. if content_type == 'yaml' and contents:
  405. # Try to set format attributes if supported
  406. try:
  407. self.yaml_dict.fa.set_block_style()
  408. except AttributeError:
  409. pass
  410. # Try to use RoundTripLoader if supported.
  411. try:
  412. self.yaml_dict = yaml.load(contents, yaml.RoundTripLoader)
  413. except AttributeError:
  414. self.yaml_dict = yaml.safe_load(contents)
  415. # Try to set format attributes if supported
  416. try:
  417. self.yaml_dict.fa.set_block_style()
  418. except AttributeError:
  419. pass
  420. elif content_type == 'json' and contents:
  421. self.yaml_dict = json.loads(contents)
  422. except yaml.YAMLError as err:
  423. # Error loading yaml or json
  424. raise YeditException('Problem with loading yaml file. {}'.format(err))
  425. return self.yaml_dict
  426. def get(self, key):
  427. ''' get a specified key'''
  428. try:
  429. entry = Yedit.get_entry(self.yaml_dict, key, self.separator)
  430. except KeyError:
  431. entry = None
  432. return entry
  433. def pop(self, path, key_or_item):
  434. ''' remove a key, value pair from a dict or an item for a list'''
  435. try:
  436. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  437. except KeyError:
  438. entry = None
  439. if entry is None:
  440. return (False, self.yaml_dict)
  441. if isinstance(entry, dict):
  442. # AUDIT:maybe-no-member makes sense due to fuzzy types
  443. # pylint: disable=maybe-no-member
  444. if key_or_item in entry:
  445. entry.pop(key_or_item)
  446. return (True, self.yaml_dict)
  447. return (False, self.yaml_dict)
  448. elif isinstance(entry, list):
  449. # AUDIT:maybe-no-member makes sense due to fuzzy types
  450. # pylint: disable=maybe-no-member
  451. ind = None
  452. try:
  453. ind = entry.index(key_or_item)
  454. except ValueError:
  455. return (False, self.yaml_dict)
  456. entry.pop(ind)
  457. return (True, self.yaml_dict)
  458. return (False, self.yaml_dict)
  459. def delete(self, path):
  460. ''' remove path from a dict'''
  461. try:
  462. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  463. except KeyError:
  464. entry = None
  465. if entry is None:
  466. return (False, self.yaml_dict)
  467. result = Yedit.remove_entry(self.yaml_dict, path, self.separator)
  468. if not result:
  469. return (False, self.yaml_dict)
  470. return (True, self.yaml_dict)
  471. def exists(self, path, value):
  472. ''' check if value exists at path'''
  473. try:
  474. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  475. except KeyError:
  476. entry = None
  477. if isinstance(entry, list):
  478. if value in entry:
  479. return True
  480. return False
  481. elif isinstance(entry, dict):
  482. if isinstance(value, dict):
  483. rval = False
  484. for key, val in value.items():
  485. if entry[key] != val:
  486. rval = False
  487. break
  488. else:
  489. rval = True
  490. return rval
  491. return value in entry
  492. return entry == value
  493. def append(self, path, value):
  494. '''append value to a list'''
  495. try:
  496. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  497. except KeyError:
  498. entry = None
  499. if entry is None:
  500. self.put(path, [])
  501. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  502. if not isinstance(entry, list):
  503. return (False, self.yaml_dict)
  504. # AUDIT:maybe-no-member makes sense due to loading data from
  505. # a serialized format.
  506. # pylint: disable=maybe-no-member
  507. entry.append(value)
  508. return (True, self.yaml_dict)
  509. # pylint: disable=too-many-arguments
  510. def update(self, path, value, index=None, curr_value=None):
  511. ''' put path, value into a dict '''
  512. try:
  513. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  514. except KeyError:
  515. entry = None
  516. if isinstance(entry, dict):
  517. # AUDIT:maybe-no-member makes sense due to fuzzy types
  518. # pylint: disable=maybe-no-member
  519. if not isinstance(value, dict):
  520. raise YeditException('Cannot replace key, value entry in dict with non-dict type. ' +
  521. 'value=[{}] type=[{}]'.format(value, type(value)))
  522. entry.update(value)
  523. return (True, self.yaml_dict)
  524. elif isinstance(entry, list):
  525. # AUDIT:maybe-no-member makes sense due to fuzzy types
  526. # pylint: disable=maybe-no-member
  527. ind = None
  528. if curr_value:
  529. try:
  530. ind = entry.index(curr_value)
  531. except ValueError:
  532. return (False, self.yaml_dict)
  533. elif index is not None:
  534. ind = index
  535. if ind is not None and entry[ind] != value:
  536. entry[ind] = value
  537. return (True, self.yaml_dict)
  538. # see if it exists in the list
  539. try:
  540. ind = entry.index(value)
  541. except ValueError:
  542. # doesn't exist, append it
  543. entry.append(value)
  544. return (True, self.yaml_dict)
  545. # already exists, return
  546. if ind is not None:
  547. return (False, self.yaml_dict)
  548. return (False, self.yaml_dict)
  549. def put(self, path, value):
  550. ''' put path, value into a dict '''
  551. try:
  552. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  553. except KeyError:
  554. entry = None
  555. if entry == value:
  556. return (False, self.yaml_dict)
  557. # deepcopy didn't work
  558. # Try to use ruamel.yaml and fallback to pyyaml
  559. try:
  560. tmp_copy = yaml.load(yaml.round_trip_dump(self.yaml_dict,
  561. default_flow_style=False),
  562. yaml.RoundTripLoader)
  563. except AttributeError:
  564. tmp_copy = copy.deepcopy(self.yaml_dict)
  565. # set the format attributes if available
  566. try:
  567. tmp_copy.fa.set_block_style()
  568. except AttributeError:
  569. pass
  570. result = Yedit.add_entry(tmp_copy, path, value, self.separator)
  571. if result is None:
  572. return (False, self.yaml_dict)
  573. # When path equals "" it is a special case.
  574. # "" refers to the root of the document
  575. # Only update the root path (entire document) when its a list or dict
  576. if path == '':
  577. if isinstance(result, list) or isinstance(result, dict):
  578. self.yaml_dict = result
  579. return (True, self.yaml_dict)
  580. return (False, self.yaml_dict)
  581. self.yaml_dict = tmp_copy
  582. return (True, self.yaml_dict)
  583. def create(self, path, value):
  584. ''' create a yaml file '''
  585. if not self.file_exists():
  586. # deepcopy didn't work
  587. # Try to use ruamel.yaml and fallback to pyyaml
  588. try:
  589. tmp_copy = yaml.load(yaml.round_trip_dump(self.yaml_dict,
  590. default_flow_style=False),
  591. yaml.RoundTripLoader)
  592. except AttributeError:
  593. tmp_copy = copy.deepcopy(self.yaml_dict)
  594. # set the format attributes if available
  595. try:
  596. tmp_copy.fa.set_block_style()
  597. except AttributeError:
  598. pass
  599. result = Yedit.add_entry(tmp_copy, path, value, self.separator)
  600. if result is not None:
  601. self.yaml_dict = tmp_copy
  602. return (True, self.yaml_dict)
  603. return (False, self.yaml_dict)
  604. @staticmethod
  605. def get_curr_value(invalue, val_type):
  606. '''return the current value'''
  607. if invalue is None:
  608. return None
  609. curr_value = invalue
  610. if val_type == 'yaml':
  611. try:
  612. # AUDIT:maybe-no-member makes sense due to different yaml libraries
  613. # pylint: disable=maybe-no-member
  614. curr_value = yaml.safe_load(invalue, Loader=yaml.RoundTripLoader)
  615. except AttributeError:
  616. curr_value = yaml.safe_load(invalue)
  617. elif val_type == 'json':
  618. curr_value = json.loads(invalue)
  619. return curr_value
  620. @staticmethod
  621. def parse_value(inc_value, vtype=''):
  622. '''determine value type passed'''
  623. true_bools = ['y', 'Y', 'yes', 'Yes', 'YES', 'true', 'True', 'TRUE',
  624. 'on', 'On', 'ON', ]
  625. false_bools = ['n', 'N', 'no', 'No', 'NO', 'false', 'False', 'FALSE',
  626. 'off', 'Off', 'OFF']
  627. # It came in as a string but you didn't specify value_type as string
  628. # we will convert to bool if it matches any of the above cases
  629. if isinstance(inc_value, str) and 'bool' in vtype:
  630. if inc_value not in true_bools and inc_value not in false_bools:
  631. raise YeditException('Not a boolean type. str=[{}] vtype=[{}]'.format(inc_value, vtype))
  632. elif isinstance(inc_value, bool) and 'str' in vtype:
  633. inc_value = str(inc_value)
  634. # There is a special case where '' will turn into None after yaml loading it so skip
  635. if isinstance(inc_value, str) and inc_value == '':
  636. pass
  637. # If vtype is not str then go ahead and attempt to yaml load it.
  638. elif isinstance(inc_value, str) and 'str' not in vtype:
  639. try:
  640. inc_value = yaml.safe_load(inc_value)
  641. except Exception:
  642. raise YeditException('Could not determine type of incoming value. ' +
  643. 'value=[{}] vtype=[{}]'.format(type(inc_value), vtype))
  644. return inc_value
  645. @staticmethod
  646. def process_edits(edits, yamlfile):
  647. '''run through a list of edits and process them one-by-one'''
  648. results = []
  649. for edit in edits:
  650. value = Yedit.parse_value(edit['value'], edit.get('value_type', ''))
  651. if edit.get('action') == 'update':
  652. # pylint: disable=line-too-long
  653. curr_value = Yedit.get_curr_value(
  654. Yedit.parse_value(edit.get('curr_value')),
  655. edit.get('curr_value_format'))
  656. rval = yamlfile.update(edit['key'],
  657. value,
  658. edit.get('index'),
  659. curr_value)
  660. elif edit.get('action') == 'append':
  661. rval = yamlfile.append(edit['key'], value)
  662. else:
  663. rval = yamlfile.put(edit['key'], value)
  664. if rval[0]:
  665. results.append({'key': edit['key'], 'edit': rval[1]})
  666. return {'changed': len(results) > 0, 'results': results}
  667. # pylint: disable=too-many-return-statements,too-many-branches
  668. @staticmethod
  669. def run_ansible(params):
  670. '''perform the idempotent crud operations'''
  671. yamlfile = Yedit(filename=params['src'],
  672. backup=params['backup'],
  673. content_type=params['content_type'],
  674. separator=params['separator'])
  675. state = params['state']
  676. if params['src']:
  677. rval = yamlfile.load()
  678. if yamlfile.yaml_dict is None and state != 'present':
  679. return {'failed': True,
  680. 'msg': 'Error opening file [{}]. Verify that the '.format(params['src']) +
  681. 'file exists, that it is has correct permissions, and is valid yaml.'}
  682. if state == 'list':
  683. if params['content']:
  684. content = Yedit.parse_value(params['content'], params['content_type'])
  685. yamlfile.yaml_dict = content
  686. if params['key']:
  687. rval = yamlfile.get(params['key'])
  688. return {'changed': False, 'result': rval, 'state': state}
  689. elif state == 'absent':
  690. if params['content']:
  691. content = Yedit.parse_value(params['content'], params['content_type'])
  692. yamlfile.yaml_dict = content
  693. if params['update']:
  694. rval = yamlfile.pop(params['key'], params['value'])
  695. else:
  696. rval = yamlfile.delete(params['key'])
  697. if rval[0] and params['src']:
  698. yamlfile.write()
  699. return {'changed': rval[0], 'result': rval[1], 'state': state}
  700. elif state == 'present':
  701. # check if content is different than what is in the file
  702. if params['content']:
  703. content = Yedit.parse_value(params['content'], params['content_type'])
  704. # We had no edits to make and the contents are the same
  705. if yamlfile.yaml_dict == content and \
  706. params['value'] is None:
  707. return {'changed': False, 'result': yamlfile.yaml_dict, 'state': state}
  708. yamlfile.yaml_dict = content
  709. # If we were passed a key, value then
  710. # we enapsulate it in a list and process it
  711. # Key, Value passed to the module : Converted to Edits list #
  712. edits = []
  713. _edit = {}
  714. if params['value'] is not None:
  715. _edit['value'] = params['value']
  716. _edit['value_type'] = params['value_type']
  717. _edit['key'] = params['key']
  718. if params['update']:
  719. _edit['action'] = 'update'
  720. _edit['curr_value'] = params['curr_value']
  721. _edit['curr_value_format'] = params['curr_value_format']
  722. _edit['index'] = params['index']
  723. elif params['append']:
  724. _edit['action'] = 'append'
  725. edits.append(_edit)
  726. elif params['edits'] is not None:
  727. edits = params['edits']
  728. if edits:
  729. results = Yedit.process_edits(edits, yamlfile)
  730. # if there were changes and a src provided to us we need to write
  731. if results['changed'] and params['src']:
  732. yamlfile.write()
  733. return {'changed': results['changed'], 'result': results['results'], 'state': state}
  734. # no edits to make
  735. if params['src']:
  736. # pylint: disable=redefined-variable-type
  737. rval = yamlfile.write()
  738. return {'changed': rval[0],
  739. 'result': rval[1],
  740. 'state': state}
  741. # We were passed content but no src, key or value, or edits. Return contents in memory
  742. return {'changed': False, 'result': yamlfile.yaml_dict, 'state': state}
  743. return {'failed': True, 'msg': 'Unkown state passed'}
  744. # -*- -*- -*- End included fragment: class/yedit.py -*- -*- -*-
  745. # -*- -*- -*- Begin included fragment: ansible/yedit.py -*- -*- -*-
  746. # pylint: disable=too-many-branches
  747. def main():
  748. ''' ansible oc module for secrets '''
  749. module = AnsibleModule(
  750. argument_spec=dict(
  751. state=dict(default='present', type='str',
  752. choices=['present', 'absent', 'list']),
  753. debug=dict(default=False, type='bool'),
  754. src=dict(default=None, type='str'),
  755. content=dict(default=None),
  756. content_type=dict(default='yaml', choices=['yaml', 'json']),
  757. key=dict(default='', type='str'),
  758. value=dict(),
  759. value_type=dict(default='', type='str'),
  760. update=dict(default=False, type='bool'),
  761. append=dict(default=False, type='bool'),
  762. index=dict(default=None, type='int'),
  763. curr_value=dict(default=None, type='str'),
  764. curr_value_format=dict(default='yaml',
  765. choices=['yaml', 'json', 'str'],
  766. type='str'),
  767. backup=dict(default=True, type='bool'),
  768. separator=dict(default='.', type='str'),
  769. edits=dict(default=None, type='list'),
  770. ),
  771. mutually_exclusive=[["curr_value", "index"], ['update', "append"]],
  772. required_one_of=[["content", "src"]],
  773. )
  774. # Verify we recieved either a valid key or edits with valid keys when receiving a src file.
  775. # A valid key being not None or not ''.
  776. if module.params['src'] is not None:
  777. key_error = False
  778. edit_error = False
  779. if module.params['key'] in [None, '']:
  780. key_error = True
  781. if module.params['edits'] in [None, []]:
  782. edit_error = True
  783. else:
  784. for edit in module.params['edits']:
  785. if edit.get('key') in [None, '']:
  786. edit_error = True
  787. break
  788. if key_error and edit_error:
  789. module.fail_json(failed=True, msg='Empty value for parameter key not allowed.')
  790. rval = Yedit.run_ansible(module.params)
  791. if 'failed' in rval and rval['failed']:
  792. module.fail_json(**rval)
  793. module.exit_json(**rval)
  794. if __name__ == '__main__':
  795. main()
  796. # -*- -*- -*- End included fragment: ansible/yedit.py -*- -*- -*-