1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
|
# Authors:
# Jason Gerard DeRose <jderose@redhat.com>
#
# Copyright (C) 2008 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 group (Identity).
"""
from ipalib import frontend
from ipalib import crud
from ipalib.frontend import Param
from ipalib import api
from ipa_server import servercore
from ipa_server import ipaldap
from ipa_server import ipautil
import ldap
class group(frontend.Object):
"""
Group object.
"""
takes_params = (
'description',
Param('cn',
cli_name='name',
primary_key=True,
normalize=lambda value: value.lower(),
)
)
api.register(group)
class group_add(crud.Add):
'Add a new group.'
def execute(self, cn, **kw):
"""
Execute the group-add operation.
The dn should not be passed as a keyword argument as it is constructed
by this method.
Returns the entry as it will be created in LDAP.
No need to explicitly set gidNumber. The dna_plugin will do this
for us if the value isn't provided by the caller.
:param cn: The name of the group being added.
:param kw: Keyword arguments for the other LDAP attributes.
"""
assert 'cn' not in kw
assert 'dn' not in kw
ldap = self.api.Backend.ldap
kw['cn'] = cn
kw['dn'] = ldap.make_group_dn(cn)
# Get our configuration
config = servercore.get_ipa_config()
# some required objectclasses
kw['objectClass'] = config.get('ipagroupobjectclasses')
return ldap.create(**kw)
def output_for_cli(self, ret):
"""
Output result of this command to command line interface.
"""
if ret:
print "Group added"
api.register(group_add)
class group_del(crud.Del):
'Delete an existing group.'
def execute(self, *args, **kw):
"""args[0] = dn of the group to remove
Delete a group
The memberOf plugin handles removing the group from any other
groups.
"""
group_dn = args[0]
group = servercore.get_entry_by_dn(group_dn, ['dn', 'cn'])
if group is None:
raise errors.NotFound
# logging.info("IPA: delete_group '%s'" % group_dn)
# We have 2 special groups, don't allow them to be removed
# FIXME
# if "admins" in group.get('cn') or "editors" in group.get('cn'):
# raise ipaerror.gen_exception(ipaerror.CONFIG_REQUIRED_GROUPS)
# Don't allow the default user group to be removed
config=servercore.get_ipa_config()
default_group = servercore.get_entry_by_cn(config.get('ipadefaultprimarygroup'), None)
if group_dn == default_group.get('dn'):
raise errors.DefaultGroup
return servercore.delete_entry(group_dn)
def forward(self, *args, **kw):
group = self.api.Command['group_show'](ipautil.utf8_encode_value(args[0]))
if not group:
print "nothing found"
return False
a = group.get('dn')
result = super(crud.Del, self).forward(a)
api.register(group_del)
class group_mod(crud.Mod):
'Edit an existing group.'
def execute(self, *args, **kw):
group_cn=args[0]
result = servercore.get_entry_by_cn(group_cn, ["*"])
group = kw
dn = result.get('dn')
del result['dn']
entry = ipaldap.Entry((dn, servercore.convert_scalar_values(result)))
for g in group:
entry.setValues(g, group[g])
result = servercore.update_entry(entry.toDict())
return result
def forward(self, *args, **kw):
result = super(crud.Mod, self).forward(*args, **kw)
if result:
print "Group %s modified" % args[0]
api.register(group_mod)
class group_find(crud.Find):
'Search the groups.'
def execute(self, *args, **kw):
cn=args[0]
result = servercore.get_sub_entry(servercore.basedn, "cn=%s" % cn, ["*"])
return result
def forward(self, *args, **kw):
result = super(crud.Find, self).forward(*args, **kw)
for a in result:
print a, ": ", result[a]
api.register(group_find)
class group_show(crud.Get):
'Examine an existing group.'
def execute(self, *args, **kw):
cn=args[0]
result = servercore.get_sub_entry(servercore.basedn, "cn=%s" % cn, ["*"])
return result
def forward(self, *args, **kw):
result = super(crud.Get, self).forward(*args, **kw)
return result
api.register(group_show)
|