mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 11:51:26 -07:00
postgresql_privs: Support FOREIGN DATA WRAPPER and FOREIGN SERVER (#38803)
* Support FOREIGN DATA WRAPPER and FOREIGN SERVER in postgresql_privs module * Added available from note to fdw and fs object types * Integration tests, examples in documentation * Complete integration tests
This commit is contained in:
parent
f5faf8211d
commit
6e198487c9
4 changed files with 285 additions and 3 deletions
|
@ -41,10 +41,11 @@ options:
|
|||
description:
|
||||
- Type of database object to set privileges on.
|
||||
- The `default_prives` choice is available starting at version 2.7.
|
||||
- The 'foreign_data_wrapper' and 'foreign_server' object types are available from Ansible version '2.8'.
|
||||
default: table
|
||||
choices: [table, sequence, function, database,
|
||||
schema, language, tablespace, group,
|
||||
default_privs]
|
||||
default_privs, foreign_data_wrapper, foreign_server]
|
||||
objs:
|
||||
description:
|
||||
- Comma separated list of database objects to set privileges on.
|
||||
|
@ -272,6 +273,23 @@ EXAMPLES = """
|
|||
type: default_privs
|
||||
role: reader
|
||||
|
||||
# Available since version 2.8
|
||||
# GRANT ALL PRIVILEGES ON FOREIGN DATA WRAPPER fdw TO reader
|
||||
- postgresql_privs:
|
||||
db: test
|
||||
objs: fdw
|
||||
privs: ALL
|
||||
type: foreign_data_wrapper
|
||||
role: reader
|
||||
|
||||
# GRANT ALL PRIVILEGES ON FOREIGN SERVER fdw_server TO reader
|
||||
- postgresql_privs:
|
||||
db: test
|
||||
objs: fdw_server
|
||||
privs: ALL
|
||||
type: foreign_server
|
||||
role: reader
|
||||
|
||||
"""
|
||||
|
||||
import traceback
|
||||
|
@ -484,6 +502,18 @@ class Connection(object):
|
|||
self.cursor.execute(query, (schema,))
|
||||
return [t[0] for t in self.cursor.fetchall()]
|
||||
|
||||
def get_foreign_data_wrapper_acls(self, fdws):
|
||||
query = """SELECT fdwacl FROM pg_catalog.pg_foreign_data_wrapper
|
||||
WHERE fdwname = ANY (%s) ORDER BY fdwname"""
|
||||
self.cursor.execute(query, (fdws,))
|
||||
return [t[0] for t in self.cursor.fetchall()]
|
||||
|
||||
def get_foreign_server_acls(self, fs):
|
||||
query = """SELECT srvacl FROM pg_catalog.pg_foreign_server
|
||||
WHERE srvname = ANY (%s) ORDER BY srvname"""
|
||||
self.cursor.execute(query, (fs,))
|
||||
return [t[0] for t in self.cursor.fetchall()]
|
||||
|
||||
# Manipulating privileges
|
||||
|
||||
def manipulate_privs(self, obj_type, privs, objs, roles,
|
||||
|
@ -525,6 +555,10 @@ class Connection(object):
|
|||
get_status = self.get_group_memberships
|
||||
elif obj_type == 'default_privs':
|
||||
get_status = partial(self.get_default_privs, schema_qualifier)
|
||||
elif obj_type == 'foreign_data_wrapper':
|
||||
get_status = self.get_foreign_data_wrapper_acls
|
||||
elif obj_type == 'foreign_server':
|
||||
get_status = self.get_foreign_server_acls
|
||||
else:
|
||||
raise Error('Unsupported database object type "%s".' % obj_type)
|
||||
|
||||
|
@ -559,7 +593,8 @@ class Connection(object):
|
|||
obj_ids = [pg_quote_identifier(i, 'table') for i in obj_ids]
|
||||
# Note: obj_type has been checked against a set of string literals
|
||||
# and privs was escaped when it was parsed
|
||||
set_what = '%s ON %s %s' % (','.join(privs), obj_type,
|
||||
# Note: Underscores are replaced with spaces to support multi-word obj_type
|
||||
set_what = '%s ON %s %s' % (','.join(privs), obj_type.replace('_', ' '),
|
||||
','.join(obj_ids))
|
||||
|
||||
# for_whom: SQL-fragment specifying for whom to set the above
|
||||
|
@ -706,7 +741,9 @@ def main():
|
|||
'language',
|
||||
'tablespace',
|
||||
'group',
|
||||
'default_privs']),
|
||||
'default_privs',
|
||||
'foreign_data_wrapper',
|
||||
'foreign_server']),
|
||||
objs=dict(required=False, aliases=['obj']),
|
||||
schema=dict(required=False),
|
||||
roles=dict(required=True, aliases=['role']),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue