oo_option.py 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. #!/usr/bin/env python2
  2. # -*- coding: utf-8 -*-
  3. # vim: expandtab:tabstop=4:shiftwidth=4
  4. '''
  5. oo_option lookup plugin for openshift-ansible
  6. Usage:
  7. - debug:
  8. msg: "{{ lookup('oo_option', '<key>') | default('<default_value>', True) }}"
  9. This returns, by order of priority:
  10. * if it exists, the `cli_<key>` ansible variable. This variable is set by `bin/cluster --option <key>=<value> …`
  11. * if it exists, the envirnoment variable named `<key>`
  12. * if none of the above conditions are met, empty string is returned
  13. '''
  14. import os
  15. # pylint: disable=no-name-in-module,import-error,unused-argument,unused-variable,super-init-not-called,too-few-public-methods,missing-docstring
  16. try:
  17. # ansible-2.0
  18. from ansible.plugins.lookup import LookupBase
  19. except ImportError:
  20. # ansible-1.9.x
  21. class LookupBase(object):
  22. def __init__(self, basedir=None, runner=None, **kwargs):
  23. self.runner = runner
  24. self.basedir = self.runner.basedir
  25. def get_basedir(self, variables):
  26. return self.basedir
  27. # pylint: disable=no-name-in-module,import-error
  28. try:
  29. # ansible-2.0
  30. from ansible import template
  31. except ImportError:
  32. # ansible 1.9.x
  33. from ansible.utils import template
  34. # Reason: disable too-few-public-methods because the `run` method is the only
  35. # one required by the Ansible API
  36. # Status: permanently disabled
  37. # pylint: disable=too-few-public-methods
  38. class LookupModule(LookupBase):
  39. ''' oo_option lookup plugin main class '''
  40. # Reason: disable unused-argument because Ansible is calling us with many
  41. # parameters we are not interested in.
  42. # The lookup plugins of Ansible have this kwargs “catch-all” parameter
  43. # which is not used
  44. # Status: permanently disabled unless Ansible API evolves
  45. # pylint: disable=unused-argument
  46. def __init__(self, basedir=None, **kwargs):
  47. ''' Constructor '''
  48. self.basedir = basedir
  49. # Reason: disable unused-argument because Ansible is calling us with many
  50. # parameters we are not interested in.
  51. # The lookup plugins of Ansible have this kwargs “catch-all” parameter
  52. # which is not used
  53. # Status: permanently disabled unless Ansible API evolves
  54. # pylint: disable=unused-argument
  55. def run(self, terms, inject=None, **kwargs):
  56. ''' Main execution path '''
  57. try:
  58. terms = template.template(self.basedir, terms, inject)
  59. # Reason: disable broad-except to really ignore any potential exception
  60. # This is inspired by the upstream "env" lookup plugin:
  61. # https://github.com/ansible/ansible/blob/devel/v1/ansible/runner/lookup_plugins/env.py#L29
  62. # pylint: disable=broad-except
  63. except Exception:
  64. pass
  65. if isinstance(terms, basestring):
  66. terms = [terms]
  67. ret = []
  68. for term in terms:
  69. option_name = term.split()[0]
  70. cli_key = 'cli_' + option_name
  71. if inject and cli_key in inject:
  72. ret.append(inject[cli_key])
  73. elif option_name in os.environ:
  74. ret.append(os.environ[option_name])
  75. else:
  76. ret.append('')
  77. return ret