Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
re2o
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
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
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
Nounous
re2o
Commits
11a59ee5
Commit
11a59ee5
authored
Jul 19, 2018
by
Gabriel Detraz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix #126
parent
cfa6fe09
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
12 deletions
+12
-12
users/models.py
users/models.py
+11
-6
users/views.py
users/views.py
+1
-6
No files found.
users/models.py
View file @
11a59ee5
...
...
@@ -479,16 +479,19 @@ class User(RevMixin, FieldPermissionModelMixin, AbstractBaseUser,
interface
.
save
()
def
archive
(
self
):
""" Archive l'user : appelle unassign_ips() puis passe state à
ARCHIVE"""
""" Archive l'user"""
self
.
unassign_ips
()
self
.
state
=
User
.
STATE_ARCHIVE
def
unarchive
(
self
):
""" Désarchive l'user : réassigne ses ip et le passe en state
ACTIVE"""
""" Désarchive l'user"""
self
.
assign_ips
()
self
.
state
=
User
.
STATE_ACTIVE
def
state_sync
(
self
):
"""Archive, or unarchive, if the user was not active/or archived before"""
if
self
.
__original_state
!=
self
.
STATE_ACTIVE
and
self
.
state
==
self
.
STATE_ACTIVE
:
self
.
unarchive
()
elif
self
.
__original_state
!=
self
.
STATE_ARCHIVE
and
self
.
state
==
self
.
STATE_ARCHIVE
:
self
.
archive
()
def
ldap_sync
(
self
,
base
=
True
,
access_refresh
=
True
,
mac_refresh
=
True
,
group_refresh
=
False
):
...
...
@@ -879,6 +882,7 @@ class User(RevMixin, FieldPermissionModelMixin, AbstractBaseUser,
'force'
:
self
.
can_change_force
,
'selfpasswd'
:
self
.
check_selfpasswd
,
}
self
.
__original_state
=
self
.
state
def
__str__
(
self
):
return
self
.
pseudo
...
...
@@ -1007,6 +1011,7 @@ def user_post_save(**kwargs):
user
=
kwargs
[
'instance'
]
if
is_created
:
user
.
notif_inscription
()
user
.
state_sync
()
user
.
ldap_sync
(
base
=
True
,
access_refresh
=
True
,
...
...
users/views.py
View file @
11a59ee5
...
...
@@ -221,15 +221,10 @@ def edit_info(request, user, userid):
@
login_required
@
can_edit
(
User
,
'state'
)
def
state
(
request
,
user
,
userid
):
""" Changer l'etat actif/desactivé/archivé d'un user,
need droit bureau """
""" Changer l'etat actif/desactivé/archivé d'un user"""
state_form
=
StateForm
(
request
.
POST
or
None
,
instance
=
user
)
if
state_form
.
is_valid
():
if
state_form
.
changed_data
:
if
state_form
.
cleaned_data
[
'state'
]
==
User
.
STATE_ARCHIVE
:
user
.
archive
()
elif
state_form
.
cleaned_data
[
'state'
]
==
User
.
STATE_ACTIVE
:
user
.
unarchive
()
state_form
.
save
()
messages
.
success
(
request
,
"Etat changé avec succès"
)
return
redirect
(
reverse
(
...
...
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