forked from MohamedBouarada/WeChat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ldap_server.py
115 lines (92 loc) · 3.65 KB
/
ldap_server.py
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
import ldap
import hashlib
from base64 import b64encode
from dotenv.main import load_dotenv
import os
# cn or uid
load_dotenv()
class LdapServer:
ldap_server = "ldap://localhost:389" # host address
ldap_ou = "People" # organization unit
ldap_dc = os.environ["LDAP_DC"]
# admin domain
LDAP_ADMIN_DN = "cn=admin" + ldap_dc
LDAP_ADMIN_PWD = ""
def __init__(self, admin_pwd):
self.LDAP_ADMIN_PWD = admin_pwd
def login(self, username, password):
self.username = username
self.password = password
# organization user domain
user_dn = "cn=" + self.username + ",ou=" + self.ldap_ou + self.ldap_dc
# base domain
LDAP_BASE_DN = "ou=" + self.ldap_ou + self.ldap_dc
# start connection
ldap_client = ldap.initialize(self.ldap_server)
# search for specific user
search_filter = "cn=" + self.username
try:
# if authentication successful, get the full user data
ldap_client.bind_s(user_dn, self.password)
result = ldap_client.search_s(
LDAP_BASE_DN, ldap.SCOPE_SUBTREE, search_filter
)
# return user data
ldap_client.unbind_s()
return None
except ldap.INVALID_CREDENTIALS:
ldap_client.unbind()
return "Wrong username or password.."
except ldap.SERVER_DOWN:
return "Server is down at the moment, please try again later!"
except ldap.LDAPError:
ldap_client.unbind_s()
return "Authentication error!"
def register(self, user):
# base domain
LDAP_BASE_DN = "ou=" + self.ldap_ou + self.ldap_dc
# home directory
HOME_DIRECTORY = "/home/users"
# new user domain
dn = "cn=" + user["username"] + "," + LDAP_BASE_DN
home_dir = HOME_DIRECTORY + "/" + user["username"]
gid = user["group_id"]
# encoding password using md5 hash function
hashed_pwd = hashlib.md5(user["password"].encode("UTF-8"))
entry = []
entry.extend(
[
("objectClass", [b"inetOrgPerson", b"posixAccount", b"top"]),
("uid", user["username"].encode("UTF-8")),
("givenname", user["firstname"].encode("UTF-8")),
("sn", user["lastname"].encode("UTF-8")),
("mail", user["email"].encode("UTF-8")),
("uidNumber", user["uid"].encode("UTF-8")),
("gidNumber", str(gid).encode("UTF-8")),
("loginShell", [b"/bin/sh"]),
("homeDirectory", home_dir.encode("UTF-8")),
("userPassword", [b"{md5}" + b64encode(hashed_pwd.digest())]),
]
)
# connect to host with admin
ldap_conn = ldap.initialize(self.ldap_server)
ldap_conn.simple_bind_s(self.LDAP_ADMIN_DN, self.LDAP_ADMIN_PWD)
try:
search_filter = "cn=" + user["username"]
result = ldap_conn.search_s(LDAP_BASE_DN, ldap.SCOPE_SUBTREE, search_filter)
search_filter_uid = "uidNumber=" + user["uid"]
result_uid = ldap_conn.search_s(
LDAP_BASE_DN, ldap.SCOPE_SUBTREE, search_filter_uid
)
# add entry in the directory
if not result and not result_uid:
ldap_conn.add_s(dn, entry)
return None
elif result:
return "userername already used !!!"
else:
return "N°carte already used !!!"
finally:
# disconnect and free memory
ldap_conn.unbind_s()
s = LdapServer(admin_pwd=os.environ["ADMIN_PWD"])