oo_filters.py 4.2 KB

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