Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Arkindex
Backend
Commits
dfd12889
Commit
dfd12889
authored
4 years ago
by
Valentin Rigal
Browse files
Options
Downloads
Patches
Plain Diff
Correct handling of special authentications in the mixin
parent
a4807bc9
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
arkindex/project/mixins.py
+10
-5
10 additions, 5 deletions
arkindex/project/mixins.py
with
10 additions
and
5 deletions
arkindex/project/mixins.py
+
10
−
5
View file @
dfd12889
...
...
@@ -51,13 +51,18 @@ class ACLMixin(object):
self
.
_check_level
(
level
)
include_public
=
level
<=
Role
.
Guest
.
value
and
self
.
_has_public_field
(
model
)
# Handle specific cases (i.e. admin or anonymous user)
if
self
.
user
.
is_admin
or
self
.
user
.
is_internal
:
return
model
.
objects
.
all
().
annotate
(
max_level
=
Value
(
Role
.
Admin
.
value
))
elif
self
.
user
.
is_anonymous
:
# Handle special authentications
if
self
.
user
.
is_anonymous
:
# Anonymous users have Guest access on public instances only
if
not
include_public
:
return
model
.
objects
.
none
()
return
self
.
get_public_instances
(
model
,
Role
.
Guest
.
value
)
return
self
.
get_public_instances
(
model
,
Role
.
Guest
.
value
)
\
.
order_by
(
*
self
.
mixin_order_by_fields
,
'
id
'
)
elif
self
.
user
.
is_admin
or
self
.
user
.
is_internal
:
# Superusers have an Admin access to all corpora
return
model
.
objects
.
all
()
\
.
annotate
(
max_level
=
Value
(
Role
.
Admin
.
value
,
IntegerField
()))
\
.
order_by
(
*
self
.
mixin_order_by_fields
,
'
id
'
)
# Filter users rights and annotate the resulting level for those rights
queryset
=
model
.
objects
\
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment