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
c72f97de
Commit
c72f97de
authored
Feb 03, 2019
by
PCoder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add code to create user's unix profile also
parent
f3d90a2b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
5 deletions
+30
-5
ipv6work/settings.py
ipv6work/settings.py
+1
-1
users/ldap_funcs.py
users/ldap_funcs.py
+29
-4
No files found.
ipv6work/settings.py
View file @
c72f97de
...
...
@@ -220,7 +220,7 @@ LDAP_MAX_UID_PATH = os.path.join(
'ldap_max_uid_file'
)
IPV6_WORK_USER_GROUP
=
config
(
'
IPV6_WORK_USER_GROUP'
,
cast
=
int
)
LDAP_IPV6_WORK_USER_GROUP
=
config
(
'LDAP_
IPV6_WORK_USER_GROUP'
,
cast
=
int
)
def
set_max_uid
(
max_uid
):
...
...
users/ldap_funcs.py
View file @
c72f97de
from
django.conf
import
settings
from
ldap3
import
Server
,
ServerPool
,
Connection
,
ObjectDef
,
AttrDef
,
Reader
,
Writer
from
ldap3
import
Server
,
Connection
,
ObjectDef
,
Writer
,
SUBTREE
import
logging
logger
=
logging
.
getLogger
(
__name__
)
server
=
Server
(
settings
.
AUTH_LDAP_SERVER_URI
)
def
create_user
(
user
,
password
,
firstname
,
lastname
,
email
):
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'
],
conn
)
obj_new_user
=
ObjectDef
([
'inetOrgPerson'
,
'posixAccount'
],
conn
)
uid
=
settings
.
get_max_uid
()
+
1
results
=
True
while
results
:
results
=
conn
.
search
(
search_base
=
settings
.
LDAP_SEARCH_BASE
,
search_filter
=
(
'(&(objectClass=inetOrgPerson)(objectClass=posixAccount)'
'(objectClass=top)(uidNumber={uidNumber}))'
.
format
(
uidNumber
=
uid
)
),
search_scope
=
SUBTREE
,
attributes
=
[
'uidNumber'
],
)
if
results
:
logger
.
debug
(
"{uid} exists. Trying next."
.
format
(
uid
=
uid
))
uid
+=
1
else
:
logger
.
debug
(
"{uid} does not exist. Using it"
.
format
(
uid
=
uid
))
w
=
Writer
(
conn
,
obj_new_user
)
dn
=
'uid=%s,ou=users,dc=ungleich,dc=ch'
%
user
w
.
new
(
dn
)
...
...
@@ -20,9 +41,13 @@ def create_user(user, password, firstname, lastname, email):
w
[
0
].
cn
=
firstname
+
" "
+
lastname
w
[
0
].
mail
=
email
w
[
0
].
userPassword
=
password
w
[
0
].
gidNumber
=
settings
.
IPV6_WORK_USER_GROUP
w
[
0
].
uidNumber
=
uid
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"
)
conn
.
unbind
()
return
True
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