oo_filters.py 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. # vim: expandtab:tabstop=4:shiftwidth=4
  4. from ansible import errors, runner
  5. import json
  6. import pdb
  7. def oo_pdb(arg):
  8. ''' This pops you into a pdb instance where arg is the data passed in from the filter.
  9. Ex: "{{ hostvars | oo_pdb }}"
  10. '''
  11. pdb.set_trace()
  12. return arg
  13. def oo_len(arg):
  14. ''' This returns the length of the argument
  15. Ex: "{{ hostvars | oo_len }}"
  16. '''
  17. return len(arg)
  18. def get_attr(data, attribute=None):
  19. ''' This looks up dictionary attributes of the form a.b.c and returns the value.
  20. Ex: data = {'a': {'b': {'c': 5}}}
  21. attribute = "a.b.c"
  22. returns 5
  23. '''
  24. if not attribute:
  25. raise errors.AnsibleFilterError("|failed expects attribute to be set")
  26. ptr = data
  27. for attr in attribute.split('.'):
  28. ptr = ptr[attr]
  29. return ptr
  30. def oo_flatten(data):
  31. ''' This filter plugin will flatten a list of lists
  32. '''
  33. if not issubclass(type(data), list):
  34. raise errors.AnsibleFilterError("|failed expects to flatten a List")
  35. return [ item for sublist in data for item in sublist ]
  36. def oo_collect(data, attribute=None, filters={}):
  37. ''' This takes a list of dict and collects all attributes specified into a list
  38. If filter is specified then we will include all items that match _ALL_ of filters.
  39. Ex: data = [ {'a':1, 'b':5, 'z': 'z'}, # True, return
  40. {'a':2, 'z': 'z'}, # True, return
  41. {'a':3, 'z': 'z'}, # True, return
  42. {'a':4, 'z': 'b'}, # FAILED, obj['z'] != obj['z']
  43. ]
  44. attribute = 'a'
  45. filters = {'z': 'z'}
  46. returns [1, 2, 3]
  47. '''
  48. if not issubclass(type(data), list):
  49. raise errors.AnsibleFilterError("|failed expects to filter on a List")
  50. if not attribute:
  51. raise errors.AnsibleFilterError("|failed expects attribute to be set")
  52. if filters:
  53. retval = [get_attr(d, attribute) for d in data if all([ d[key] == filters[key] for key in filters ]) ]
  54. else:
  55. retval = [get_attr(d, attribute) for d in data]
  56. return retval
  57. def oo_select_keys(data, keys):
  58. ''' This returns a list, which contains the value portions for the keys
  59. Ex: data = { 'a':1, 'b':2, 'c':3 }
  60. keys = ['a', 'c']
  61. returns [1, 3]
  62. '''
  63. if not issubclass(type(data), dict):
  64. raise errors.AnsibleFilterError("|failed expects to filter on a Dictionary")
  65. if not issubclass(type(keys), list):
  66. raise errors.AnsibleFilterError("|failed expects first param is a list")
  67. # Gather up the values for the list of keys passed in
  68. retval = [data[key] for key in keys]
  69. return retval
  70. def oo_prepend_strings_in_list(data, prepend):
  71. ''' This takes a list of strings and prepends a string to each item in the
  72. list
  73. Ex: data = ['cart', 'tree']
  74. prepend = 'apple-'
  75. returns ['apple-cart', 'apple-tree']
  76. '''
  77. if not issubclass(type(data), list):
  78. raise errors.AnsibleFilterError("|failed expects first param is a list")
  79. if not all(isinstance(x, basestring) for x in data):
  80. raise errors.AnsibleFilterError("|failed expects first param is a list of strings")
  81. retval = [prepend + s for s in data]
  82. return retval
  83. class FilterModule (object):
  84. def filters(self):
  85. return {
  86. "oo_select_keys": oo_select_keys,
  87. "oo_collect": oo_collect,
  88. "oo_flatten": oo_flatten,
  89. "oo_len": oo_len,
  90. "oo_pdb": oo_pdb,
  91. "oo_prepend_strings_in_list": oo_prepend_strings_in_list
  92. }