Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
I
ipv6-dot-work
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ungleich-public
ipv6-dot-work
Commits
88a58595
Commit
88a58595
authored
Feb 03, 2019
by
PCoder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor code
parent
c72f97de
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
31 deletions
+39
-31
ipv6work/settings.py
ipv6work/settings.py
+3
-25
users/ldap_funcs.py
users/ldap_funcs.py
+36
-6
No files found.
ipv6work/settings.py
View file @
88a58595
...
...
@@ -222,31 +222,9 @@ LDAP_MAX_UID_PATH = os.path.join(
LDAP_IPV6_WORK_USER_GROUP
=
config
(
'LDAP_IPV6_WORK_USER_GROUP'
,
cast
=
int
)
def
set_max_uid
(
max_uid
):
"""
a utility function to save max_uid value to a file
:param max_uid: an integer representing the max uid
:return:
"""
with
open
(
LDAP_MAX_UID_PATH
,
'w+'
)
as
handler
:
handler
.
write
(
max_uid
)
def
get_max_uid
():
"""
A utility function to read the max uid value that was previously set
:return: An integer representing the max uid value that was previously set
"""
try
:
with
open
(
LDAP_MAX_UID_PATH
,
'r+'
)
as
handler
:
return
int
(
handler
.
read
())
except
FileNotFoundError
as
fnfe
:
logger
.
error
(
"File not found : "
+
str
(
fnfe
))
ret
=
config
(
'DEFAULT_START_UID'
,
cast
=
int
,
default
=
10000
)
logger
.
error
(
"So, returing UID={}"
.
format
(
ret
))
LDAP_DEFAULT_START_UID
=
config
(
'LDAP_DEFAULT_START_UID'
,
cast
=
int
,
default
=
10000
)
if
config
(
'ENABLE_DEBUG_LOG'
,
cast
=
bool
,
default
=
False
):
loggers_dict
=
{}
...
...
users/ldap_funcs.py
View file @
88a58595
...
...
@@ -7,13 +7,16 @@ server = Server(settings.AUTH_LDAP_SERVER_URI)
def
create_user
(
user
,
password
,
firstname
,
lastname
,
email
):
logger
.
debug
(
"In create_user"
)
conn
=
Connection
(
server
,
settings
.
AUTH_LDAP_BIND_DN
,
settings
.
AUTH_LDAP_BIND_PASSWORD
)
if
not
conn
.
bind
():
logger
.
error
(
"conn.bind() returned False. Could not connect."
)
raise
Exception
(
'Could not connect to LDAP Server'
)
obj_new_user
=
ObjectDef
([
'inetOrgPerson'
,
'posixAccount'
],
conn
)
uid
=
settings
.
get_max_uid
()
+
1
uidNumber
=
settings
.
get_max_uid
()
+
1
logger
.
debug
(
"uidNumber={uidNumber}"
.
format
(
uidNumber
=
uidNumber
))
results
=
True
while
results
:
results
=
conn
.
search
(
...
...
@@ -21,17 +24,17 @@ def create_user(user, password, firstname, lastname, email):
search_filter
=
(
'(&(objectClass=inetOrgPerson)(objectClass=posixAccount)'
'(objectClass=top)(uidNumber={uidNumber}))'
.
format
(
uidNumber
=
uid
uidNumber
=
uid
Number
)
),
search_scope
=
SUBTREE
,
attributes
=
[
'uidNumber'
],
)
if
results
:
logger
.
debug
(
"{uid} exists. Trying next."
.
format
(
uid
=
uid
))
uid
+=
1
logger
.
debug
(
"{uid} exists. Trying next."
.
format
(
uid
=
uid
Number
))
uid
Number
+=
1
else
:
logger
.
debug
(
"{uid} does not exist. Using it"
.
format
(
uid
=
uid
))
logger
.
debug
(
"{uid} does not exist. Using it"
.
format
(
uid
=
uid
Number
))
w
=
Writer
(
conn
,
obj_new_user
)
dn
=
'uid=%s,ou=users,dc=ungleich,dc=ch'
%
user
...
...
@@ -42,12 +45,39 @@ def create_user(user, password, firstname, lastname, email):
w
[
0
].
mail
=
email
w
[
0
].
userPassword
=
password
w
[
0
].
gidNumber
=
settings
.
IPV6_WORK_USER_GROUP
w
[
0
].
uidNumber
=
uid
w
[
0
].
uidNumber
=
uid
Number
w
[
0
].
homeDirectory
=
"/home/"
+
user
if
not
w
.
commit
():
conn
.
unbind
()
logger
.
error
(
"w.commit() returned False. Could not write user."
)
raise
Exception
(
"Couldn't write user"
)
logger
.
debug
(
"Created user {user} successfully."
.
format
(
user
=
user
))
conn
.
unbind
()
return
True
def
set_max_uid
(
max_uid
):
"""
a utility function to save max_uid value to a file
:param max_uid: an integer representing the max uid
:return:
"""
with
open
(
settings
.
LDAP_MAX_UID_PATH
,
'w+'
)
as
handler
:
handler
.
write
(
max_uid
)
def
get_max_uid
():
"""
A utility function to read the max uid value that was previously set
:return: An integer representing the max uid value that was previously set
"""
try
:
with
open
(
settings
.
LDAP_MAX_UID_PATH
,
'r+'
)
as
handler
:
return
int
(
handler
.
read
())
except
FileNotFoundError
as
fnfe
:
logger
.
error
(
"File not found : "
+
str
(
fnfe
))
ret
=
settings
.
LDAP_DEFAULT_START_UID
logger
.
error
(
"So, returing UID={}"
.
format
(
ret
))
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment