summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/host.py
diff options
context:
space:
mode:
authorPavel Zuna <pzuna@redhat.com>2011-01-04 15:15:54 -0500
committerAdam Young <ayoung@redhat.com>2011-01-04 21:56:38 -0500
commitd6d579ead469e0b4690d6d1eec0f137dd3c40940 (patch)
treec8d6a027f5fe598b75687aa42dd193b2c51cf816 /ipalib/plugins/host.py
parent4f2a6e0a25cd5d92bdd436d23963f77b86f818ea (diff)
downloadfreeipa-d6d579ead469e0b4690d6d1eec0f137dd3c40940.tar.gz
freeipa-d6d579ead469e0b4690d6d1eec0f137dd3c40940.tar.xz
freeipa-d6d579ead469e0b4690d6d1eec0f137dd3c40940.zip
Improve filtering of enrollments search results.
This is required for effective filtering of enrollments search results in the webUI and also gives an edge to the CLI. After this patch, each LDAPObject can define its relationships to other LDAPObjects. For now, this is used only for filtering search results by enrollments, but there are probably more benefits to come. You can do this for example: # search for all users not enrolled in group admins ipa user-find --not-in-groups=admins # search for all groups not enrolled in group global with user Pavel ipa group-find --users=Pavel --not-in-groups=global # more examples: ipa group-find --users=Pavel,Jakub --no-users=Honza ipa hostgroup-find --hosts=webui.pzuna
Diffstat (limited to 'ipalib/plugins/host.py')
-rw-r--r--ipalib/plugins/host.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/ipalib/plugins/host.py b/ipalib/plugins/host.py
index 283c2c165..e24da1bf3 100644
--- a/ipalib/plugins/host.py
+++ b/ipalib/plugins/host.py
@@ -170,6 +170,11 @@ class host(LDAPObject):
'managedby': ['host'],
}
bindable = True
+ relationships = {
+ 'memberof': ('Parent', 'in_', 'not_in_'),
+ 'enrolledby': ('Enrolled by', 'enroll_by_', 'not_enroll_by_'),
+ 'managedby': ('Managed by', 'man_by_', 'not_man_by_'),
+ }
label = _('Hosts')
@@ -568,7 +573,7 @@ class host_find(LDAPSearch):
msg_summary = ngettext(
'%(count)d host matched', '%(count)d hosts matched'
)
- member_attributes = ['managedby']
+ member_attributes = ['memberof', 'enrolledby', 'managedby']
def pre_callback(self, ldap, filter, attrs_list, base_dn, scope, *args, **options):
if 'locality' in attrs_list: