mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
244 lines
8.0 KiB
Python
244 lines
8.0 KiB
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# This file is part of Ansible
|
|
#
|
|
# Ansible is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Ansible is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
DOCUMENTATION = """
|
|
---
|
|
module: vertica_role
|
|
version_added: '2.0'
|
|
short_description: Adds or removes Vertica database roles and assigns roles to them.
|
|
description:
|
|
- Adds or removes Vertica database role and, optionally, assign other roles.
|
|
options:
|
|
name:
|
|
description:
|
|
- Name of the role to add or remove.
|
|
required: true
|
|
assigned_roles:
|
|
description:
|
|
- Comma separated list of roles to assign to the role.
|
|
aliases: ['assigned_role']
|
|
required: false
|
|
default: null
|
|
state:
|
|
description:
|
|
- Whether to create C(present), drop C(absent) or lock C(locked) a role.
|
|
required: false
|
|
choices: ['present', 'absent']
|
|
default: present
|
|
db:
|
|
description:
|
|
- Name of the Vertica database.
|
|
required: false
|
|
default: null
|
|
cluster:
|
|
description:
|
|
- Name of the Vertica cluster.
|
|
required: false
|
|
default: localhost
|
|
port:
|
|
description:
|
|
- Vertica cluster port to connect to.
|
|
required: false
|
|
default: 5433
|
|
login_user:
|
|
description:
|
|
- The username used to authenticate with.
|
|
required: false
|
|
default: dbadmin
|
|
login_password:
|
|
description:
|
|
- The password used to authenticate with.
|
|
required: false
|
|
default: null
|
|
notes:
|
|
- The default authentication assumes that you are either logging in as or sudo'ing
|
|
to the C(dbadmin) account on the host.
|
|
- This module uses C(pyodbc), a Python ODBC database adapter. You must ensure
|
|
that C(unixODBC) and C(pyodbc) is installed on the host and properly configured.
|
|
- Configuring C(unixODBC) for Vertica requires C(Driver = /opt/vertica/lib64/libverticaodbc.so)
|
|
to be added to the C(Vertica) section of either C(/etc/odbcinst.ini) or C($HOME/.odbcinst.ini)
|
|
and both C(ErrorMessagesPath = /opt/vertica/lib64) and C(DriverManagerEncoding = UTF-16)
|
|
to be added to the C(Driver) section of either C(/etc/vertica.ini) or C($HOME/.vertica.ini).
|
|
requirements: [ 'unixODBC', 'pyodbc' ]
|
|
author: Dariusz Owczarek
|
|
"""
|
|
|
|
EXAMPLES = """
|
|
- name: creating a new vertica role
|
|
vertica_role: name=role_name db=db_name state=present
|
|
|
|
- name: creating a new vertica role with other role assigned
|
|
vertica_role: name=role_name assigned_role=other_role_name state=present
|
|
"""
|
|
|
|
try:
|
|
import pyodbc
|
|
except ImportError:
|
|
pyodbc_found = False
|
|
else:
|
|
pyodbc_found = True
|
|
|
|
class NotSupportedError(Exception):
|
|
pass
|
|
|
|
class CannotDropError(Exception):
|
|
pass
|
|
|
|
# module specific functions
|
|
|
|
def get_role_facts(cursor, role=''):
|
|
facts = {}
|
|
cursor.execute("""
|
|
select r.name, r.assigned_roles
|
|
from roles r
|
|
where (? = '' or r.name ilike ?)
|
|
""", role, role)
|
|
while True:
|
|
rows = cursor.fetchmany(100)
|
|
if not rows:
|
|
break
|
|
for row in rows:
|
|
role_key = row.name.lower()
|
|
facts[role_key] = {
|
|
'name': row.name,
|
|
'assigned_roles': []}
|
|
if row.assigned_roles:
|
|
facts[role_key]['assigned_roles'] = row.assigned_roles.replace(' ', '').split(',')
|
|
return facts
|
|
|
|
def update_roles(role_facts, cursor, role,
|
|
existing, required):
|
|
for assigned_role in set(existing) - set(required):
|
|
cursor.execute("revoke {0} from {1}".format(assigned_role, role))
|
|
for assigned_role in set(required) - set(existing):
|
|
cursor.execute("grant {0} to {1}".format(assigned_role, role))
|
|
|
|
def check(role_facts, role, assigned_roles):
|
|
role_key = role.lower()
|
|
if role_key not in role_facts:
|
|
return False
|
|
if assigned_roles and cmp(sorted(assigned_roles), sorted(role_facts[role_key]['assigned_roles'])) != 0:
|
|
return False
|
|
return True
|
|
|
|
def present(role_facts, cursor, role, assigned_roles):
|
|
role_key = role.lower()
|
|
if role_key not in role_facts:
|
|
cursor.execute("create role {0}".format(role))
|
|
update_roles(role_facts, cursor, role, [], assigned_roles)
|
|
role_facts.update(get_role_facts(cursor, role))
|
|
return True
|
|
else:
|
|
changed = False
|
|
if assigned_roles and cmp(sorted(assigned_roles), sorted(role_facts[role_key]['assigned_roles'])) != 0:
|
|
update_roles(role_facts, cursor, role,
|
|
role_facts[role_key]['assigned_roles'], assigned_roles)
|
|
changed = True
|
|
if changed:
|
|
role_facts.update(get_role_facts(cursor, role))
|
|
return changed
|
|
|
|
def absent(role_facts, cursor, role, assigned_roles):
|
|
role_key = role.lower()
|
|
if role_key in role_facts:
|
|
update_roles(role_facts, cursor, role,
|
|
role_facts[role_key]['assigned_roles'], [])
|
|
cursor.execute("drop role {0} cascade".format(role_facts[role_key]['name']))
|
|
del role_facts[role_key]
|
|
return True
|
|
else:
|
|
return False
|
|
|
|
# module logic
|
|
|
|
def main():
|
|
|
|
module = AnsibleModule(
|
|
argument_spec=dict(
|
|
role=dict(required=True, aliases=['name']),
|
|
assigned_roles=dict(default=None, aliases=['assigned_role']),
|
|
state=dict(default='present', choices=['absent', 'present']),
|
|
db=dict(default=None),
|
|
cluster=dict(default='localhost'),
|
|
port=dict(default='5433'),
|
|
login_user=dict(default='dbadmin'),
|
|
login_password=dict(default=None),
|
|
), supports_check_mode = True)
|
|
|
|
if not pyodbc_found:
|
|
module.fail_json(msg="The python pyodbc module is required.")
|
|
|
|
role = module.params['role']
|
|
assigned_roles = []
|
|
if module.params['assigned_roles']:
|
|
assigned_roles = module.params['assigned_roles'].split(',')
|
|
assigned_roles = filter(None, assigned_roles)
|
|
state = module.params['state']
|
|
db = ''
|
|
if module.params['db']:
|
|
db = module.params['db']
|
|
|
|
changed = False
|
|
|
|
try:
|
|
dsn = (
|
|
"Driver=Vertica;"
|
|
"Server={0};"
|
|
"Port={1};"
|
|
"Database={2};"
|
|
"User={3};"
|
|
"Password={4};"
|
|
"ConnectionLoadBalance={5}"
|
|
).format(module.params['cluster'], module.params['port'], db,
|
|
module.params['login_user'], module.params['login_password'], 'true')
|
|
db_conn = pyodbc.connect(dsn, autocommit=True)
|
|
cursor = db_conn.cursor()
|
|
except Exception, e:
|
|
module.fail_json(msg="Unable to connect to database: {0}.".format(e))
|
|
|
|
try:
|
|
role_facts = get_role_facts(cursor)
|
|
if module.check_mode:
|
|
changed = not check(role_facts, role, assigned_roles)
|
|
elif state == 'absent':
|
|
try:
|
|
changed = absent(role_facts, cursor, role, assigned_roles)
|
|
except pyodbc.Error, e:
|
|
module.fail_json(msg=str(e))
|
|
elif state == 'present':
|
|
try:
|
|
changed = present(role_facts, cursor, role, assigned_roles)
|
|
except pyodbc.Error, e:
|
|
module.fail_json(msg=str(e))
|
|
except NotSupportedError, e:
|
|
module.fail_json(msg=str(e), ansible_facts={'vertica_roles': role_facts})
|
|
except CannotDropError, e:
|
|
module.fail_json(msg=str(e), ansible_facts={'vertica_roles': role_facts})
|
|
except SystemExit:
|
|
# avoid catching this on python 2.4
|
|
raise
|
|
except Exception, e:
|
|
module.fail_json(msg=e)
|
|
|
|
module.exit_json(changed=changed, role=role, ansible_facts={'vertica_roles': role_facts})
|
|
|
|
# import ansible utilities
|
|
from ansible.module_utils.basic import *
|
|
if __name__ == '__main__':
|
|
main()
|