moulinette/yunohost_user.py

135 lines
4 KiB
Python
Raw Normal View History

2012-10-06 17:10:19 +02:00
# -*- coding: utf-8 -*-
2012-10-08 18:16:43 +02:00
import os
2012-10-07 17:57:57 +02:00
import sys
2012-10-06 17:57:08 +02:00
import ldap
2012-10-07 23:51:40 +02:00
import crypt
import random
import string
2012-10-07 17:57:57 +02:00
import getpass
2012-10-26 15:26:50 +02:00
from yunohost import YunoHostError, win_msg, colorize, validate, get_required_args
2012-10-07 16:20:20 +02:00
2012-10-28 17:27:47 +01:00
def user_list(args, connections):
"""
List YunoHost users from LDAP
Keyword argument:
args -- Dictionnary of values (can be empty)
connections -- LDAP connection
Returns:
Dict
"""
yldap = connections['ldap']
user_attrs = ['uid', 'mail', 'cn']
attrs = []
result_dict = {}
if args['offset']: offset = int(args['offset'])
else: offset = 0
if args['limit']: limit = int(args['limit'])
else: limit = 1000
if args['filter']: filter = args['filter']
else: filter = 'uid=*'
if args['fields']:
for attr in args['fields']:
if attr in user_attrs:
attrs.append(attr)
continue
else:
raise YunoHostError(22, _("Invalid field : ") + attr)
else:
attrs = user_attrs
result = yldap.search('ou=users,dc=yunohost,dc=org', filter, attrs)
if len(result) > (0 + offset) and limit > 0:
i = 0 + offset
for entry in result[i:]:
if i < limit:
result_dict[str(i)] = entry
i += 1
else:
result_dict = { 'Notice' : _("No user found") }
return result_dict
2012-10-07 17:57:57 +02:00
2012-10-12 19:00:41 +02:00
def user_create(args, connections):
2012-10-07 23:51:40 +02:00
"""
Add user to LDAP
Keyword argument:
args -- Dictionnary of values (can be empty)
Returns:
2012-10-28 17:27:47 +01:00
Dict
2012-10-07 23:51:40 +02:00
"""
2012-10-12 19:00:41 +02:00
yldap = connections['ldap']
2012-10-26 15:26:50 +02:00
args = get_required_args(args, {
'username': _('Username'),
'mail': _('Mail address'),
'firstname': _('Firstname'),
'lastname': _('Lastname'),
'password': _('Password')
}, True)
2012-10-07 23:51:40 +02:00
2012-10-25 19:48:14 +02:00
# Validate password length
if len(args['password']) < 4:
raise YunoHostError(22, _("Password is too short"))
# Validate other values TODO: validate all values
validate({
args['username'] : r'^[a-z0-9_]+$',
args['mail'] : r'^[\w.-]+@[\w.-]+\.[a-zA-Z]{2,6}$',
})
yldap.validate_uniqueness({
'uid' : args['username'],
'mail' : args['mail'],
'mailalias' : args['mail']
})
# Check if unix user already exists (doesn't work)
#if not os.system("getent passwd " + args['username']):
# raise YunoHostError(17, _("Username not available"))
#TODO: check if mail belongs to a domain
2012-10-24 17:30:28 +02:00
# Get random UID/GID
uid_check = gid_check = 0
while uid_check == 0 and gid_check == 0:
uid = str(random.randint(200, 99999))
uid_check = os.system("getent passwd " + uid)
gid_check = os.system("getent group " + uid)
2012-10-25 19:48:14 +02:00
# Adapt values for LDAP
2012-10-07 23:51:40 +02:00
fullname = args['firstname'] + ' ' + args['lastname']
2012-10-24 18:36:23 +02:00
rdn = 'uid=' + args['username'] + ',ou=users'
2012-10-07 23:51:40 +02:00
char_set = string.ascii_uppercase + string.digits
salt = ''.join(random.sample(char_set,8))
salt = '$1$' + salt + '$'
2012-10-08 18:16:43 +02:00
pwd = '{CRYPT}' + crypt.crypt(str(args['password']), salt)
2012-10-07 23:51:40 +02:00
attr_dict = {
2012-10-24 17:30:28 +02:00
'objectClass' : ['mailAccount', 'inetOrgPerson', 'posixAccount'],
2012-10-07 23:51:40 +02:00
'givenName' : args['firstname'],
'sn' : args['lastname'],
'displayName' : fullname,
'cn' : fullname,
'uid' : args['username'],
'mail' : args['mail'],
2012-10-24 17:30:28 +02:00
'userPassword' : pwd,
'gidNumber' : uid,
'uidNumber' : uid,
'homeDirectory' : '/home/' + args['username'],
2012-10-28 15:24:10 +01:00
'loginShell' : '/bin/false'
2012-10-07 23:51:40 +02:00
}
2012-10-07 17:57:57 +02:00
2012-10-07 23:51:40 +02:00
if yldap.add(rdn, attr_dict):
2012-10-24 17:30:28 +02:00
# Create user /home directory by switching user
2012-10-24 18:36:23 +02:00
os.system("su - " + args['username'] + " -c ''")
2012-10-14 21:48:16 +02:00
#TODO: Send a welcome mail to user
2012-10-24 17:30:28 +02:00
win_msg(_("User successfully created"))
2012-10-10 20:53:42 +02:00
return { _("Fullname") : fullname, _("Username") : args['username'], _("Mail") : args['mail'] }
2012-10-07 23:51:40 +02:00
else:
2012-10-24 18:36:23 +02:00
raise YunoHostError(169, _("An error occured during user creation"))