Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

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: 

#     Sumit Bose <sbose@redhat.com> 

# 

# Copyright (C) 2012  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, either version 3 of the License, or 

# (at your option) any later version. 

# 

# 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, see <http://www.gnu.org/licenses/>. 

 

from ipalib.plugins.baseldap import * 

from ipalib import api, Str, Password, DefaultFrom, _, ngettext, Object 

from ipalib.parameters import Enum 

from ipalib import Command 

from ipalib import errors 

from ipapython import ipautil 

from ipalib import util 

from ipapython.dn import DN 

 

 

__doc__ = _(""" 

Manage ID ranges 

""") 

 

class range(LDAPObject): 

    """ 

    Range object. 

    """ 

 

    range_type = ('domain', 'ad', 'ipa') 

    container_dn = api.env.container_ranges 

    object_name = ('range') 

    object_name_plural = ('ranges') 

    object_class = ['ipaIDrange'] 

    possible_objectclasses = ['ipadomainidrange', 'ipatrustedaddomainrange'] 

    default_attributes = ['cn', 'ipabaseid', 'ipaidrangesize', 'ipabaserid', 

                          'ipasecondarybaserid', 'ipanttrusteddomainsid', 

                          'iparangetype'] 

 

    label = _('Ranges') 

    label_singular = _('Range') 

 

    takes_params = ( 

        Str('cn', 

            cli_name='name', 

            label=_('Range name'), 

            primary_key=True, 

        ), 

        Int('ipabaseid', 

            cli_name='base_id', 

            label=_("First Posix ID of the range"), 

        ), 

        Int('ipaidrangesize', 

            cli_name='range_size', 

            label=_("Number of IDs in the range"), 

        ), 

        Int('ipabaserid', 

            cli_name='rid_base', 

            label=_('First RID of the corresponding RID range'), 

        ), 

        Int('ipasecondarybaserid?', 

            cli_name='secondary_rid_base', 

            label=_('First RID of the secondary RID range'), 

        ), 

        Str('ipanttrusteddomainsid?', 

            cli_name='dom_sid', 

            label=_('Domain SID of the trusted domain'), 

        ), 

        Str('iparangetype?', 

            label=_('Range type'), 

            flags=['no_option'], 

        ) 

    ) 

 

    def handle_iparangetype(self, entry_attrs, options, keep_objectclass=False): 

        if not options.get('pkey_only', False): 

            if 'ipatrustedaddomainrange' in entry_attrs.get('objectclass', []): 

                entry_attrs['iparangetype'] = [unicode(_('Active Directory domain range'))] 

            else: 

                entry_attrs['iparangetype'] = [unicode(_(u'local domain range'))] 

        if not keep_objectclass: 

            if not options.get('all', False) or options.get('pkey_only', False): 

                entry_attrs.pop('objectclass', None) 

 

class range_add(LDAPCreate): 

    __doc__ = _('Add new ID range.') 

 

    msg_summary = _('Added ID range "%(value)s"') 

 

    def pre_callback(self, ldap, dn, entry_attrs, attrs_list, *keys, **options): 

        assert isinstance(dn, DN) 

        if ('ipanttrusteddomainsid' not in options and 

            'ipasecondarybaserid' not in options): 

            raise errors.ValidationError(name=_('Range setup'), 

                error=_('Ranges for local domain ' \ 

                         'must have a secondary RID base')) 

 

        if 'ipanttrusteddomainsid' in options: 

            entry_attrs['objectclass'].append('ipatrustedaddomainrange') 

        else: 

            entry_attrs['objectclass'].append('ipadomainidrange') 

 

        return dn 

 

    def post_callback(self, ldap, dn, entry_attrs, *keys, **options): 

        assert isinstance(dn, DN) 

        self.obj.handle_iparangetype(entry_attrs, options, keep_objectclass=True) 

        return dn 

 

class range_del(LDAPDelete): 

    __doc__ = _('Delete an ID range.') 

 

    msg_summary = _('Deleted ID range "%(value)s"') 

 

class range_find(LDAPSearch): 

    __doc__ = _('Search for ranges.') 

 

    msg_summary = ngettext( 

        '%(count)d range matched', '%(count)d ranges matched', 0 

    ) 

 

    # Since all range types are stored within separate containers under 

    # 'cn=ranges,cn=etc' search can be done on a one-level scope 

    def pre_callback(self, ldap, filters, attrs_list, base_dn, scope, *args, **options): 

        assert isinstance(base_dn, DN) 

        attrs_list.append('objectclass') 

        return (filters, base_dn, ldap.SCOPE_ONELEVEL) 

 

    def post_callback(self, ldap, entries, truncated, *args, **options): 

        for dn,entry in entries: 

            self.obj.handle_iparangetype(entry, options) 

        return truncated 

 

class range_show(LDAPRetrieve): 

    __doc__ = _('Display information about a range.') 

 

    def pre_callback(self, ldap, dn, attrs_list, *keys, **options): 

        assert isinstance(dn, DN) 

        attrs_list.append('objectclass') 

        return dn 

 

    def post_callback(self, ldap, dn, entry_attrs, *keys, **options): 

        assert isinstance(dn, DN) 

        self.obj.handle_iparangetype(entry_attrs, options) 

        return dn 

 

class range_mod(LDAPUpdate): 

    __doc__ = _('Modify ID range.') 

 

    msg_summary = _('Modified ID range "%(value)s"') 

 

    def pre_callback(self, ldap, dn, entry_attrs, attrs_list, *keys, **options): 

        assert isinstance(dn, DN) 

        attrs_list.append('objectclass') 

        return dn 

 

    def post_callback(self, ldap, dn, entry_attrs, *keys, **options): 

        assert isinstance(dn, DN) 

        self.obj.handle_iparangetype(entry_attrs, options) 

        return dn 

 

api.register(range) 

api.register(range_add) 

api.register(range_mod) 

api.register(range_del) 

api.register(range_find) 

api.register(range_show)