oo_filters.py 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. # vim: expandtab:tabstop=4:shiftwidth=4
  4. '''
  5. Custom filters for use in openshift-ansible
  6. '''
  7. from ansible import errors
  8. from operator import itemgetter
  9. import pdb
  10. class FilterModule(object):
  11. ''' Custom ansible filters '''
  12. @staticmethod
  13. def oo_pdb(arg):
  14. ''' This pops you into a pdb instance where arg is the data passed in
  15. from the filter.
  16. Ex: "{{ hostvars | oo_pdb }}"
  17. '''
  18. pdb.set_trace()
  19. return arg
  20. @staticmethod
  21. def oo_len(arg):
  22. ''' This returns the length of the argument
  23. Ex: "{{ hostvars | oo_len }}"
  24. '''
  25. return len(arg)
  26. @staticmethod
  27. def get_attr(data, attribute=None):
  28. ''' This looks up dictionary attributes of the form a.b.c and returns
  29. the value.
  30. Ex: data = {'a': {'b': {'c': 5}}}
  31. attribute = "a.b.c"
  32. returns 5
  33. '''
  34. if not attribute:
  35. raise errors.AnsibleFilterError("|failed expects attribute to be set")
  36. ptr = data
  37. for attr in attribute.split('.'):
  38. ptr = ptr[attr]
  39. return ptr
  40. @staticmethod
  41. def oo_flatten(data):
  42. ''' This filter plugin will flatten a list of lists
  43. '''
  44. if not issubclass(type(data), list):
  45. raise errors.AnsibleFilterError("|failed expects to flatten a List")
  46. return [item for sublist in data for item in sublist]
  47. @staticmethod
  48. def oo_collect(data, attribute=None, filters=None):
  49. ''' This takes a list of dict and collects all attributes specified into a
  50. list If filter is specified then we will include all items that match
  51. _ALL_ of filters.
  52. Ex: data = [ {'a':1, 'b':5, 'z': 'z'}, # True, return
  53. {'a':2, 'z': 'z'}, # True, return
  54. {'a':3, 'z': 'z'}, # True, return
  55. {'a':4, 'z': 'b'}, # FAILED, obj['z'] != obj['z']
  56. ]
  57. attribute = 'a'
  58. filters = {'z': 'z'}
  59. returns [1, 2, 3]
  60. '''
  61. if not issubclass(type(data), list):
  62. raise errors.AnsibleFilterError("|failed expects to filter on a List")
  63. if not attribute:
  64. raise errors.AnsibleFilterError("|failed expects attribute to be set")
  65. if filters is not None:
  66. if not issubclass(type(filters), dict):
  67. raise errors.AnsibleFilterError("|fialed expects filter to be a"
  68. " dict")
  69. retval = [FilterModule.get_attr(d, attribute) for d in data if (
  70. all([d[key] == filters[key] for key in filters]))]
  71. else:
  72. retval = [FilterModule.get_attr(d, attribute) for d in data]
  73. return retval
  74. @staticmethod
  75. def oo_select_keys(data, keys):
  76. ''' This returns a list, which contains the value portions for the keys
  77. Ex: data = { 'a':1, 'b':2, 'c':3 }
  78. keys = ['a', 'c']
  79. returns [1, 3]
  80. '''
  81. if not issubclass(type(data), dict):
  82. raise errors.AnsibleFilterError("|failed expects to filter on a dict")
  83. if not issubclass(type(keys), list):
  84. raise errors.AnsibleFilterError("|failed expects first param is a list")
  85. # Gather up the values for the list of keys passed in
  86. retval = [data[key] for key in keys]
  87. return retval
  88. @staticmethod
  89. def oo_prepend_strings_in_list(data, prepend):
  90. ''' This takes a list of strings and prepends a string to each item in the
  91. list
  92. Ex: data = ['cart', 'tree']
  93. prepend = 'apple-'
  94. returns ['apple-cart', 'apple-tree']
  95. '''
  96. if not issubclass(type(data), list):
  97. raise errors.AnsibleFilterError("|failed expects first param is a list")
  98. if not all(isinstance(x, basestring) for x in data):
  99. raise errors.AnsibleFilterError("|failed expects first param is a list"
  100. " of strings")
  101. retval = [prepend + s for s in data]
  102. return retval
  103. @staticmethod
  104. def oo_combine_key_value(data, joiner='='):
  105. '''Take a list of dict in the form of { 'key': 'value'} and
  106. arrange them as a list of strings ['key=value']
  107. '''
  108. if not issubclass(type(data), list):
  109. raise errors.AnsibleFilterError("|failed expects first param is a list")
  110. rval = []
  111. for item in data:
  112. rval.append("%s%s%s" % (item['key'], joiner, item['value']))
  113. return rval
  114. @staticmethod
  115. def oo_ami_selector(data, image_name):
  116. ''' This takes a list of amis and an image name and attempts to return
  117. the latest ami.
  118. '''
  119. if not issubclass(type(data), list):
  120. raise errors.AnsibleFilterError("|failed expects first param is a list")
  121. if not data:
  122. return None
  123. else:
  124. if image_name is None or not image_name.endswith('_*'):
  125. ami = sorted(data, key=itemgetter('name'), reverse=True)[0]
  126. return ami['ami_id']
  127. else:
  128. ami_info = [(ami, ami['name'].split('_')[-1]) for ami in data]
  129. ami = sorted(ami_info, key=itemgetter(1), reverse=True)[0][0]
  130. return ami['ami_id']
  131. @staticmethod
  132. def oo_ec2_volume_definition(data, host_type, docker_ephemeral=False):
  133. ''' This takes a dictionary of volume definitions and returns a valid ec2
  134. volume definition based on the host_type and the values in the
  135. dictionary.
  136. The dictionary should look similar to this:
  137. { 'master':
  138. { 'root':
  139. { 'volume_size': 10, 'device_type': 'gp2',
  140. 'iops': 500
  141. }
  142. },
  143. 'node':
  144. { 'root':
  145. { 'volume_size': 10, 'device_type': 'io1',
  146. 'iops': 1000
  147. },
  148. 'docker':
  149. { 'volume_size': 40, 'device_type': 'gp2',
  150. 'iops': 500, 'ephemeral': 'true'
  151. }
  152. }
  153. }
  154. '''
  155. if not issubclass(type(data), dict):
  156. raise errors.AnsibleFilterError("|failed expects first param is a dict")
  157. if host_type not in ['master', 'node']:
  158. raise errors.AnsibleFilterError("|failed expects either master or node"
  159. " host type")
  160. root_vol = data[host_type]['root']
  161. root_vol['device_name'] = '/dev/sda1'
  162. root_vol['delete_on_termination'] = True
  163. if root_vol['device_type'] != 'io1':
  164. root_vol.pop('iops', None)
  165. if host_type == 'node':
  166. docker_vol = data[host_type]['docker']
  167. docker_vol['device_name'] = '/dev/xvdb'
  168. docker_vol['delete_on_termination'] = True
  169. if docker_vol['device_type'] != 'io1':
  170. docker_vol.pop('iops', None)
  171. if docker_ephemeral:
  172. docker_vol.pop('device_type', None)
  173. docker_vol.pop('delete_on_termination', None)
  174. docker_vol['ephemeral'] = 'ephemeral0'
  175. return [root_vol, docker_vol]
  176. return [root_vol]
  177. @staticmethod
  178. def oo_split(string, separator=','):
  179. ''' This splits the input string into a list
  180. '''
  181. return string.split(separator)
  182. def filters(self):
  183. ''' returns a mapping of filters to methods '''
  184. return {
  185. "oo_select_keys": self.oo_select_keys,
  186. "oo_collect": self.oo_collect,
  187. "oo_flatten": self.oo_flatten,
  188. "oo_len": self.oo_len,
  189. "oo_pdb": self.oo_pdb,
  190. "oo_prepend_strings_in_list": self.oo_prepend_strings_in_list,
  191. "oo_ami_selector": self.oo_ami_selector,
  192. "oo_ec2_volume_definition": self.oo_ec2_volume_definition,
  193. "oo_combine_key_value": self.oo_combine_key_value,
  194. "oo_split": self.oo_split,
  195. }