oo_filters.py 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. from ansible import errors, runner
  2. import json
  3. import pdb
  4. def oo_pdb(arg):
  5. ''' This pops you into a pdb instance where arg is the data passed in from the filter.
  6. Ex: "{{ hostvars | oo_pdb }}"
  7. '''
  8. pdb.set_trace()
  9. return arg
  10. def get_attr(data, attribute=None):
  11. ''' This looks up dictionary attributes of the form a.b.c and returns the value.
  12. Ex: data = {'a': {'b': {'c': 5}}}
  13. attribute = "a.b.c"
  14. returns 5
  15. '''
  16. if not attribute:
  17. raise errors.AnsibleFilterError("|failed expects attribute to be set")
  18. ptr = data
  19. for attr in attribute.split('.'):
  20. ptr = ptr[attr]
  21. return ptr
  22. def oo_collect(data, attribute=None):
  23. ''' This takes a list of dict and collects all attributes specified into a list
  24. Ex: data = [ {'a':1,'b':5}, {'a':2}, {'a':3} ]
  25. attribute = 'a'
  26. returns [1, 2, 3]
  27. '''
  28. if not issubclass(type(data), list):
  29. raise errors.AnsibleFilterError("|failed expects to filter on a List")
  30. if not attribute:
  31. raise errors.AnsibleFilterError("|failed expects attribute to be set")
  32. retval = [get_attr(d, attribute) for d in data]
  33. return retval
  34. def oo_select_keys(data, keys):
  35. ''' This returns a list, which contains the value portions for the keys
  36. Ex: data = { 'a':1, 'b':2, 'c':3 }
  37. keys = ['a', 'c']
  38. returns [1, 3]
  39. '''
  40. if not issubclass(type(data), dict):
  41. raise errors.AnsibleFilterError("|failed expects to filter on a Dictionary")
  42. if not issubclass(type(keys), list):
  43. raise errors.AnsibleFilterError("|failed expects first param is a list")
  44. # Gather up the values for the list of keys passed in
  45. retval = [data[key] for key in keys]
  46. return retval
  47. class FilterModule (object):
  48. def filters(self):
  49. return {
  50. "oo_select_keys": oo_select_keys,
  51. "oo_collect": oo_collect,
  52. "oo_pdb": oo_pdb
  53. }