moulinette/lib/yunohost/user.py

317 lines
10 KiB
Python
Raw Normal View History

2012-10-06 17:10:19 +02:00
# -*- coding: utf-8 -*-
2013-07-06 09:42:26 +02:00
""" License
2014-03-27 03:03:14 +01:00
Copyright (C) 2014 YUNOHOST.ORG
2013-07-06 09:42:26 +02:00
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Affero 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program; if not, see http://www.gnu.org/licenses
"""
""" yunohost_user.py
2013-07-06 10:17:16 +02:00
Manage users
2013-07-06 09:42:26 +02:00
"""
2012-10-08 18:16:43 +02:00
import os
2012-10-07 17:57:57 +02:00
import sys
2012-10-07 23:51:40 +02:00
import crypt
import random
import string
2014-03-27 03:03:14 +01:00
from moulinette.core import MoulinetteError
from yunohost.domain import domain_list
from yunohost.hook import hook_callback
2014-02-05 02:01:03 +01:00
2012-10-07 16:20:20 +02:00
2014-03-27 03:03:14 +01:00
def user_list(auth, fields=None, filter=None, limit=None, offset=None):
2012-10-28 17:27:47 +01:00
"""
2013-07-06 10:17:16 +02:00
List users
2012-10-28 17:27:47 +01:00
Keyword argument:
2013-07-06 10:17:16 +02:00
filter -- LDAP filter used to search
2013-10-31 11:21:59 +01:00
offset -- Starting number for user fetching
2013-07-06 12:59:06 +02:00
limit -- Maximum number of user fetched
2013-10-31 11:21:59 +01:00
fields -- fields to fetch
2012-10-28 17:27:47 +01:00
"""
2014-03-27 03:03:14 +01:00
user_attrs = { 'uid': 'username',
'cn': 'fullname',
'mail': 'mail',
'maildrop': 'mail-forward' }
attrs = []
result_list = []
# Set default arguments values
if offset is None:
offset = 0
if limit is None:
limit = 1000
if filter is None:
filter = '(&(objectclass=person)(!(uid=root))(!(uid=nobody)))'
if fields:
for attr in user_attrs.keys():
if attr in fields:
attrs.append(attr)
else:
raise MoulinetteError(22, _("Invalid field '%s'") % attr)
else:
attrs = [ 'uid', 'cn', 'mail' ]
2012-12-01 15:33:56 +01:00
2014-03-27 03:03:14 +01:00
result = auth.search('ou=users,dc=yunohost,dc=org', filter, attrs)
2012-10-28 17:27:47 +01:00
2014-03-27 03:03:14 +01:00
if len(result) > offset and limit > 0:
for user in result[offset:offset+limit]:
entry = {}
for attr, values in user.items():
try:
entry[user_attrs[attr]] = values[0]
except:
pass
result_list.append(entry)
return { 'users' : result_list }
2012-10-07 17:57:57 +02:00
2014-03-27 03:03:14 +01:00
def user_create(auth, username, firstname, lastname, mail, password):
2012-10-07 23:51:40 +02:00
"""
2013-07-06 10:17:16 +02:00
Create user
2012-10-07 23:51:40 +02:00
Keyword argument:
firstname
2013-10-31 11:21:59 +01:00
lastname
username -- Must be unique
2013-07-06 10:17:16 +02:00
mail -- Main mail address must be unique
2013-10-31 11:21:59 +01:00
password
2012-10-07 23:51:40 +02:00
"""
2014-03-27 03:03:14 +01:00
# Validate password length
if len(password) < 4:
raise MoulinetteError(22, _("Password is too short"))
auth.validate_uniqueness({
'uid' : username,
'mail' : mail
})
if mail[mail.find('@')+1:] not in domain_list()['Domains']:
raise MoulinetteError(22, _("Unknown domain '%s'") % mail[mail.find('@')+1:])
# 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)
# Adapt values for LDAP
fullname = firstname + ' ' + lastname
rdn = 'uid=' + username + ',ou=users'
char_set = string.ascii_uppercase + string.digits
salt = ''.join(random.sample(char_set,8))
salt = '$1$' + salt + '$'
pwd = '{CRYPT}' + crypt.crypt(str(password), salt)
attr_dict = {
'objectClass' : ['mailAccount', 'inetOrgPerson', 'posixAccount'],
'givenName' : firstname,
'sn' : lastname,
'displayName' : fullname,
'cn' : fullname,
'uid' : username,
'mail' : mail,
'maildrop' : username,
'userPassword' : pwd,
'gidNumber' : uid,
'uidNumber' : uid,
'homeDirectory' : '/home/' + username,
'loginShell' : '/bin/false'
}
if auth.add(rdn, attr_dict):
os.system("su - " + username + " -c ''")
os.system('yunohost app ssowatconf > /dev/null 2>&1')
#TODO: Send a welcome mail to user
msignals.display(_("User '%s' successfully created.") % username, 'success')
hook_callback('post_user_create', [username, mail, password, firstname, lastname])
return { 'fullname' : fullname, 'username' : username, 'mail' : mail }
else:
raise MoulinetteError(169, _("An error occurred during user creation"))
2012-11-08 19:20:13 +01:00
2014-03-27 03:03:14 +01:00
def user_delete(auth, users, purge=False):
2012-10-29 12:35:29 +01:00
"""
2013-07-06 10:17:16 +02:00
Delete user
2012-10-29 12:35:29 +01:00
Keyword argument:
2013-07-06 10:17:16 +02:00
users -- Username of users to delete
purge
2012-10-29 12:35:29 +01:00
"""
2014-03-27 03:03:14 +01:00
if not isinstance(users, list):
users = [ users ]
deleted = []
for user in users:
if auth.remove('uid=' + user + ',ou=users'):
if purge:
os.system('rm -rf /home/' + user)
deleted.append(user)
continue
else:
raise MoulinetteError(169, _("An error occurred during user deletion"))
2012-10-29 12:35:29 +01:00
2014-03-27 03:03:14 +01:00
os.system('yunohost app ssowatconf > /dev/null 2>&1')
msignals.display(_("User(s) successfully deleted."), 'success')
return { 'users': deleted }
2012-12-01 15:33:56 +01:00
2014-03-27 03:03:14 +01:00
def user_update(auth, username, firstname=None, lastname=None, mail=None, change_password=None, add_mailforward=None, remove_mailforward=None, add_mailalias=None, remove_mailalias=None):
2012-10-29 15:43:43 +01:00
"""
Update user informations
Keyword argument:
2013-10-31 11:21:59 +01:00
lastname
mail
firstname
2013-07-06 10:17:16 +02:00
add_mailalias -- Mail aliases to add
2013-10-31 11:21:59 +01:00
remove_mailforward -- Mailforward addresses to remove
username -- Username of user to update
add_mailforward -- Mailforward addresses to add
2013-07-06 12:59:06 +02:00
change_password -- New password to set
remove_mailalias -- Mail aliases to remove
2013-07-06 10:17:16 +02:00
2012-10-29 15:43:43 +01:00
"""
2014-03-27 03:03:14 +01:00
attrs_to_fetch = ['givenName', 'sn', 'mail', 'maildrop']
new_attr_dict = {}
domains = domain_list()['Domains']
2012-11-08 19:20:13 +01:00
2014-03-27 03:03:14 +01:00
# Populate user informations
result = auth.search(base='ou=users,dc=yunohost,dc=org', filter='uid=' + username, attrs=attrs_to_fetch)
if not result:
raise MoulinetteError(167, _("Unknown username '%s'") % username)
user = result[0]
2012-11-08 19:20:13 +01:00
2014-03-27 03:03:14 +01:00
# Get modifications from arguments
if firstname:
new_attr_dict['givenName'] = firstname # TODO: Validate
new_attr_dict['cn'] = new_attr_dict['displayName'] = firstname + ' ' + user['sn'][0]
2012-11-08 19:20:13 +01:00
2014-03-27 03:03:14 +01:00
if lastname:
new_attr_dict['sn'] = lastname # TODO: Validate
new_attr_dict['cn'] = new_attr_dict['displayName'] = user['givenName'][0] + ' ' + lastname
2012-11-08 19:20:13 +01:00
2014-03-27 03:03:14 +01:00
if lastname and firstname:
new_attr_dict['cn'] = new_attr_dict['displayName'] = firstname + ' ' + lastname
2012-11-08 19:20:13 +01:00
2014-03-27 03:03:14 +01:00
if change_password:
char_set = string.ascii_uppercase + string.digits
salt = ''.join(random.sample(char_set,8))
salt = '$1$' + salt + '$'
new_attr_dict['userPassword'] = '{CRYPT}' + crypt.crypt(str(change_password), salt)
if mail:
auth.validate_uniqueness({ 'mail': mail })
if mail[mail.find('@')+1:] not in domains:
raise MoulinetteError(22, _("Unknown domain '%s'") % mail[mail.find('@')+1:])
del user['mail'][0]
new_attr_dict['mail'] = [mail] + user['mail']
if add_mailalias:
if not isinstance(add_mailalias, list):
add_mailalias = [ add_mailalias ]
for mail in add_mailalias:
auth.validate_uniqueness({ 'mail': mail })
2013-06-08 10:35:26 +02:00
if mail[mail.find('@')+1:] not in domains:
2014-03-27 03:03:14 +01:00
raise MoulinetteError(22, _("Unknown domain '%s'") % mail[mail.find('@')+1:])
user['mail'].append(mail)
new_attr_dict['mail'] = user['mail']
if remove_mailalias:
if not isinstance(remove_mailalias, list):
remove_mailalias = [ remove_mailalias ]
for mail in remove_mailalias:
if len(user['mail']) > 1 and mail in user['mail'][1:]:
user['mail'].remove(mail)
else:
raise MoulinetteError(22, _("Invalid mail alias '%s'") % mail)
new_attr_dict['mail'] = user['mail']
if add_mailforward:
if not isinstance(add_mailforward, list):
add_mailforward = [ add_mailforward ]
for mail in add_mailforward:
if mail in user['maildrop'][1:]:
continue
user['maildrop'].append(mail)
new_attr_dict['maildrop'] = user['maildrop']
if remove_mailforward:
if not isinstance(remove_mailforward, list):
remove_mailforward = [ remove_mailforward ]
for mail in remove_mailforward:
if len(user['maildrop']) > 1 and mail in user['maildrop'][1:]:
user['maildrop'].remove(mail)
else:
raise MoulinetteError(22, _("Invalid mail forward '%s'") % mail)
new_attr_dict['maildrop'] = user['maildrop']
2012-10-29 15:43:43 +01:00
2014-03-27 03:03:14 +01:00
if auth.update('uid=' + username + ',ou=users', new_attr_dict):
msignals.display(_("User '%s' successfully updated.") % username, 'success')
return user_info(username)
else:
raise MoulinetteError(169, _("An error occurred during user update"))
2012-10-29 15:43:43 +01:00
2012-12-01 15:33:56 +01:00
2014-03-27 03:03:14 +01:00
def user_info(auth, username):
"""
2013-07-06 10:17:16 +02:00
Get user informations
Keyword argument:
2013-07-06 10:17:16 +02:00
username -- Username or mail to get informations
"""
2014-03-27 03:03:14 +01:00
user_attrs = ['cn', 'mail', 'uid', 'maildrop', 'givenName', 'sn']
2012-11-08 19:20:13 +01:00
2014-03-27 03:03:14 +01:00
if len(username.split('@')) is 2:
filter = 'mail='+ username
else:
filter = 'uid='+ username
2012-11-08 19:20:13 +01:00
2014-03-27 03:03:14 +01:00
result = auth.search('ou=users,dc=yunohost,dc=org', filter, user_attrs)
2012-12-01 15:33:56 +01:00
2014-03-27 03:03:14 +01:00
if result:
user = result[0]
else:
raise MoulinetteError(22, _("Unknown username/mail '%s'") % username)
result_dict = {
'username': user['uid'][0],
'fullname': user['cn'][0],
'firstname': user['givenName'][0],
'lastname': user['sn'][0],
'mail': user['mail'][0]
}
if len(user['mail']) > 1:
result_dict['mail-aliases'] = user['mail'][1:]
if len(user['maildrop']) > 1:
result_dict['mail-forward'] = user['maildrop'][1:]
if result:
return result_dict
else:
raise MoulinetteError(167, _("No user found"))