oo_filters.py 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. # vim: expandtab:tabstop=4:shiftwidth=4
  4. # pylint: disable=no-name-in-module, import-error, wrong-import-order, ungrouped-imports
  5. """
  6. Custom filters for use in openshift-ansible
  7. """
  8. import os
  9. import pdb
  10. import pkg_resources
  11. import re
  12. import json
  13. import yaml
  14. import random
  15. from ansible import errors
  16. from collections import Mapping
  17. from distutils.util import strtobool
  18. from distutils.version import LooseVersion
  19. from operator import itemgetter
  20. from ansible.parsing.yaml.dumper import AnsibleDumper
  21. from urlparse import urlparse
  22. from six import string_types
  23. HAS_OPENSSL = False
  24. try:
  25. import OpenSSL.crypto
  26. HAS_OPENSSL = True
  27. except ImportError:
  28. pass
  29. try:
  30. # ansible-2.2
  31. # ansible.utils.unicode.to_unicode is deprecated in ansible-2.2,
  32. # ansible.module_utils._text.to_text should be used instead.
  33. from ansible.module_utils._text import to_text
  34. except ImportError:
  35. # ansible-2.1
  36. from ansible.utils.unicode import to_unicode as to_text
  37. def oo_pdb(arg):
  38. """ This pops you into a pdb instance where arg is the data passed in
  39. from the filter.
  40. Ex: "{{ hostvars | oo_pdb }}"
  41. """
  42. pdb.set_trace()
  43. return arg
  44. def get_attr(data, attribute=None):
  45. """ This looks up dictionary attributes of the form a.b.c and returns
  46. the value.
  47. If the key isn't present, None is returned.
  48. Ex: data = {'a': {'b': {'c': 5}}}
  49. attribute = "a.b.c"
  50. returns 5
  51. """
  52. if not attribute:
  53. raise errors.AnsibleFilterError("|failed expects attribute to be set")
  54. ptr = data
  55. for attr in attribute.split('.'):
  56. if attr in ptr:
  57. ptr = ptr[attr]
  58. else:
  59. ptr = None
  60. break
  61. return ptr
  62. def oo_flatten(data):
  63. """ This filter plugin will flatten a list of lists
  64. """
  65. if not isinstance(data, list):
  66. raise errors.AnsibleFilterError("|failed expects to flatten a List")
  67. return [item for sublist in data for item in sublist]
  68. def oo_merge_dicts(first_dict, second_dict):
  69. """ Merge two dictionaries where second_dict values take precedence.
  70. Ex: first_dict={'a': 1, 'b': 2}
  71. second_dict={'b': 3, 'c': 4}
  72. returns {'a': 1, 'b': 3, 'c': 4}
  73. """
  74. if not isinstance(first_dict, dict) or not isinstance(second_dict, dict):
  75. raise errors.AnsibleFilterError("|failed expects to merge two dicts")
  76. merged = first_dict.copy()
  77. merged.update(second_dict)
  78. return merged
  79. def oo_merge_hostvars(hostvars, variables, inventory_hostname):
  80. """ Merge host and play variables.
  81. When ansible version is greater than or equal to 2.0.0,
  82. merge hostvars[inventory_hostname] with variables (ansible vars)
  83. otherwise merge hostvars with hostvars['inventory_hostname'].
  84. Ex: hostvars={'master1.example.com': {'openshift_variable': '3'},
  85. 'openshift_other_variable': '7'}
  86. variables={'openshift_other_variable': '6'}
  87. inventory_hostname='master1.example.com'
  88. returns {'openshift_variable': '3', 'openshift_other_variable': '7'}
  89. hostvars=<ansible.vars.hostvars.HostVars object> (Mapping)
  90. variables={'openshift_other_variable': '6'}
  91. inventory_hostname='master1.example.com'
  92. returns {'openshift_variable': '3', 'openshift_other_variable': '6'}
  93. """
  94. if not isinstance(hostvars, Mapping):
  95. raise errors.AnsibleFilterError("|failed expects hostvars is dictionary or object")
  96. if not isinstance(variables, dict):
  97. raise errors.AnsibleFilterError("|failed expects variables is a dictionary")
  98. if not isinstance(inventory_hostname, string_types):
  99. raise errors.AnsibleFilterError("|failed expects inventory_hostname is a string")
  100. # pylint: disable=no-member
  101. ansible_version = pkg_resources.get_distribution("ansible").version
  102. merged_hostvars = {}
  103. if LooseVersion(ansible_version) >= LooseVersion('2.0.0'):
  104. merged_hostvars = oo_merge_dicts(
  105. hostvars[inventory_hostname], variables)
  106. else:
  107. merged_hostvars = oo_merge_dicts(
  108. hostvars[inventory_hostname], hostvars)
  109. return merged_hostvars
  110. def oo_collect(data, attribute=None, filters=None):
  111. """ This takes a list of dict and collects all attributes specified into a
  112. list. If filter is specified then we will include all items that
  113. match _ALL_ of filters. If a dict entry is missing the key in a
  114. filter it will be excluded from the match.
  115. Ex: data = [ {'a':1, 'b':5, 'z': 'z'}, # True, return
  116. {'a':2, 'z': 'z'}, # True, return
  117. {'a':3, 'z': 'z'}, # True, return
  118. {'a':4, 'z': 'b'}, # FAILED, obj['z'] != obj['z']
  119. ]
  120. attribute = 'a'
  121. filters = {'z': 'z'}
  122. returns [1, 2, 3]
  123. """
  124. if not isinstance(data, list):
  125. raise errors.AnsibleFilterError("|failed expects to filter on a List")
  126. if not attribute:
  127. raise errors.AnsibleFilterError("|failed expects attribute to be set")
  128. if filters is not None:
  129. if not isinstance(filters, dict):
  130. raise errors.AnsibleFilterError("|failed expects filter to be a"
  131. " dict")
  132. retval = [get_attr(d, attribute) for d in data if (
  133. all([d.get(key, None) == filters[key] for key in filters]))]
  134. else:
  135. retval = [get_attr(d, attribute) for d in data]
  136. retval = [val for val in retval if val is not None]
  137. return retval
  138. def oo_select_keys_from_list(data, keys):
  139. """ This returns a list, which contains the value portions for the keys
  140. Ex: data = { 'a':1, 'b':2, 'c':3 }
  141. keys = ['a', 'c']
  142. returns [1, 3]
  143. """
  144. if not isinstance(data, list):
  145. raise errors.AnsibleFilterError("|failed expects to filter on a list")
  146. if not isinstance(keys, list):
  147. raise errors.AnsibleFilterError("|failed expects first param is a list")
  148. # Gather up the values for the list of keys passed in
  149. retval = [oo_select_keys(item, keys) for item in data]
  150. return oo_flatten(retval)
  151. def oo_select_keys(data, keys):
  152. """ This returns a list, which contains the value portions for the keys
  153. Ex: data = { 'a':1, 'b':2, 'c':3 }
  154. keys = ['a', 'c']
  155. returns [1, 3]
  156. """
  157. if not isinstance(data, Mapping):
  158. raise errors.AnsibleFilterError("|failed expects to filter on a dict or object")
  159. if not isinstance(keys, list):
  160. raise errors.AnsibleFilterError("|failed expects first param is a list")
  161. # Gather up the values for the list of keys passed in
  162. retval = [data[key] for key in keys if key in data]
  163. return retval
  164. def oo_prepend_strings_in_list(data, prepend):
  165. """ This takes a list of strings and prepends a string to each item in the
  166. list
  167. Ex: data = ['cart', 'tree']
  168. prepend = 'apple-'
  169. returns ['apple-cart', 'apple-tree']
  170. """
  171. if not isinstance(data, list):
  172. raise errors.AnsibleFilterError("|failed expects first param is a list")
  173. if not all(isinstance(x, string_types) for x in data):
  174. raise errors.AnsibleFilterError("|failed expects first param is a list"
  175. " of strings")
  176. retval = [prepend + s for s in data]
  177. return retval
  178. def oo_combine_key_value(data, joiner='='):
  179. """Take a list of dict in the form of { 'key': 'value'} and
  180. arrange them as a list of strings ['key=value']
  181. """
  182. if not isinstance(data, list):
  183. raise errors.AnsibleFilterError("|failed expects first param is a list")
  184. rval = []
  185. for item in data:
  186. rval.append("%s%s%s" % (item['key'], joiner, item['value']))
  187. return rval
  188. def oo_combine_dict(data, in_joiner='=', out_joiner=' '):
  189. """Take a dict in the form of { 'key': 'value', 'key': 'value' } and
  190. arrange them as a string 'key=value key=value'
  191. """
  192. if not isinstance(data, dict):
  193. # pylint: disable=line-too-long
  194. raise errors.AnsibleFilterError("|failed expects first param is a dict [oo_combine_dict]. Got %s. Type: %s" % (str(data), str(type(data))))
  195. return out_joiner.join([in_joiner.join([k, str(v)]) for k, v in data.items()])
  196. def oo_ami_selector(data, image_name):
  197. """ This takes a list of amis and an image name and attempts to return
  198. the latest ami.
  199. """
  200. if not isinstance(data, list):
  201. raise errors.AnsibleFilterError("|failed expects first param is a list")
  202. if not data:
  203. return None
  204. else:
  205. if image_name is None or not image_name.endswith('_*'):
  206. ami = sorted(data, key=itemgetter('name'), reverse=True)[0]
  207. return ami['ami_id']
  208. else:
  209. ami_info = [(ami, ami['name'].split('_')[-1]) for ami in data]
  210. ami = sorted(ami_info, key=itemgetter(1), reverse=True)[0][0]
  211. return ami['ami_id']
  212. def oo_ec2_volume_definition(data, host_type, docker_ephemeral=False):
  213. """ This takes a dictionary of volume definitions and returns a valid ec2
  214. volume definition based on the host_type and the values in the
  215. dictionary.
  216. The dictionary should look similar to this:
  217. { 'master':
  218. { 'root':
  219. { 'volume_size': 10, 'device_type': 'gp2',
  220. 'iops': 500
  221. },
  222. 'docker':
  223. { 'volume_size': 40, 'device_type': 'gp2',
  224. 'iops': 500, 'ephemeral': 'true'
  225. }
  226. },
  227. 'node':
  228. { 'root':
  229. { 'volume_size': 10, 'device_type': 'io1',
  230. 'iops': 1000
  231. },
  232. 'docker':
  233. { 'volume_size': 40, 'device_type': 'gp2',
  234. 'iops': 500, 'ephemeral': 'true'
  235. }
  236. }
  237. }
  238. """
  239. if not isinstance(data, dict):
  240. # pylint: disable=line-too-long
  241. raise errors.AnsibleFilterError("|failed expects first param is a dict [oo_ec2_volume_def]. Got %s. Type: %s" % (str(data), str(type(data))))
  242. if host_type not in ['master', 'node', 'etcd']:
  243. raise errors.AnsibleFilterError("|failed expects etcd, master or node"
  244. " as the host type")
  245. root_vol = data[host_type]['root']
  246. root_vol['device_name'] = '/dev/sda1'
  247. root_vol['delete_on_termination'] = True
  248. if root_vol['device_type'] != 'io1':
  249. root_vol.pop('iops', None)
  250. if host_type in ['master', 'node'] and 'docker' in data[host_type]:
  251. docker_vol = data[host_type]['docker']
  252. docker_vol['device_name'] = '/dev/xvdb'
  253. docker_vol['delete_on_termination'] = True
  254. if docker_vol['device_type'] != 'io1':
  255. docker_vol.pop('iops', None)
  256. if docker_ephemeral:
  257. docker_vol.pop('device_type', None)
  258. docker_vol.pop('delete_on_termination', None)
  259. docker_vol['ephemeral'] = 'ephemeral0'
  260. return [root_vol, docker_vol]
  261. elif host_type == 'etcd' and 'etcd' in data[host_type]:
  262. etcd_vol = data[host_type]['etcd']
  263. etcd_vol['device_name'] = '/dev/xvdb'
  264. etcd_vol['delete_on_termination'] = True
  265. if etcd_vol['device_type'] != 'io1':
  266. etcd_vol.pop('iops', None)
  267. return [root_vol, etcd_vol]
  268. return [root_vol]
  269. def oo_split(string, separator=','):
  270. """ This splits the input string into a list. If the input string is
  271. already a list we will return it as is.
  272. """
  273. if isinstance(string, list):
  274. return string
  275. return string.split(separator)
  276. def oo_haproxy_backend_masters(hosts, port):
  277. """ This takes an array of dicts and returns an array of dicts
  278. to be used as a backend for the haproxy role
  279. """
  280. servers = []
  281. for idx, host_info in enumerate(hosts):
  282. server = dict(name="master%s" % idx)
  283. server_ip = host_info['openshift']['common']['ip']
  284. server['address'] = "%s:%s" % (server_ip, port)
  285. server['opts'] = 'check'
  286. servers.append(server)
  287. return servers
  288. def oo_filter_list(data, filter_attr=None):
  289. """ This returns a list, which contains all items where filter_attr
  290. evaluates to true
  291. Ex: data = [ { a: 1, b: True },
  292. { a: 3, b: False },
  293. { a: 5, b: True } ]
  294. filter_attr = 'b'
  295. returns [ { a: 1, b: True },
  296. { a: 5, b: True } ]
  297. """
  298. if not isinstance(data, list):
  299. raise errors.AnsibleFilterError("|failed expects to filter on a list")
  300. if not isinstance(filter_attr, string_types):
  301. raise errors.AnsibleFilterError("|failed expects filter_attr is a str or unicode")
  302. # Gather up the values for the list of keys passed in
  303. return [x for x in data if filter_attr in x and x[filter_attr]]
  304. def oo_nodes_with_label(nodes, label, value=None):
  305. """ Filters a list of nodes by label and value (if provided)
  306. It handles labels that are in the following variables by priority:
  307. openshift_node_labels, cli_openshift_node_labels, openshift['node']['labels']
  308. Examples:
  309. data = ['a': {'openshift_node_labels': {'color': 'blue', 'size': 'M'}},
  310. 'b': {'openshift_node_labels': {'color': 'green', 'size': 'L'}},
  311. 'c': {'openshift_node_labels': {'size': 'S'}}]
  312. label = 'color'
  313. returns = ['a': {'openshift_node_labels': {'color': 'blue', 'size': 'M'}},
  314. 'b': {'openshift_node_labels': {'color': 'green', 'size': 'L'}}]
  315. data = ['a': {'openshift_node_labels': {'color': 'blue', 'size': 'M'}},
  316. 'b': {'openshift_node_labels': {'color': 'green', 'size': 'L'}},
  317. 'c': {'openshift_node_labels': {'size': 'S'}}]
  318. label = 'color'
  319. value = 'green'
  320. returns = ['b': {'labels': {'color': 'green', 'size': 'L'}}]
  321. Args:
  322. nodes (list[dict]): list of node to node variables
  323. label (str): label to filter `nodes` by
  324. value (Optional[str]): value of `label` to filter by Defaults
  325. to None.
  326. Returns:
  327. list[dict]: nodes filtered by label and value (if provided)
  328. """
  329. if not isinstance(nodes, list):
  330. raise errors.AnsibleFilterError("failed expects to filter on a list")
  331. if not isinstance(label, string_types):
  332. raise errors.AnsibleFilterError("failed expects label to be a string")
  333. if value is not None and not isinstance(value, string_types):
  334. raise errors.AnsibleFilterError("failed expects value to be a string")
  335. def label_filter(node):
  336. """ filter function for testing if node should be returned """
  337. if not isinstance(node, dict):
  338. raise errors.AnsibleFilterError("failed expects to filter on a list of dicts")
  339. if 'openshift_node_labels' in node:
  340. labels = node['openshift_node_labels']
  341. elif 'cli_openshift_node_labels' in node:
  342. labels = node['cli_openshift_node_labels']
  343. elif 'openshift' in node and 'node' in node['openshift'] and 'labels' in node['openshift']['node']:
  344. labels = node['openshift']['node']['labels']
  345. else:
  346. return False
  347. if isinstance(labels, string_types):
  348. labels = yaml.safe_load(labels)
  349. if not isinstance(labels, dict):
  350. raise errors.AnsibleFilterError(
  351. "failed expected node labels to be a dict or serializable to a dict"
  352. )
  353. return label in labels and (value is None or labels[label] == value)
  354. return [n for n in nodes if label_filter(n)]
  355. def oo_parse_heat_stack_outputs(data):
  356. """ Formats the HEAT stack output into a usable form
  357. The goal is to transform something like this:
  358. +---------------+-------------------------------------------------+
  359. | Property | Value |
  360. +---------------+-------------------------------------------------+
  361. | capabilities | [] | |
  362. | creation_time | 2015-06-26T12:26:26Z | |
  363. | description | OpenShift cluster | |
  364. | … | … |
  365. | outputs | [ |
  366. | | { |
  367. | | "output_value": "value_A" |
  368. | | "description": "This is the value of Key_A" |
  369. | | "output_key": "Key_A" |
  370. | | }, |
  371. | | { |
  372. | | "output_value": [ |
  373. | | "value_B1", |
  374. | | "value_B2" |
  375. | | ], |
  376. | | "description": "This is the value of Key_B" |
  377. | | "output_key": "Key_B" |
  378. | | }, |
  379. | | ] |
  380. | parameters | { |
  381. | … | … |
  382. +---------------+-------------------------------------------------+
  383. into something like this:
  384. {
  385. "Key_A": "value_A",
  386. "Key_B": [
  387. "value_B1",
  388. "value_B2"
  389. ]
  390. }
  391. """
  392. # Extract the “outputs” JSON snippet from the pretty-printed array
  393. in_outputs = False
  394. outputs = ''
  395. line_regex = re.compile(r'\|\s*(.*?)\s*\|\s*(.*?)\s*\|')
  396. for line in data['stdout_lines']:
  397. match = line_regex.match(line)
  398. if match:
  399. if match.group(1) == 'outputs':
  400. in_outputs = True
  401. elif match.group(1) != '':
  402. in_outputs = False
  403. if in_outputs:
  404. outputs += match.group(2)
  405. outputs = json.loads(outputs)
  406. # Revamp the “outputs” to put it in the form of a “Key: value” map
  407. revamped_outputs = {}
  408. for output in outputs:
  409. revamped_outputs[output['output_key']] = output['output_value']
  410. return revamped_outputs
  411. # pylint: disable=too-many-branches
  412. def oo_parse_named_certificates(certificates, named_certs_dir, internal_hostnames):
  413. """ Parses names from list of certificate hashes.
  414. Ex: certificates = [{ "certfile": "/root/custom1.crt",
  415. "keyfile": "/root/custom1.key",
  416. "cafile": "/root/custom-ca1.crt" },
  417. { "certfile": "custom2.crt",
  418. "keyfile": "custom2.key",
  419. "cafile": "custom-ca2.crt" }]
  420. returns [{ "certfile": "/etc/origin/master/named_certificates/custom1.crt",
  421. "keyfile": "/etc/origin/master/named_certificates/custom1.key",
  422. "cafile": "/etc/origin/master/named_certificates/custom-ca1.crt",
  423. "names": [ "public-master-host.com",
  424. "other-master-host.com" ] },
  425. { "certfile": "/etc/origin/master/named_certificates/custom2.crt",
  426. "keyfile": "/etc/origin/master/named_certificates/custom2.key",
  427. "cafile": "/etc/origin/master/named_certificates/custom-ca-2.crt",
  428. "names": [ "some-hostname.com" ] }]
  429. """
  430. if not isinstance(named_certs_dir, string_types):
  431. raise errors.AnsibleFilterError("|failed expects named_certs_dir is str or unicode")
  432. if not isinstance(internal_hostnames, list):
  433. raise errors.AnsibleFilterError("|failed expects internal_hostnames is list")
  434. if not HAS_OPENSSL:
  435. raise errors.AnsibleFilterError("|missing OpenSSL python bindings")
  436. for certificate in certificates:
  437. if 'names' in certificate.keys():
  438. continue
  439. else:
  440. certificate['names'] = []
  441. if not os.path.isfile(certificate['certfile']) or not os.path.isfile(certificate['keyfile']):
  442. raise errors.AnsibleFilterError("|certificate and/or key does not exist '%s', '%s'" %
  443. (certificate['certfile'], certificate['keyfile']))
  444. try:
  445. st_cert = open(certificate['certfile'], 'rt').read()
  446. cert = OpenSSL.crypto.load_certificate(OpenSSL.crypto.FILETYPE_PEM, st_cert)
  447. certificate['names'].append(str(cert.get_subject().commonName.decode()))
  448. for i in range(cert.get_extension_count()):
  449. if cert.get_extension(i).get_short_name() == 'subjectAltName':
  450. for name in str(cert.get_extension(i)).replace('DNS:', '').split(', '):
  451. certificate['names'].append(name)
  452. except Exception:
  453. raise errors.AnsibleFilterError(("|failed to parse certificate '%s', " % certificate['certfile'] +
  454. "please specify certificate names in host inventory"))
  455. certificate['names'] = list(set(certificate['names']))
  456. if 'cafile' not in certificate:
  457. certificate['names'] = [name for name in certificate['names'] if name not in internal_hostnames]
  458. if not certificate['names']:
  459. raise errors.AnsibleFilterError(("|failed to parse certificate '%s' or " % certificate['certfile'] +
  460. "detected a collision with internal hostname, please specify " +
  461. "certificate names in host inventory"))
  462. for certificate in certificates:
  463. # Update paths for configuration
  464. certificate['certfile'] = os.path.join(named_certs_dir, os.path.basename(certificate['certfile']))
  465. certificate['keyfile'] = os.path.join(named_certs_dir, os.path.basename(certificate['keyfile']))
  466. if 'cafile' in certificate:
  467. certificate['cafile'] = os.path.join(named_certs_dir, os.path.basename(certificate['cafile']))
  468. return certificates
  469. def oo_pretty_print_cluster(data, prefix='tag_'):
  470. """ Read a subset of hostvars and build a summary of the cluster
  471. in the following layout:
  472. "c_id": {
  473. "master": {
  474. "default": [
  475. { "name": "c_id-master-12345", "public IP": "172.16.0.1", "private IP": "192.168.0.1" }
  476. ]
  477. "node": {
  478. "infra": [
  479. { "name": "c_id-node-infra-23456", "public IP": "172.16.0.2", "private IP": "192.168.0.2" }
  480. ],
  481. "compute": [
  482. { "name": "c_id-node-compute-23456", "public IP": "172.16.0.3", "private IP": "192.168.0.3" },
  483. ...
  484. ]
  485. }
  486. """
  487. def _get_tag_value(tags, key):
  488. """ Extract values of a map implemented as a set.
  489. Ex: tags = { 'tag_foo_value1', 'tag_bar_value2', 'tag_baz_value3' }
  490. key = 'bar'
  491. returns 'value2'
  492. """
  493. for tag in tags:
  494. if tag[:len(prefix) + len(key)] == prefix + key:
  495. return tag[len(prefix) + len(key) + 1:]
  496. raise KeyError(key)
  497. def _add_host(clusters,
  498. clusterid,
  499. host_type,
  500. sub_host_type,
  501. host):
  502. """ Add a new host in the clusters data structure """
  503. if clusterid not in clusters:
  504. clusters[clusterid] = {}
  505. if host_type not in clusters[clusterid]:
  506. clusters[clusterid][host_type] = {}
  507. if sub_host_type not in clusters[clusterid][host_type]:
  508. clusters[clusterid][host_type][sub_host_type] = []
  509. clusters[clusterid][host_type][sub_host_type].append(host)
  510. clusters = {}
  511. for host in data:
  512. try:
  513. _add_host(clusters=clusters,
  514. clusterid=_get_tag_value(host['group_names'], 'clusterid'),
  515. host_type=_get_tag_value(host['group_names'], 'host-type'),
  516. sub_host_type=_get_tag_value(host['group_names'], 'sub-host-type'),
  517. host={'name': host['inventory_hostname'],
  518. 'public IP': host['oo_public_ipv4'],
  519. 'private IP': host['oo_private_ipv4']})
  520. except KeyError:
  521. pass
  522. return clusters
  523. def oo_generate_secret(num_bytes):
  524. """ generate a session secret """
  525. if not isinstance(num_bytes, int):
  526. raise errors.AnsibleFilterError("|failed expects num_bytes is int")
  527. secret = os.urandom(num_bytes)
  528. return secret.encode('base-64').strip()
  529. def to_padded_yaml(data, level=0, indent=2, **kw):
  530. """ returns a yaml snippet padded to match the indent level you specify """
  531. if data in [None, ""]:
  532. return ""
  533. try:
  534. transformed = yaml.dump(data, indent=indent, allow_unicode=True,
  535. default_flow_style=False,
  536. Dumper=AnsibleDumper, **kw)
  537. padded = "\n".join([" " * level * indent + line for line in transformed.splitlines()])
  538. return to_text("\n{0}".format(padded))
  539. except Exception as my_e:
  540. raise errors.AnsibleFilterError('Failed to convert: %s' % my_e)
  541. def oo_openshift_env(hostvars):
  542. ''' Return facts which begin with "openshift_" and translate
  543. legacy facts to their openshift_env counterparts.
  544. Ex: hostvars = {'openshift_fact': 42,
  545. 'theyre_taking_the_hobbits_to': 'isengard'}
  546. returns = {'openshift_fact': 42}
  547. '''
  548. if not issubclass(type(hostvars), dict):
  549. raise errors.AnsibleFilterError("|failed expects hostvars is a dict")
  550. facts = {}
  551. regex = re.compile('^openshift_.*')
  552. for key in hostvars:
  553. if regex.match(key):
  554. facts[key] = hostvars[key]
  555. migrations = {'openshift_router_selector': 'openshift_hosted_router_selector',
  556. 'openshift_registry_selector': 'openshift_hosted_registry_selector'}
  557. for old_fact, new_fact in migrations.items():
  558. if old_fact in facts and new_fact not in facts:
  559. facts[new_fact] = facts[old_fact]
  560. return facts
  561. # pylint: disable=too-many-branches, too-many-nested-blocks
  562. def oo_persistent_volumes(hostvars, groups, persistent_volumes=None):
  563. """ Generate list of persistent volumes based on oo_openshift_env
  564. storage options set in host variables.
  565. """
  566. if not issubclass(type(hostvars), dict):
  567. raise errors.AnsibleFilterError("|failed expects hostvars is a dict")
  568. if not issubclass(type(groups), dict):
  569. raise errors.AnsibleFilterError("|failed expects groups is a dict")
  570. if persistent_volumes is not None and not issubclass(type(persistent_volumes), list):
  571. raise errors.AnsibleFilterError("|failed expects persistent_volumes is a list")
  572. if persistent_volumes is None:
  573. persistent_volumes = []
  574. if 'hosted' in hostvars['openshift']:
  575. for component in hostvars['openshift']['hosted']:
  576. if 'storage' in hostvars['openshift']['hosted'][component]:
  577. params = hostvars['openshift']['hosted'][component]['storage']
  578. kind = params['kind']
  579. create_pv = params['create_pv']
  580. if kind is not None and create_pv:
  581. if kind == 'nfs':
  582. host = params['host']
  583. if host is None:
  584. if 'oo_nfs_to_config' in groups and len(groups['oo_nfs_to_config']) > 0:
  585. host = groups['oo_nfs_to_config'][0]
  586. else:
  587. raise errors.AnsibleFilterError("|failed no storage host detected")
  588. directory = params['nfs']['directory']
  589. volume = params['volume']['name']
  590. path = directory + '/' + volume
  591. size = params['volume']['size']
  592. access_modes = params['access']['modes']
  593. persistent_volume = dict(
  594. name="{0}-volume".format(volume),
  595. capacity=size,
  596. access_modes=access_modes,
  597. storage=dict(
  598. nfs=dict(
  599. server=host,
  600. path=path)))
  601. persistent_volumes.append(persistent_volume)
  602. elif kind == 'openstack':
  603. volume = params['volume']['name']
  604. size = params['volume']['size']
  605. access_modes = params['access']['modes']
  606. filesystem = params['openstack']['filesystem']
  607. volume_id = params['openstack']['volumeID']
  608. persistent_volume = dict(
  609. name="{0}-volume".format(volume),
  610. capacity=size,
  611. access_modes=access_modes,
  612. storage=dict(
  613. cinder=dict(
  614. fsType=filesystem,
  615. volumeID=volume_id)))
  616. persistent_volumes.append(persistent_volume)
  617. elif not (kind == 'object' or kind == 'dynamic'):
  618. msg = "|failed invalid storage kind '{0}' for component '{1}'".format(
  619. kind,
  620. component)
  621. raise errors.AnsibleFilterError(msg)
  622. return persistent_volumes
  623. def oo_persistent_volume_claims(hostvars, persistent_volume_claims=None):
  624. """ Generate list of persistent volume claims based on oo_openshift_env
  625. storage options set in host variables.
  626. """
  627. if not issubclass(type(hostvars), dict):
  628. raise errors.AnsibleFilterError("|failed expects hostvars is a dict")
  629. if persistent_volume_claims is not None and not issubclass(type(persistent_volume_claims), list):
  630. raise errors.AnsibleFilterError("|failed expects persistent_volume_claims is a list")
  631. if persistent_volume_claims is None:
  632. persistent_volume_claims = []
  633. if 'hosted' in hostvars['openshift']:
  634. for component in hostvars['openshift']['hosted']:
  635. if 'storage' in hostvars['openshift']['hosted'][component]:
  636. params = hostvars['openshift']['hosted'][component]['storage']
  637. kind = params['kind']
  638. create_pv = params['create_pv']
  639. create_pvc = params['create_pvc']
  640. if kind not in [None, 'object'] and create_pv and create_pvc:
  641. volume = params['volume']['name']
  642. size = params['volume']['size']
  643. access_modes = params['access']['modes']
  644. persistent_volume_claim = dict(
  645. name="{0}-claim".format(volume),
  646. capacity=size,
  647. access_modes=access_modes)
  648. persistent_volume_claims.append(persistent_volume_claim)
  649. return persistent_volume_claims
  650. def oo_31_rpm_rename_conversion(rpms, openshift_version=None):
  651. """ Filters a list of 3.0 rpms and return the corresponding 3.1 rpms
  652. names with proper version (if provided)
  653. If 3.1 rpms are passed in they will only be augmented with the
  654. correct version. This is important for hosts that are running both
  655. Masters and Nodes.
  656. """
  657. if not isinstance(rpms, list):
  658. raise errors.AnsibleFilterError("failed expects to filter on a list")
  659. if openshift_version is not None and not isinstance(openshift_version, string_types):
  660. raise errors.AnsibleFilterError("failed expects openshift_version to be a string")
  661. rpms_31 = []
  662. for rpm in rpms:
  663. if 'atomic' not in rpm:
  664. rpm = rpm.replace("openshift", "atomic-openshift")
  665. if openshift_version:
  666. rpm = rpm + openshift_version
  667. rpms_31.append(rpm)
  668. return rpms_31
  669. def oo_pods_match_component(pods, deployment_type, component):
  670. """ Filters a list of Pods and returns the ones matching the deployment_type and component
  671. """
  672. if not isinstance(pods, list):
  673. raise errors.AnsibleFilterError("failed expects to filter on a list")
  674. if not isinstance(deployment_type, string_types):
  675. raise errors.AnsibleFilterError("failed expects deployment_type to be a string")
  676. if not isinstance(component, string_types):
  677. raise errors.AnsibleFilterError("failed expects component to be a string")
  678. image_prefix = 'openshift/origin-'
  679. if deployment_type in ['enterprise', 'online', 'openshift-enterprise']:
  680. image_prefix = 'openshift3/ose-'
  681. elif deployment_type == 'atomic-enterprise':
  682. image_prefix = 'aep3_beta/aep-'
  683. matching_pods = []
  684. image_regex = image_prefix + component + r'.*'
  685. for pod in pods:
  686. for container in pod['spec']['containers']:
  687. if re.search(image_regex, container['image']):
  688. matching_pods.append(pod)
  689. break # stop here, don't add a pod more than once
  690. return matching_pods
  691. def oo_get_hosts_from_hostvars(hostvars, hosts):
  692. """ Return a list of hosts from hostvars """
  693. retval = []
  694. for host in hosts:
  695. try:
  696. retval.append(hostvars[host])
  697. except errors.AnsibleError:
  698. # host does not exist
  699. pass
  700. return retval
  701. def oo_image_tag_to_rpm_version(version, include_dash=False):
  702. """ Convert an image tag string to an RPM version if necessary
  703. Empty strings and strings that are already in rpm version format
  704. are ignored. Also remove non semantic version components.
  705. Ex. v3.2.0.10 -> -3.2.0.10
  706. v1.2.0-rc1 -> -1.2.0
  707. """
  708. if not isinstance(version, string_types):
  709. raise errors.AnsibleFilterError("|failed expects a string or unicode")
  710. if version.startswith("v"):
  711. version = version[1:]
  712. # Strip release from requested version, we no longer support this.
  713. version = version.split('-')[0]
  714. if include_dash and version and not version.startswith("-"):
  715. version = "-" + version
  716. return version
  717. def oo_hostname_from_url(url):
  718. """ Returns the hostname contained in a URL
  719. Ex: https://ose3-master.example.com/v1/api -> ose3-master.example.com
  720. """
  721. if not isinstance(url, string_types):
  722. raise errors.AnsibleFilterError("|failed expects a string or unicode")
  723. parse_result = urlparse(url)
  724. if parse_result.netloc != '':
  725. return parse_result.netloc
  726. else:
  727. # netloc wasn't parsed, assume url was missing scheme and path
  728. return parse_result.path
  729. # pylint: disable=invalid-name, unused-argument
  730. def oo_openshift_loadbalancer_frontends(
  731. api_port, servers_hostvars, use_nuage=False, nuage_rest_port=None):
  732. """TODO: Document me."""
  733. loadbalancer_frontends = [{'name': 'atomic-openshift-api',
  734. 'mode': 'tcp',
  735. 'options': ['tcplog'],
  736. 'binds': ["*:{0}".format(api_port)],
  737. 'default_backend': 'atomic-openshift-api'}]
  738. if bool(strtobool(str(use_nuage))) and nuage_rest_port is not None:
  739. loadbalancer_frontends.append({'name': 'nuage-monitor',
  740. 'mode': 'tcp',
  741. 'options': ['tcplog'],
  742. 'binds': ["*:{0}".format(nuage_rest_port)],
  743. 'default_backend': 'nuage-monitor'})
  744. return loadbalancer_frontends
  745. # pylint: disable=invalid-name
  746. def oo_openshift_loadbalancer_backends(
  747. api_port, servers_hostvars, use_nuage=False, nuage_rest_port=None):
  748. """TODO: Document me."""
  749. loadbalancer_backends = [{'name': 'atomic-openshift-api',
  750. 'mode': 'tcp',
  751. 'option': 'tcplog',
  752. 'balance': 'source',
  753. 'servers': oo_haproxy_backend_masters(servers_hostvars, api_port)}]
  754. if bool(strtobool(str(use_nuage))) and nuage_rest_port is not None:
  755. # pylint: disable=line-too-long
  756. loadbalancer_backends.append({'name': 'nuage-monitor',
  757. 'mode': 'tcp',
  758. 'option': 'tcplog',
  759. 'balance': 'source',
  760. 'servers': oo_haproxy_backend_masters(servers_hostvars, nuage_rest_port)})
  761. return loadbalancer_backends
  762. def oo_chomp_commit_offset(version):
  763. """Chomp any "+git.foo" commit offset string from the given `version`
  764. and return the modified version string.
  765. Ex:
  766. - chomp_commit_offset(None) => None
  767. - chomp_commit_offset(1337) => "1337"
  768. - chomp_commit_offset("v3.4.0.15+git.derp") => "v3.4.0.15"
  769. - chomp_commit_offset("v3.4.0.15") => "v3.4.0.15"
  770. - chomp_commit_offset("v1.3.0+52492b4") => "v1.3.0"
  771. """
  772. if version is None:
  773. return version
  774. else:
  775. # Stringify, just in case it's a Number type. Split by '+' and
  776. # return the first split. No concerns about strings without a
  777. # '+', .split() returns an array of the original string.
  778. return str(version).split('+')[0]
  779. def oo_random_word(length, source='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'):
  780. """Generates a random string of given length from a set of alphanumeric characters.
  781. The default source uses [a-z][A-Z][0-9]
  782. Ex:
  783. - oo_random_word(3) => aB9
  784. - oo_random_word(4, source='012') => 0123
  785. """
  786. return ''.join(random.choice(source) for i in range(length))
  787. class FilterModule(object):
  788. """ Custom ansible filter mapping """
  789. # pylint: disable=no-self-use, too-few-public-methods
  790. def filters(self):
  791. """ returns a mapping of filters to methods """
  792. return {
  793. "oo_select_keys": oo_select_keys,
  794. "oo_select_keys_from_list": oo_select_keys_from_list,
  795. "oo_chomp_commit_offset": oo_chomp_commit_offset,
  796. "oo_collect": oo_collect,
  797. "oo_flatten": oo_flatten,
  798. "oo_pdb": oo_pdb,
  799. "oo_prepend_strings_in_list": oo_prepend_strings_in_list,
  800. "oo_ami_selector": oo_ami_selector,
  801. "oo_ec2_volume_definition": oo_ec2_volume_definition,
  802. "oo_combine_key_value": oo_combine_key_value,
  803. "oo_combine_dict": oo_combine_dict,
  804. "oo_split": oo_split,
  805. "oo_filter_list": oo_filter_list,
  806. "oo_parse_heat_stack_outputs": oo_parse_heat_stack_outputs,
  807. "oo_parse_named_certificates": oo_parse_named_certificates,
  808. "oo_haproxy_backend_masters": oo_haproxy_backend_masters,
  809. "oo_pretty_print_cluster": oo_pretty_print_cluster,
  810. "oo_generate_secret": oo_generate_secret,
  811. "oo_nodes_with_label": oo_nodes_with_label,
  812. "oo_openshift_env": oo_openshift_env,
  813. "oo_persistent_volumes": oo_persistent_volumes,
  814. "oo_persistent_volume_claims": oo_persistent_volume_claims,
  815. "oo_31_rpm_rename_conversion": oo_31_rpm_rename_conversion,
  816. "oo_pods_match_component": oo_pods_match_component,
  817. "oo_get_hosts_from_hostvars": oo_get_hosts_from_hostvars,
  818. "oo_image_tag_to_rpm_version": oo_image_tag_to_rpm_version,
  819. "oo_merge_dicts": oo_merge_dicts,
  820. "oo_hostname_from_url": oo_hostname_from_url,
  821. "oo_merge_hostvars": oo_merge_hostvars,
  822. "oo_openshift_loadbalancer_frontends": oo_openshift_loadbalancer_frontends,
  823. "oo_openshift_loadbalancer_backends": oo_openshift_loadbalancer_backends,
  824. "to_padded_yaml": to_padded_yaml,
  825. "oo_random_word": oo_random_word
  826. }