summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Bokovoy <abokovoy@redhat.com>2014-01-15 15:42:10 +0200
committerMartin Kosek <mkosek@redhat.com>2014-01-15 16:19:33 +0100
commit2630ecbaff6d79ddf8e8961c585a25784935027f (patch)
treea43820bb446c71de0793e16e56818345c38ee148
parentfa9bdaa12e016f9f70f81b4f2aec59c5a31bbcfb (diff)
downloadfreeipa.git-2630ecbaff6d79ddf8e8961c585a25784935027f.tar.gz
freeipa.git-2630ecbaff6d79ddf8e8961c585a25784935027f.tar.xz
freeipa.git-2630ecbaff6d79ddf8e8961c585a25784935027f.zip
trustdomain-find: report status of the (sub)domain
Show status of each enumerated domain trustdomain-find shows list of domains associated with the trust. Each domain except the trust forest root can be enabled or disabled with the help of trustdomain-enable and trustdomain-disable commands. https://fedorahosted.org/freeipa/ticket/4096
-rw-r--r--ipalib/plugins/trust.py18
1 files changed, 17 insertions, 1 deletions
diff --git a/ipalib/plugins/trust.py b/ipalib/plugins/trust.py
index a16c2308..3d412c9c 100644
--- a/ipalib/plugins/trust.py
+++ b/ipalib/plugins/trust.py
@@ -21,7 +21,7 @@
from ipalib.plugins.baseldap import *
from ipalib.plugins.dns import dns_container_exists
from ipapython.ipautil import realm_to_suffix
-from ipalib import api, Str, StrEnum, Password, _, ngettext
+from ipalib import api, Str, StrEnum, Password, Bool, _, ngettext
from ipalib import Command
from ipalib import errors
from ldap import SCOPE_SUBTREE
@@ -1183,8 +1183,24 @@ api.register(trustdomain)
class trustdomain_find(LDAPSearch):
__doc__ = _('Search domains of the trust')
+ has_output_params = LDAPSearch.has_output_params + (
+ Flag('domain_enabled', label= _('Domain enabled')),
+ )
def pre_callback(self, ldap, filters, attrs_list, base_dn, scope, *args, **options):
return (filters, base_dn, ldap.SCOPE_SUBTREE)
+
+ def post_callback(self, ldap, entries, truncated, *args, **options):
+ trust_dn = self.obj.get_dn(args[0], trust_type=u'ad')
+ trust_entry = ldap.get_entry(trust_dn)
+ for entry in entries:
+ sid = entry['ipanttrusteddomainsid'][0]
+ if sid in trust_entry['ipantsidblacklistincoming']:
+ entry['domain_enabled'] = [False]
+ else:
+ entry['domain_enabled'] = [True]
+ return truncated
+
+
api.register(trustdomain_find)
class trustdomain_mod(LDAPUpdate):