|
@@ -143,6 +143,12 @@ options:
|
|
|
required: false
|
|
|
default: false
|
|
|
aliases: []
|
|
|
+ backup_ext:
|
|
|
+ description:
|
|
|
+ - The backup file's appended string.
|
|
|
+ required: false
|
|
|
+ default: .orig
|
|
|
+ aliases: []
|
|
|
backup:
|
|
|
description:
|
|
|
- Whether to make a backup copy of the current file when performing an
|
|
@@ -211,7 +217,7 @@ class YeditException(Exception):
|
|
|
pass
|
|
|
|
|
|
|
|
|
-# pylint: disable=too-many-public-methods
|
|
|
+# pylint: disable=too-many-public-methods,too-many-instance-attributes
|
|
|
class Yedit(object):
|
|
|
''' Class to modify yaml files '''
|
|
|
re_valid_key = r"(((\[-?\d+\])|([0-9a-zA-Z%s/_-]+)).?)+$"
|
|
@@ -224,6 +230,7 @@ class Yedit(object):
|
|
|
content=None,
|
|
|
content_type='yaml',
|
|
|
separator='.',
|
|
|
+ backup_ext=None,
|
|
|
backup=False):
|
|
|
self.content = content
|
|
|
self._separator = separator
|
|
@@ -231,6 +238,11 @@ class Yedit(object):
|
|
|
self.__yaml_dict = content
|
|
|
self.content_type = content_type
|
|
|
self.backup = backup
|
|
|
+ if backup_ext is None:
|
|
|
+ self.backup_ext = ".{}".format(time.strftime("%Y%m%dT%H%M%S"))
|
|
|
+ else:
|
|
|
+ self.backup_ext = backup_ext
|
|
|
+
|
|
|
self.load(content_type=self.content_type)
|
|
|
if self.__yaml_dict is None:
|
|
|
self.__yaml_dict = {}
|
|
@@ -425,7 +437,7 @@ class Yedit(object):
|
|
|
raise YeditException('Please specify a filename.')
|
|
|
|
|
|
if self.backup and self.file_exists():
|
|
|
- shutil.copy(self.filename, '{}.{}'.format(self.filename, time.strftime("%Y%m%dT%H%M%S")))
|
|
|
+ shutil.copy(self.filename, '{}{}'.format(self.filename, self.backup_ext))
|
|
|
|
|
|
# Try to set format attributes if supported
|
|
|
try:
|
|
@@ -736,12 +748,7 @@ class Yedit(object):
|
|
|
|
|
|
curr_value = invalue
|
|
|
if val_type == 'yaml':
|
|
|
- try:
|
|
|
- # AUDIT:maybe-no-member makes sense due to different yaml libraries
|
|
|
- # pylint: disable=maybe-no-member
|
|
|
- curr_value = yaml.safe_load(invalue, Loader=yaml.RoundTripLoader)
|
|
|
- except AttributeError:
|
|
|
- curr_value = yaml.safe_load(invalue)
|
|
|
+ curr_value = yaml.safe_load(str(invalue))
|
|
|
elif val_type == 'json':
|
|
|
curr_value = json.loads(invalue)
|
|
|
|
|
@@ -811,6 +818,7 @@ class Yedit(object):
|
|
|
yamlfile = Yedit(filename=params['src'],
|
|
|
backup=params['backup'],
|
|
|
content_type=params['content_type'],
|
|
|
+ backup_ext=params['backup_ext'],
|
|
|
separator=params['separator'])
|
|
|
|
|
|
state = params['state']
|
|
@@ -932,7 +940,8 @@ def main():
|
|
|
curr_value_format=dict(default='yaml',
|
|
|
choices=['yaml', 'json', 'str'],
|
|
|
type='str'),
|
|
|
- backup=dict(default=True, type='bool'),
|
|
|
+ backup=dict(default=False, type='bool'),
|
|
|
+ backup_ext=dict(default=".{}".format(time.strftime("%Y%m%dT%H%M%S")), type='str'),
|
|
|
separator=dict(default='.', type='str'),
|
|
|
edits=dict(default=None, type='list'),
|
|
|
),
|