1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-04-25 21:22:44 +00:00

Reformat everything.

This commit is contained in:
Felix Fontein 2025-11-01 12:08:41 +01:00
parent 3f2213791a
commit 340ff8586d
1008 changed files with 61301 additions and 58309 deletions

View file

@ -171,21 +171,24 @@ from ansible_collections.community.general.plugins.module_utils.xfconf import xf
class XFConfProperty(StateModuleHelper):
change_params = ('value', )
diff_params = ('value', )
output_params = ('property', 'channel', 'value')
change_params = ("value",)
diff_params = ("value",)
output_params = ("property", "channel", "value")
module = dict(
argument_spec=dict(
state=dict(type='str', choices=('present', 'absent'), default='present'),
channel=dict(type='str', required=True),
property=dict(type='str', required=True),
value_type=dict(type='list', elements='str',
choices=('string', 'int', 'double', 'bool', 'uint', 'uchar', 'char', 'uint64', 'int64', 'float')),
value=dict(type='list', elements='raw'),
force_array=dict(type='bool', default=False, aliases=['array']),
state=dict(type="str", choices=("present", "absent"), default="present"),
channel=dict(type="str", required=True),
property=dict(type="str", required=True),
value_type=dict(
type="list",
elements="str",
choices=("string", "int", "double", "bool", "uint", "uchar", "char", "uint64", "int64", "float"),
),
value=dict(type="list", elements="raw"),
force_array=dict(type="bool", default=False, aliases=["array"]),
),
required_if=[('state', 'present', ['value', 'value_type'])],
required_together=[('value', 'value_type')],
required_if=[("state", "present", ["value", "value_type"])],
required_together=[("value", "value_type")],
supports_check_mode=True,
)
@ -193,35 +196,35 @@ class XFConfProperty(StateModuleHelper):
self.runner = xfconf_runner(self.module)
self.vars.version = get_xfconf_version(self.runner)
self.does_not = f'Property "{self.vars.property}" does not exist on channel "{self.vars.channel}".'
self.vars.set('previous_value', self._get())
self.vars.set('type', self.vars.value_type)
self.vars.set_meta('value', initial_value=self.vars.previous_value)
self.vars.set("previous_value", self._get())
self.vars.set("type", self.vars.value_type)
self.vars.set_meta("value", initial_value=self.vars.previous_value)
def process_command_output(self, rc, out, err):
if err.rstrip() == self.does_not:
return None
if rc or len(err):
self.do_raise(f'xfconf-query failed with error (rc={rc}): {err}')
self.do_raise(f"xfconf-query failed with error (rc={rc}): {err}")
result = out.rstrip()
if 'Value is an array with' in result:
result = result.split('\n')
if "Value is an array with" in result:
result = result.split("\n")
result.pop(0)
result.pop(0)
return result
def _get(self):
with self.runner('channel property', output_process=self.process_command_output) as ctx:
with self.runner("channel property", output_process=self.process_command_output) as ctx:
return ctx.run()
def state_absent(self):
with self.runner('channel property reset', check_mode_skip=True) as ctx:
with self.runner("channel property reset", check_mode_skip=True) as ctx:
ctx.run(reset=True)
self.vars.stdout = ctx.results_out
self.vars.stderr = ctx.results_err
self.vars.cmd = ctx.cmd
self.vars.set('run_info', ctx.run_info, verbosity=4)
self.vars.set("run_info", ctx.run_info, verbosity=4)
self.vars.value = None
def state_present(self):
@ -241,17 +244,14 @@ class XFConfProperty(StateModuleHelper):
self.do_raise('Number of elements in "value" and "value_type" must be the same')
# calculates if it is an array
self.vars.is_array = \
bool(self.vars.force_array) or \
isinstance(self.vars.previous_value, list) or \
values_len > 1
self.vars.is_array = bool(self.vars.force_array) or isinstance(self.vars.previous_value, list) or values_len > 1
with self.runner('channel property create force_array values_and_types', check_mode_skip=True) as ctx:
with self.runner("channel property create force_array values_and_types", check_mode_skip=True) as ctx:
ctx.run(create=True, force_array=self.vars.is_array, values_and_types=(self.vars.value, value_type))
self.vars.stdout = ctx.results_out
self.vars.stderr = ctx.results_err
self.vars.cmd = ctx.cmd
self.vars.set('run_info', ctx.run_info, verbosity=4)
self.vars.set("run_info", ctx.run_info, verbosity=4)
if not self.vars.is_array:
self.vars.value = self.vars.value[0]
@ -264,5 +264,5 @@ def main():
XFConfProperty.execute()
if __name__ == '__main__':
if __name__ == "__main__":
main()