summaryrefslogtreecommitdiffstats
path: root/ipalib
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2009-03-19 15:40:50 -0400
committerRob Crittenden <rcritten@redhat.com>2009-03-20 09:28:09 -0400
commita55c5d6bcd0927091e54399c8cf5c1ad671f0e82 (patch)
treecbc677793a5065b95150452f9b71255f42b08064 /ipalib
parent5e2e3fd17dd16bbbd76b2f07292204864120d196 (diff)
downloadfreeipa-a55c5d6bcd0927091e54399c8cf5c1ad671f0e82.tar.gz
freeipa-a55c5d6bcd0927091e54399c8cf5c1ad671f0e82.tar.xz
freeipa-a55c5d6bcd0927091e54399c8cf5c1ad671f0e82.zip
New plugin to handle role groups
Role groups will be part of the ACI system. It will let one create broad categories of permissions. Things like: helpdesk, user admin, group admin, whatever.
Diffstat (limited to 'ipalib')
-rw-r--r--ipalib/plugins/rolegroup.py85
1 files changed, 85 insertions, 0 deletions
diff --git a/ipalib/plugins/rolegroup.py b/ipalib/plugins/rolegroup.py
new file mode 100644
index 000000000..c843c0988
--- /dev/null
+++ b/ipalib/plugins/rolegroup.py
@@ -0,0 +1,85 @@
+# Authors:
+# Rob Crittenden <rcritten@redhat.com>
+#
+# Copyright (C) 2009 Red Hat
+# see file 'COPYING' for use and warranty information
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; version 2 only
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+"""
+Frontend plugins for rolegroups.
+"""
+
+from ipalib import api
+from ipalib.plugins.basegroup import *
+
+display_attributes = ['cn','description', 'member', 'memberof']
+container_rolegroup = "cn=rolegroups,cn=accounts"
+
+class rolegroup(BaseGroup):
+ """
+ rolegroup object.
+ """
+ container=container_rolegroup
+
+api.register(rolegroup)
+
+
+class rolegroup_add(basegroup_add):
+ 'Add a new rolegroup.'
+
+api.register(rolegroup_add)
+
+
+class rolegroup_del(basegroup_del):
+ 'Delete an existing rolegroup.'
+ container = container_rolegroup
+
+api.register(rolegroup_del)
+
+
+class rolegroup_mod(basegroup_mod):
+ 'Edit an existing rolegroup.'
+ container = container_rolegroup
+
+api.register(rolegroup_mod)
+
+
+class rolegroup_find(basegroup_find):
+ 'Search the groups.'
+ container = container_rolegroup
+
+api.register(rolegroup_find)
+
+
+class rolegroup_show(basegroup_show):
+ 'Examine an existing rolegroup.'
+ default_attributes = display_attributes
+ container = container_rolegroup
+
+api.register(rolegroup_show)
+
+
+class rolegroup_add_member(basegroup_add_member):
+ 'Add a member to a rolegroup.'
+ container = container_rolegroup
+
+api.register(rolegroup_add_member)
+
+
+class rolegroup_remove_member(basegroup_remove_member):
+ 'Remove a member from a rolegroup.'
+ container = container_rolegroup
+
+api.register(rolegroup_remove_member)