483b06
From 352b1bc2735e8571bd4bf3a46f599834c6b0aefa Mon Sep 17 00:00:00 2001
483b06
From: Martin Babinsky <mbabinsk@redhat.com>
483b06
Date: Tue, 16 May 2017 17:29:39 +0200
483b06
Subject: [PATCH] Refactor the role/attribute member reporting code
483b06
483b06
The `config` object now hosts a generic method for updating the config
483b06
entry for desired server role configuration (if not empty). The
483b06
duplicated code in dns/trust/vaultconfig commands was replaced by a call
483b06
to a common method.
483b06
483b06
https://pagure.io/freeipa/issue/6937
483b06
483b06
Reviewed-By: Jan Cholasta <jcholast@redhat.com>
483b06
Reviewed-By: Stanislav Laznicka <slaznick@redhat.com>
483b06
---
483b06
 ipaserver/plugins/config.py | 24 ++++++++++++++++--------
483b06
 ipaserver/plugins/dns.py    | 16 ++++------------
483b06
 ipaserver/plugins/trust.py  | 22 ++++------------------
483b06
 ipaserver/plugins/vault.py  |  6 +++---
483b06
 4 files changed, 27 insertions(+), 41 deletions(-)
483b06
483b06
diff --git a/ipaserver/plugins/config.py b/ipaserver/plugins/config.py
483b06
index b50e7a4691bd76bfaf7c332cd89b0f1bf55bac46..c88cb99b47ac746f8e18cf189708d457b535416a 100644
483b06
--- a/ipaserver/plugins/config.py
483b06
+++ b/ipaserver/plugins/config.py
483b06
@@ -267,15 +267,21 @@ class config(LDAPObject):
483b06
     def get_dn(self, *keys, **kwargs):
483b06
         return DN(('cn', 'ipaconfig'), ('cn', 'etc'), api.env.basedn)
483b06
 
483b06
-    def show_servroles_attributes(self, entry_attrs, **options):
483b06
+    def update_entry_with_role_config(self, role_name, entry_attrs):
483b06
+        backend = self.api.Backend.serverroles
483b06
+
483b06
+        role_config = backend.config_retrieve(role_name)
483b06
+        for key, value in role_config.items():
483b06
+            if value:
483b06
+                entry_attrs.update({key: value})
483b06
+
483b06
+
483b06
+    def show_servroles_attributes(self, entry_attrs, *roles, **options):
483b06
         if options.get('raw', False):
483b06
             return
483b06
 
483b06
-        backend = self.api.Backend.serverroles
483b06
-
483b06
-        for role in ("CA server", "IPA master", "NTP server"):
483b06
-            config = backend.config_retrieve(role)
483b06
-            entry_attrs.update(config)
483b06
+        for role in roles:
483b06
+            self.update_entry_with_role_config(role, entry_attrs)
483b06
 
483b06
     def gather_trusted_domains(self):
483b06
         """
483b06
@@ -525,7 +531,8 @@ class config_mod(LDAPUpdate):
483b06
             keys, options, exc, call_func, *call_args, **call_kwargs)
483b06
 
483b06
     def post_callback(self, ldap, dn, entry_attrs, *keys, **options):
483b06
-        self.obj.show_servroles_attributes(entry_attrs, **options)
483b06
+        self.obj.show_servroles_attributes(
483b06
+            entry_attrs, "CA server", "IPA master", "NTP server", **options)
483b06
         return dn
483b06
 
483b06
 
483b06
@@ -534,5 +541,6 @@ class config_show(LDAPRetrieve):
483b06
     __doc__ = _('Show the current configuration.')
483b06
 
483b06
     def post_callback(self, ldap, dn, entry_attrs, *keys, **options):
483b06
-        self.obj.show_servroles_attributes(entry_attrs, **options)
483b06
+        self.obj.show_servroles_attributes(
483b06
+            entry_attrs, "CA server", "IPA master", "NTP server", **options)
483b06
         return dn
483b06
diff --git a/ipaserver/plugins/dns.py b/ipaserver/plugins/dns.py
483b06
index 47ac963a0ae26fcaa81e70a8143bd7d0c172d20e..f0e6c48f06313def57cdd6a4c7114357c9d8de8a 100644
483b06
--- a/ipaserver/plugins/dns.py
483b06
+++ b/ipaserver/plugins/dns.py
483b06
@@ -4184,16 +4184,6 @@ class dnsconfig(LDAPObject):
483b06
         if is_config_empty:
483b06
             result['summary'] = unicode(_('Global DNS configuration is empty'))
483b06
 
483b06
-    def show_servroles_attributes(self, entry_attrs, **options):
483b06
-        if options.get('raw', False):
483b06
-            return
483b06
-
483b06
-        backend = self.api.Backend.serverroles
483b06
-        entry_attrs.update(
483b06
-            backend.config_retrieve("DNS server")
483b06
-        )
483b06
-
483b06
-
483b06
 @register()
483b06
 class dnsconfig_mod(LDAPUpdate):
483b06
     __doc__ = _('Modify global DNS configuration.')
483b06
@@ -4247,7 +4237,8 @@ class dnsconfig_mod(LDAPUpdate):
483b06
         return result
483b06
 
483b06
     def post_callback(self, ldap, dn, entry_attrs, *keys, **options):
483b06
-        self.obj.show_servroles_attributes(entry_attrs, **options)
483b06
+        self.api.Object.config.show_servroles_attributes(
483b06
+            entry_attrs, "DNS server", **options)
483b06
         return dn
483b06
 
483b06
 
483b06
@@ -4261,7 +4252,8 @@ class dnsconfig_show(LDAPRetrieve):
483b06
         return result
483b06
 
483b06
     def post_callback(self, ldap, dn, entry_attrs, *keys, **options):
483b06
-        self.obj.show_servroles_attributes(entry_attrs, **options)
483b06
+        self.api.Object.config.show_servroles_attributes(
483b06
+            entry_attrs, "DNS server", **options)
483b06
         return dn
483b06
 
483b06
 
483b06
diff --git a/ipaserver/plugins/trust.py b/ipaserver/plugins/trust.py
483b06
index 0829f8c714f15c4384a89e18ba29e417405c249c..075b39dcc33a79f3e73e8e1e9e31ebbef17618fe 100644
483b06
--- a/ipaserver/plugins/trust.py
483b06
+++ b/ipaserver/plugins/trust.py
483b06
@@ -1278,22 +1278,6 @@ class trustconfig(LDAPObject):
483b06
 
483b06
         entry_attrs['ipantfallbackprimarygroup'] = [groupdn[0][0].value]
483b06
 
483b06
-    def show_servroles(self, entry_attrs, **options):
483b06
-        if options.get('raw', False):
483b06
-            return
483b06
-
483b06
-        backend = self.api.Backend.serverroles
483b06
-
483b06
-        adtrust_agents = backend.config_retrieve(
483b06
-            "AD trust agent"
483b06
-        )
483b06
-        adtrust_controllers = backend.config_retrieve(
483b06
-            "AD trust controller"
483b06
-        )
483b06
-
483b06
-        entry_attrs.update(adtrust_agents)
483b06
-        entry_attrs.update(adtrust_controllers)
483b06
-
483b06
 
483b06
 @register()
483b06
 class trustconfig_mod(LDAPUpdate):
483b06
@@ -1314,7 +1298,8 @@ class trustconfig_mod(LDAPUpdate):
483b06
 
483b06
     def post_callback(self, ldap, dn, entry_attrs, *keys, **options):
483b06
         self.obj._convert_groupdn(entry_attrs, options)
483b06
-        self.obj.show_servroles(entry_attrs, **options)
483b06
+        self.api.Object.config.show_servroles_attributes(
483b06
+            entry_attrs, "AD trust agent", "AD trust controller", **options)
483b06
         return dn
483b06
 
483b06
 
483b06
@@ -1333,7 +1318,8 @@ class trustconfig_show(LDAPRetrieve):
483b06
 
483b06
     def post_callback(self, ldap, dn, entry_attrs, *keys, **options):
483b06
         self.obj._convert_groupdn(entry_attrs, options)
483b06
-        self.obj.show_servroles(entry_attrs, **options)
483b06
+        self.api.Object.config.show_servroles_attributes(
483b06
+            entry_attrs, "AD trust agent", "AD trust controller", **options)
483b06
 
483b06
         return dn
483b06
 
483b06
diff --git a/ipaserver/plugins/vault.py b/ipaserver/plugins/vault.py
483b06
index d46aca821d2ec94a38dd7cc930f26038d5d80a90..d05a240c39bc1b47f1eba19cb893ab7408b35fa8 100644
483b06
--- a/ipaserver/plugins/vault.py
483b06
+++ b/ipaserver/plugins/vault.py
483b06
@@ -997,9 +997,9 @@ class vaultconfig_show(Retrieve):
483b06
         with self.api.Backend.kra.get_client() as kra_client:
483b06
             transport_cert = kra_client.system_certs.get_transport_cert()
483b06
             config = {'transport_cert': transport_cert.binary}
483b06
-            config.update(
483b06
-                self.api.Backend.serverroles.config_retrieve("KRA server")
483b06
-            )
483b06
+
483b06
+        self.api.Object.config.show_servroles_attributes(
483b06
+            config, "KRA server", **options)
483b06
 
483b06
         return {
483b06
             'result': config,
483b06
-- 
483b06
2.9.4
483b06