Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added flatten filter #33102

Merged
merged 9 commits into from Dec 15, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 13 additions & 0 deletions docs/docsite/rst/playbooks_filters.rst
Expand Up @@ -116,6 +116,19 @@ To get the maximum value from a list of numbers::

{{ [3, 4, 2] | max }}

.. versionadded:: 2.5

Flatten a list (same thing the `flatten` lookup does)::

{{ [3, [4, 2] ]|flatten }}

Flatten only the first level of a list (akin to the `items` lookup)::

{{ [3, [4, [2]] ]|flatten(level=1) }}


To get the minimum value from list of numbers::

.. _set_theory_filters:

Set Theory Filters
Expand Down
22 changes: 22 additions & 0 deletions lib/ansible/plugins/filter/core.py
Expand Up @@ -465,13 +465,35 @@ def b64decode(string):
return to_text(base64.b64decode(to_bytes(string, errors='surrogate_or_strict')))


def flatten(mylist, levels=None):

ret = []
for element in mylist:
if element in (None, 'None', 'null'):
# ignore undefined items
break
elif isinstance(element, MutableSequence):
if levels is None:
ret.extend(flatten(element))
elif levels >= 1:
levels = int(levels) - 1
ret.extend(flatten(element, levels=levels))
else:
ret.append(element)
else:
ret.append(element)

return ret


class FilterModule(object):
''' Ansible core jinja2 filters '''

def filters(self):
return {
# jinja2 overrides
'groupby': do_groupby,
'flatten': flatten,

# base 64
'b64decode': b64decode,
Expand Down
17 changes: 17 additions & 0 deletions test/integration/targets/filters/tasks/main.yml
Expand Up @@ -168,3 +168,20 @@
that:
- _bad_urlsplit_filter is failed
- "'unknown URL component' in _bad_urlsplit_filter.msg"

- name: Flatten tests
block:
- name: use flatten
set_fact:
flat_full: '{{orig_list|flatten}}'
flat_one: '{{orig_list|flatten(levels=1)}}'
flat_two: '{{orig_list|flatten(levels=2)}}'

- name: Verify flatten filter works as expected
assert:
that:
- flat_full == [1, 2, 3, 4, 5, 6, 7]
- flat_one == [1, 2, 3, [4, [5]], 6, 7]
- flat_two == [1, 2, 3, 4, [5], 6, 7]
vars:
orig_list: [1, 2, [3, [4, [5]], 6], 7]