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
b3d272de
Commit
b3d272de
authored
4 years ago
by
Valentin Rigal
Browse files
Options
Downloads
Patches
Plain Diff
Suggestions
parent
2fa82306
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
+18
-5
18 additions, 5 deletions
arkindex/project/mixins.py
with
18 additions
and
5 deletions
arkindex/project/mixins.py
+
18
−
5
View file @
b3d272de
from
django.conf
import
settings
from
django.core.exceptions
import
PermissionDenied
from
django.db.models
import
IntegerField
,
Q
,
Value
,
functions
from
django.db.models.query_utils
import
DeferredAttribute
from
django.shortcuts
import
get_object_or_404
from
django.views.decorators.cache
import
cache_page
from
rest_framework.exceptions
import
APIException
,
ValidationError
...
...
@@ -28,6 +29,14 @@ class ACLMixin(object):
def
user
(
self
):
return
self
.
_user
or
self
.
request
.
user
def
_check_level
(
self
,
level
):
assert
type
(
level
)
is
int
,
'
An integer level is required to compare access rights.
'
assert
level
>=
1
,
'
Level integer should be greater than or equal to 1.
'
assert
level
<=
100
,
'
level integer should be lower than or equal to 100
'
def
_has_public_field
(
self
,
model
):
return
type
(
getattr
(
model
,
'
public
'
,
None
))
is
DeferredAttribute
def
get_public_instances
(
self
,
model
,
default_level
):
return
model
.
objects
\
.
filter
(
public
=
True
)
\
...
...
@@ -37,14 +46,16 @@ class ACLMixin(object):
"""
Return a model queryset matching a given access level for this user.
"""
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
:
if
not
public
:
if
not
include_
public
:
return
model
.
objects
.
none
()
else
:
return
self
.
get_public_instances
(
model
,
Role
.
Guest
.
value
)
return
self
.
get_public_instances
(
model
,
Role
.
Guest
.
value
)
# Filter users rights and annotate the resulting level for those rights
queryset
=
model
.
objects
\
...
...
@@ -65,13 +76,15 @@ class ACLMixin(object):
queryset
=
queryset
.
filter
(
max_level__gte
=
level
)
# Use a join to add public instances as this is the more elegant solution
if
public
and
level
<=
Role
.
Guest
.
value
:
if
include_public
:
queryset
=
queryset
.
union
(
self
.
get_public_instances
(
model
,
Role
.
Guest
.
value
))
# Return distinct corpus with the max right level among matching rights
return
queryset
.
order_by
(
'
id
'
,
'
-max_level
'
).
distinct
(
'
id
'
)
def
has_access
(
self
,
instance
,
level
):
self
.
_check_level
(
level
)
if
self
.
user
.
is_admin
or
self
.
user
.
is_internal
:
return
True
return
instance
.
memberships
.
filter
(
...
...
@@ -113,7 +126,7 @@ class NewCorpusACLMixin(ACLMixin):
@property
def
readable_corpora
(
self
):
return
self
.
rights_filter
(
Corpus
,
Role
.
Guest
.
value
,
public
=
True
)
return
self
.
rights_filter
(
Corpus
,
Role
.
Guest
.
value
)
@property
def
writable_corpora
(
self
):
...
...
This diff is collapsed.
Click to expand it.
Bastien Abadie
@babadie
mentioned in merge request
!1131 (merged)
·
4 years ago
mentioned in merge request
!1131 (merged)
Edited
4 years ago
by
Ghost User
mentioned in merge request !1131
Toggle commit list
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