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

# Copyright 2011 OpenStack LLC. 

# Copyright 2011 Nebula, Inc. 

# All Rights Reserved. 

# 

#    Licensed under the Apache License, Version 2.0 (the "License"); you may 

#    not use this file except in compliance with the License. You may obtain 

#    a copy of the License at 

# 

#         http://www.apache.org/licenses/LICENSE-2.0 

# 

#    Unless required by applicable law or agreed to in writing, software 

#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 

#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 

#    License for the specific language governing permissions and limitations 

#    under the License. 

 

import urllib 

 

from keystoneclient import base 

 

 

class User(base.Resource): 

    """Represents a Keystone user""" 

    def __repr__(self): 

        return "<User %s>" % self._info 

 

    def delete(self): 

        return self.manager.delete(self) 

 

    def list_roles(self, tenant=None): 

        return self.manager.list_roles(self.id, base.getid(tenant)) 

 

 

class UserManager(base.ManagerWithFind): 

    """Manager class for manipulating Keystone users""" 

    resource_class = User 

 

    def get(self, user): 

        return self._get("/users/%s" % base.getid(user), "user") 

 

    def update(self, user, **kwargs): 

        """ 

        Update user data. 

 

        Supported arguments include ``name``, ``email``, and ``enabled``. 

        """ 

        # FIXME(gabriel): "tenantId" seems to be accepted by the API but 

        #                 fails to actually update the default tenant. 

        params = {"user": kwargs} 

        params['user']['id'] = base.getid(user) 

        url = "/users/%s" % base.getid(user) 

        return self._update(url, params, "user") 

 

    def update_enabled(self, user, enabled): 

        """ 

        Update enabled-ness 

        """ 

        params = {"user": {"id": base.getid(user), 

                           "enabled": enabled}} 

 

        self._update("/users/%s/OS-KSADM/enabled" % base.getid(user), params, 

                     "user") 

 

    def update_password(self, user, password): 

        """ 

        Update password 

        """ 

        params = {"user": {"id": base.getid(user), 

                           "password": password}} 

 

        return self._update("/users/%s/OS-KSADM/password" % base.getid(user), 

                            params, "user") 

 

    def update_own_password(self, origpasswd, passwd): 

        """ 

        Update password 

        """ 

        params = {"user": {"password": passwd, 

                           "original_password": origpasswd}} 

 

        return self._update("/OS-KSCRUD/users/%s" % self.api.user_id, params, 

                            response_key="access", 

                            method="PATCH", 

                            management=False) 

 

    def update_tenant(self, user, tenant): 

        """ 

        Update default tenant. 

        """ 

        params = {"user": {"id": base.getid(user), 

                           "tenantId": base.getid(tenant)}} 

 

        # FIXME(ja): seems like a bad url - default tenant is an attribute 

        #            not a subresource!??? 

        return self._update("/users/%s/OS-KSADM/tenant" % base.getid(user), 

                            params, "user") 

 

    def create(self, name, password, email, tenant_id=None, enabled=True): 

        """ 

        Create a user. 

        """ 

        # FIXME(ja): email should be optional, keystone currently requires it 

        params = {"user": {"name": name, 

                           "password": password, 

                           "tenantId": tenant_id, 

                           "email": email, 

                           "enabled": enabled}} 

        return self._create('/users', params, "user") 

 

    def delete(self, user): 

        """ 

        Delete a user. 

        """ 

        return self._delete("/users/%s" % base.getid(user)) 

 

    def list(self, tenant_id=None, limit=None, marker=None): 

        """ 

        Get a list of users (optionally limited to a tenant) 

 

        :rtype: list of :class:`User` 

        """ 

 

        params = {} 

        if limit: 

            params['limit'] = int(limit) 

        if marker: 

            params['marker'] = marker 

 

        query = "" 

        if params: 

            query = "?" + urllib.urlencode(params) 

 

136        if not tenant_id: 

            return self._list("/users%s" % query, "users") 

        else: 

            return self._list("/tenants/%s/users%s" % (tenant_id, query), 

                              "users") 

 

    def list_roles(self, user, tenant=None): 

        return self.api.roles.roles_for_user(base.getid(user), 

                                             base.getid(tenant))