summaryrefslogtreecommitdiffstats
path: root/ipa-server/ipa-web/api/funcs.py
blob: b23a40c9baf23c96dfdab3ff894980f9d9cbc36b (plain)
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
# Authors: Rob Crittenden <rcritten@redhat.com>
#
# Copyright (C) 2007  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
#

import ldap
import ipa
import ipa.dsinstance
import ipa.ipaldap
import pdb
import string
from types import *
import xmlrpclib

# FIXME, this needs to be auto-discovered
host = 'localhost'
port = 389
binddn = "cn=directory manager"
bindpw = "freeipa"

basedn = "dc=greyoak,dc=com"
scope = ldap.SCOPE_SUBTREE

def get_user (username):
    """Get a specific user's entry. Return as a dict of values.
       Multi-valued fields are represented as lists.
    """
    ent=""

    # FIXME: Is this the filter we want or should it be more specific?
    filter = "(uid="  username  ")"
    try:
        m1 = ipa.ipaldap.IPAdmin(host,port,binddn,bindpw)
        ent = m1.getEntry(basedn, scope, filter, None)
    except ldap.LDAPError, e:
        raise xmlrpclib.Fault(1, e)
    except ipa.ipaldap.NoSuchEntryError:
        raise xmlrpclib.Fault(2, "No such user")

    # Convert to LDIF
    entry = str(ent) 

    # Strip off any junk
    entry = entry.strip()

    # Don't need to identify binary fields and this breaks the parser so
    # remove double colons
    entry = entry.replace('::', ':')
    specs = [spec.split(':') for spec in entry.split('\n')]

    # Convert into a dict. We need to handle multi-valued attributes as well
    # so we'll convert those into lists.
    user={}
    for (k,v) in specs:
        k = k.lower()
        if user.get(k) is not None:
            if isinstance(user[k],list):
                user[k].append(v.strip())
            else:
                first = user[k]
                user[k] = []
                user[k].append(first)
                user[k].append(v.strip())
        else:
            user[k] = v.strip()

    return user
#    return str(ent) # return as LDIF

def add_user (user):
    """Add a user in LDAP"""
    dn="uid=%s,ou=users,ou=default,dc=greyoak,dc=com" % user['uid']
    entry = ipa.ipaldap.Entry(dn)

    # some required objectclasses
    entry.setValues('objectClass', 'top', 'posixAccount', 'shadowAccount', 'account', 'person', 'inetOrgPerson', 'organizationalPerson', 'krbPrincipalAux', 'krbTicketPolicyAux')

    # Fill in shadow fields
    entry.setValue('shadowMin', '0')
    entry.setValue('shadowMax', '99999')
    entry.setValue('shadowWarning', '7')
    entry.setValue('shadowExpire', '-1')
    entry.setValue('shadowInactive', '-1')
    entry.setValue('shadowFlag', '-1')

    # FIXME: calculate shadowLastChange

    # fill in our new entry with everything sent by the user
    for u in user:
        entry.setValues(u, user[u])

    try:
        m1 = ipa.ipaldap.IPAdmin(host,port,binddn,bindpw)
        res = m1.addEntry(entry)
        return res
    except ldap.ALREADY_EXISTS:
        raise xmlrpclib.Fault(3, "User already exists")
        return None
    except ldap.LDAPError, e:
        raise xmlrpclib.Fault(1, str(e))
        return None

def get_add_schema ():
    """Get the list of fields to be used when adding users in the GUI."""

    # FIXME: this needs to be pulled from LDAP
    fields = []

    field1 = {
        "name":       "uid" ,
        "label":      "Login:",
        "type":       "text",
        "validator":  "text",
        "required":   "true"
    }
    fields.append(field1)

    field1 = {
        "name":       "userPassword" ,
        "label":      "Password:",
        "type":       "password",
        "validator":  "String",
        "required":   "true"
    }
    fields.append(field1)

    field1 = {
        "name":       "gn" ,
        "label":      "First name:",
        "type":       "text",
        "validator":  "string",
        "required":   "true"
    }
    fields.append(field1)

    field1 = {
        "name":       "sn" ,
        "label":      "Last name:",
        "type":       "text",
        "validator":  "string",
        "required":   "true"
    }
    fields.append(field1)

    field1 = {
        "name":       "mail" ,
        "label":      "E-mail address:",
        "type":       "text",
        "validator":  "email",
        "required":   "true"
    }
    fields.append(field1)

    return fields