oo_filters.py 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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_collect(data, attribute=None, filters={}):
  31. ''' This takes a list of dict and collects all attributes specified into a list
  32. If filter is specified then we will include all items that match _ALL_ of filters.
  33. Ex: data = [ {'a':1, 'b':5, 'z': 'z'}, # True, return
  34. {'a':2, 'z': 'z'}, # True, return
  35. {'a':3, 'z': 'z'}, # True, return
  36. {'a':4, 'z': 'b'}, # FAILED, obj['z'] != obj['z']
  37. ]
  38. attribute = 'a'
  39. filters = {'z': 'z'}
  40. returns [1, 2, 3]
  41. '''
  42. if not issubclass(type(data), list):
  43. raise errors.AnsibleFilterError("|failed expects to filter on a List")
  44. if not attribute:
  45. raise errors.AnsibleFilterError("|failed expects attribute to be set")
  46. if filters:
  47. retval = [get_attr(d, attribute) for d in data if all([ d[key] == filters[key] for key in filters ]) ]
  48. else:
  49. retval = [get_attr(d, attribute) for d in data]
  50. return retval
  51. def oo_select_keys(data, keys):
  52. ''' This returns a list, which contains the value portions for the keys
  53. Ex: data = { 'a':1, 'b':2, 'c':3 }
  54. keys = ['a', 'c']
  55. returns [1, 3]
  56. '''
  57. if not issubclass(type(data), dict):
  58. raise errors.AnsibleFilterError("|failed expects to filter on a Dictionary")
  59. if not issubclass(type(keys), list):
  60. raise errors.AnsibleFilterError("|failed expects first param is a list")
  61. # Gather up the values for the list of keys passed in
  62. retval = [data[key] for key in keys]
  63. return retval
  64. def oo_prepend_strings_in_list(data, prepend):
  65. ''' This takes a list of strings and prepends a string to each item in the
  66. list
  67. Ex: data = ['cart', 'tree']
  68. prepend = 'apple-'
  69. returns ['apple-cart', 'apple-tree']
  70. '''
  71. if not issubclass(type(data), list):
  72. raise errors.AnsibleFilterError("|failed expects first param is a list")
  73. if not all(isinstance(x, basestring) for x in data):
  74. raise errors.AnsibleFilterError("|failed expects first param is a list of strings")
  75. retval = [prepend + s for s in data]
  76. return retval
  77. class FilterModule (object):
  78. def filters(self):
  79. return {
  80. "oo_select_keys": oo_select_keys,
  81. "oo_collect": oo_collect,
  82. "oo_len": oo_len,
  83. "oo_pdb": oo_pdb,
  84. "oo_prepend_strings_in_list": oo_prepend_strings_in_list
  85. }