community.general/lib/ansible/modules/database/postgresql/postgresql_lang.py

343 lines
12 KiB
Python
Raw Normal View History

2014-10-17 14:23:25 +00:00
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
2014-10-17 14:23:25 +00:00
# (c) 2014, Jens Depuydt <http://www.jensd.be>
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
from __future__ import absolute_import, division, print_function
__metaclass__ = type
2017-08-16 03:16:38 +00:00
ANSIBLE_METADATA = {'metadata_version': '1.1',
'status': ['preview'],
'supported_by': 'community'}
2016-12-06 10:35:25 +00:00
2014-10-17 14:23:25 +00:00
DOCUMENTATION = '''
---
module: postgresql_lang
short_description: Adds, removes or changes procedural languages with a PostgreSQL database.
description:
2017-01-27 23:20:31 +00:00
- Adds, removes or changes procedural languages with a PostgreSQL database.
2014-10-17 14:23:25 +00:00
- This module allows you to add a language, remote a language or change the trust
2017-01-27 23:20:31 +00:00
relationship with a PostgreSQL database. The module can be used on the machine
2014-10-17 14:23:25 +00:00
where executed or on a remote host.
- When removing a language from a database, it is possible that dependencies prevent
2017-01-27 23:20:31 +00:00
the database from being removed. In that case, you can specify casade to
automatically drop objects that depend on the language (such as functions in the
language). In case the language can't be deleted because it is required by the
2014-10-17 14:23:25 +00:00
database system, you can specify fail_on_drop=no to ignore the error.
- Be carefull when marking a language as trusted since this could be a potential
2017-01-27 23:20:31 +00:00
security breach. Untrusted languages allow only users with the PostgreSQL superuser
2014-10-17 14:23:25 +00:00
privilege to use this language to create new functions.
version_added: "1.7"
options:
lang:
description:
- name of the procedural language to add, remove or change
required: true
trust:
description:
- make this language trusted for the selected db
type: bool
default: 'no'
2014-10-17 14:23:25 +00:00
db:
description:
2017-01-27 23:20:31 +00:00
- name of database where the language will be added, removed or changed
2014-10-17 14:23:25 +00:00
force_trust:
description:
- marks the language as trusted, even if it's marked as untrusted in pg_pltemplate.
2017-01-27 23:20:31 +00:00
- use with care!
type: bool
default: 'no'
2014-10-17 14:23:25 +00:00
fail_on_drop:
description:
- if C(yes), fail when removing a language. Otherwise just log and continue
- in some cases, it is not possible to remove a language (used by the db-system). When dependencies block the removal, consider using C(cascade).
type: bool
2014-10-17 14:23:25 +00:00
default: 'yes'
cascade:
description:
2017-01-27 23:20:31 +00:00
- when dropping a language, also delete object that depend on this language.
- only used when C(state=absent).
type: bool
default: 'no'
2014-10-17 14:23:25 +00:00
port:
description:
- Database port to connect to.
default: 5432
login_user:
description:
- User used to authenticate with PostgreSQL
default: postgres
login_password:
description:
- Password used to authenticate with PostgreSQL (must match C(login_user))
login_host:
description:
- Host running PostgreSQL where you want to execute the actions.
default: localhost
session_role:
version_added: "2.8"
description: |
Switch to session_role after connecting. The specified session_role must be a role that the current login_user is a member of.
Permissions checking for SQL commands is carried out as though the session_role were the one that had logged in originally.
2014-10-17 14:23:25 +00:00
state:
description:
- The state of the language for the selected database
default: present
choices: [ "present", "absent" ]
login_unix_socket:
description:
- Path to a Unix domain socket for local connections.
version_added: '2.8'
ssl_mode:
description:
- Determines whether or with what priority a secure SSL TCP/IP connection
will be negotiated with the server.
- See U(https://www.postgresql.org/docs/current/static/libpq-ssl.html) for
more information on the modes.
- Default of C(prefer) matches libpq default.
default: prefer
choices: ["disable", "allow", "prefer", "require", "verify-ca", "verify-full"]
version_added: '2.8'
ssl_rootcert:
description:
- Specifies the name of a file containing SSL certificate authority (CA)
certificate(s). If the file exists, the server's certificate will be
verified to be signed by one of these authorities.
version_added: '2.8'
2014-10-17 14:23:25 +00:00
notes:
- The default authentication assumes that you are either logging in as or
sudo'ing to the postgres account on the host.
- This module uses psycopg2, a Python PostgreSQL database adapter. You must
ensure that psycopg2 is installed on the host before using this module. If
the remote host is the PostgreSQL server (which is the default case), then
PostgreSQL must also be installed on the remote host. For Ubuntu-based
systems, install the postgresql, libpq-dev, and python-psycopg2 packages
on the remote host before using this module.
requirements: [ psycopg2 ]
author:
- "Jens Depuydt (@jensdepuydt)"
- "Thomas O'Donnell (@andytom)"
2014-10-17 14:23:25 +00:00
'''
EXAMPLES = '''
# Add language pltclu to database testdb if it doesn't exist:
2017-01-27 23:20:31 +00:00
- postgresql_lang db=testdb lang=pltclu state=present
2014-10-17 14:23:25 +00:00
# Add language pltclu to database testdb if it doesn't exist and mark it as trusted:
# Marks the language as trusted if it exists but isn't trusted yet
# force_trust makes sure that the language will be marked as trusted
2016-12-01 14:03:39 +00:00
- postgresql_lang:
db: testdb
lang: pltclu
state: present
trust: yes
force_trust: yes
2014-10-17 14:23:25 +00:00
# Remove language pltclu from database testdb:
2016-12-01 14:03:39 +00:00
- postgresql_lang:
db: testdb
lang: pltclu
state: absent
2014-10-17 14:23:25 +00:00
# Remove language pltclu from database testdb and remove all dependencies:
2016-12-01 14:03:39 +00:00
- postgresql_lang:
db: testdb
lang: pltclu
state: absent
cascade: yes
2014-10-17 14:23:25 +00:00
# Remove language c from database testdb but ignore errors if something prevents the removal:
2016-12-01 14:03:39 +00:00
- postgresql_lang:
db: testdb
lang: pltclu
state: absent
fail_on_drop: no
2014-10-17 14:23:25 +00:00
'''
import traceback
2014-10-17 14:23:25 +00:00
PSYCOPG2_IMP_ERR = None
2014-10-17 14:23:25 +00:00
try:
import psycopg2
except ImportError:
PSYCOPG2_IMP_ERR = traceback.format_exc()
2014-10-17 14:23:25 +00:00
postgresqldb_found = False
else:
postgresqldb_found = True
from ansible.module_utils.basic import AnsibleModule, missing_required_lib
from ansible.module_utils.six import iteritems
from ansible.module_utils._text import to_native
from ansible.module_utils.database import pg_quote_identifier
2014-10-17 14:23:25 +00:00
def lang_exists(cursor, lang):
"""Checks if language exists for db"""
query = "SELECT lanname FROM pg_language WHERE lanname='%s'" % lang
cursor.execute(query)
return cursor.rowcount > 0
2014-10-17 14:23:25 +00:00
def lang_istrusted(cursor, lang):
"""Checks if language is trusted for db"""
query = "SELECT lanpltrusted FROM pg_language WHERE lanname='%s'" % lang
cursor.execute(query)
return cursor.fetchone()[0]
2014-10-17 14:23:25 +00:00
def lang_altertrust(cursor, lang, trust):
"""Changes if language is trusted for db"""
query = "UPDATE pg_language SET lanpltrusted = %s WHERE lanname=%s"
cursor.execute(query, (trust, lang))
return True
2014-10-17 14:23:25 +00:00
def lang_add(cursor, lang, trust):
"""Adds language for db"""
if trust:
query = 'CREATE TRUSTED LANGUAGE "%s"' % lang
else:
query = 'CREATE LANGUAGE "%s"' % lang
cursor.execute(query)
return True
2014-10-17 14:23:25 +00:00
def lang_drop(cursor, lang, cascade):
"""Drops language for db"""
cursor.execute("SAVEPOINT ansible_pgsql_lang_drop")
try:
if cascade:
cursor.execute("DROP LANGUAGE \"%s\" CASCADE" % lang)
else:
cursor.execute("DROP LANGUAGE \"%s\"" % lang)
except Exception:
2014-10-17 14:23:25 +00:00
cursor.execute("ROLLBACK TO SAVEPOINT ansible_pgsql_lang_drop")
cursor.execute("RELEASE SAVEPOINT ansible_pgsql_lang_drop")
return False
cursor.execute("RELEASE SAVEPOINT ansible_pgsql_lang_drop")
return True
2014-10-17 14:23:25 +00:00
def main():
module = AnsibleModule(
argument_spec=dict(
login_user=dict(default="postgres"),
login_password=dict(default="", no_log=True),
2014-10-17 14:23:25 +00:00
login_host=dict(default=""),
login_unix_socket=dict(default=""),
2014-10-17 14:23:25 +00:00
db=dict(required=True),
port=dict(default='5432'),
lang=dict(required=True),
state=dict(default="present", choices=["absent", "present"]),
trust=dict(type='bool', default='no'),
force_trust=dict(type='bool', default='no'),
cascade=dict(type='bool', default='no'),
fail_on_drop=dict(type='bool', default='yes'),
ssl_mode=dict(default='prefer', choices=[
'disable', 'allow', 'prefer', 'require', 'verify-ca', 'verify-full']),
ssl_rootcert=dict(default=None),
session_role=dict(),
2014-10-17 14:23:25 +00:00
),
supports_check_mode=True
2014-10-17 14:23:25 +00:00
)
db = module.params["db"]
lang = module.params["lang"]
state = module.params["state"]
trust = module.params["trust"]
force_trust = module.params["force_trust"]
cascade = module.params["cascade"]
fail_on_drop = module.params["fail_on_drop"]
sslrootcert = module.params["ssl_rootcert"]
session_role = module.params["session_role"]
2014-10-17 14:23:25 +00:00
if not postgresqldb_found:
module.fail_json(msg=missing_required_lib('psycopg2'), exception=PSYCOPG2_IMP_ERR)
2014-10-17 14:23:25 +00:00
# To use defaults values, keyword arguments must be absent, so
# check which values are empty and don't include in the **kw
# dictionary
2014-10-17 14:23:25 +00:00
params_map = {
"login_host": "host",
"login_user": "user",
"login_password": "password",
"port": "port",
"db": "database",
"ssl_mode": "sslmode",
"ssl_rootcert": "sslrootcert"
2014-10-17 14:23:25 +00:00
}
kw = dict((params_map[k], v) for (k, v) in iteritems(module.params)
if k in params_map and v != "" and v is not None)
# If a login_unix_socket is specified, incorporate it here.
is_localhost = "host" not in kw or kw["host"] == "" or kw["host"] == "localhost"
if is_localhost and module.params["login_unix_socket"] != "":
kw["host"] = module.params["login_unix_socket"]
if psycopg2.__version__ < '2.4.3' and sslrootcert is not None:
module.fail_json(msg='psycopg2 must be at least 2.4.3 in order to user the ssl_rootcert parameter')
2014-10-17 14:23:25 +00:00
try:
db_connection = psycopg2.connect(**kw)
cursor = db_connection.cursor()
except TypeError as e:
if 'sslrootcert' in e.args[0]:
module.fail_json(msg='Postgresql server must be at least version 8.4 to support sslrootcert')
module.fail_json(msg="unable to connect to database: %s" % to_native(e), exception=traceback.format_exc())
except Exception as e:
module.fail_json(msg="unable to connect to database: %s" % to_native(e), exception=traceback.format_exc())
if session_role:
try:
cursor.execute('SET ROLE %s' % pg_quote_identifier(session_role, 'role'))
except Exception as e:
module.fail_json(msg="Could not switch role: %s" % to_native(e), exception=traceback.format_exc())
2014-10-17 14:23:25 +00:00
changed = False
kw = {'db': db, 'lang': lang, 'trust': trust}
2014-10-17 14:23:25 +00:00
if state == "present":
if lang_exists(cursor, lang):
lang_trusted = lang_istrusted(cursor, lang)
if (lang_trusted and not trust) or (not lang_trusted and trust):
if module.check_mode:
2014-10-17 14:23:25 +00:00
changed = True
else:
changed = lang_altertrust(cursor, lang, trust)
else:
if module.check_mode:
2014-10-17 14:23:25 +00:00
changed = True
else:
changed = lang_add(cursor, lang, trust)
if force_trust:
changed = lang_altertrust(cursor, lang, trust)
2014-10-17 14:23:25 +00:00
else:
if lang_exists(cursor, lang):
if module.check_mode:
2014-10-17 14:23:25 +00:00
changed = True
kw['lang_dropped'] = True
else:
changed = lang_drop(cursor, lang, cascade)
if fail_on_drop and not changed:
msg = "unable to drop language, use cascade to delete dependencies or fail_on_drop=no to ignore"
module.fail_json(msg=msg)
kw['lang_dropped'] = changed
if changed:
if module.check_mode:
db_connection.rollback()
else:
db_connection.commit()
kw['changed'] = changed
module.exit_json(**kw)
if __name__ == '__main__':
main()