2016-11-02 00:09:59 +01:00
|
|
|
from copy import deepcopy
|
2017-09-04 00:25:45 +02:00
|
|
|
from typing import Any, Dict, List, Optional
|
2016-11-02 00:09:59 +01:00
|
|
|
|
2018-08-22 22:00:08 +02:00
|
|
|
from ..utils.access_permissions import BaseAccessPermissions
|
2018-08-31 15:33:41 +02:00
|
|
|
from ..utils.auth import has_perm, in_some_groups
|
2017-09-04 00:25:45 +02:00
|
|
|
from ..utils.collection import CollectionElement
|
2016-02-11 22:58:32 +01:00
|
|
|
|
|
|
|
|
|
|
|
class MotionAccessPermissions(BaseAccessPermissions):
|
|
|
|
"""
|
|
|
|
Access permissions container for Motion and MotionViewSet.
|
|
|
|
"""
|
2016-09-17 22:26:23 +02:00
|
|
|
def check_permissions(self, user):
|
2016-02-11 22:58:32 +01:00
|
|
|
"""
|
|
|
|
Returns True if the user has read access model instances.
|
|
|
|
"""
|
2016-12-17 09:30:20 +01:00
|
|
|
return has_perm(user, 'motions.can_see')
|
2016-02-11 22:58:32 +01:00
|
|
|
|
2016-03-02 00:46:19 +01:00
|
|
|
def get_serializer_class(self, user=None):
|
2016-02-11 22:58:32 +01:00
|
|
|
"""
|
|
|
|
Returns serializer class.
|
|
|
|
"""
|
|
|
|
from .serializers import MotionSerializer
|
|
|
|
|
|
|
|
return MotionSerializer
|
|
|
|
|
2017-09-04 00:25:45 +02:00
|
|
|
def get_restricted_data(
|
|
|
|
self,
|
|
|
|
full_data: List[Dict[str, Any]],
|
|
|
|
user: Optional[CollectionElement]) -> List[Dict[str, Any]]:
|
2016-07-29 23:33:47 +02:00
|
|
|
"""
|
|
|
|
Returns the restricted serialized data for the instance prepared for
|
2016-12-09 18:00:45 +01:00
|
|
|
the user. Removes motion if the user has not the permission to see
|
2018-08-31 15:33:41 +02:00
|
|
|
the motion in this state. Removes comments sections for
|
2017-05-01 23:12:42 +02:00
|
|
|
some unauthorized users. Ensures that a user can only see his own
|
|
|
|
personal notes.
|
2016-07-29 23:33:47 +02:00
|
|
|
"""
|
2017-05-01 23:12:42 +02:00
|
|
|
# Parse data.
|
|
|
|
if has_perm(user, 'motions.can_see'):
|
|
|
|
# TODO: Refactor this after personal_notes system is refactored.
|
|
|
|
data = []
|
|
|
|
for full in full_data:
|
|
|
|
# Check if user is submitter of this motion.
|
|
|
|
if isinstance(user, CollectionElement):
|
2018-06-12 14:17:02 +02:00
|
|
|
is_submitter = user.get_full_data()['id'] in [
|
|
|
|
submitter['user_id'] for submitter in full.get('submitters', [])]
|
2017-05-01 23:12:42 +02:00
|
|
|
else:
|
|
|
|
# Anonymous users can not be submitters.
|
|
|
|
is_submitter = False
|
|
|
|
|
|
|
|
# Check see permission for this motion.
|
|
|
|
required_permission_to_see = full['state_required_permission_to_see']
|
|
|
|
permission = (
|
|
|
|
not required_permission_to_see or
|
|
|
|
has_perm(user, required_permission_to_see) or
|
|
|
|
has_perm(user, 'motions.can_manage') or
|
|
|
|
is_submitter)
|
|
|
|
|
|
|
|
# Parse single motion.
|
|
|
|
if permission:
|
2018-08-31 15:33:41 +02:00
|
|
|
full_copy = deepcopy(full)
|
|
|
|
full_copy['comments'] = []
|
|
|
|
for comment in full['comments']:
|
|
|
|
if in_some_groups(user, comment['read_groups_id']):
|
|
|
|
full_copy['comments'].append(comment)
|
|
|
|
data.append(full_copy)
|
2017-05-01 23:12:42 +02:00
|
|
|
else:
|
|
|
|
data = []
|
|
|
|
|
2017-09-04 00:25:45 +02:00
|
|
|
return data
|
2016-07-29 23:33:47 +02:00
|
|
|
|
2017-09-04 00:25:45 +02:00
|
|
|
def get_projector_data(self, full_data: List[Dict[str, Any]]) -> List[Dict[str, Any]]:
|
2016-09-17 22:26:23 +02:00
|
|
|
"""
|
|
|
|
Returns the restricted serialized data for the instance prepared
|
2018-08-31 15:33:41 +02:00
|
|
|
for the projector. Removes all comments.
|
2016-09-17 22:26:23 +02:00
|
|
|
"""
|
2017-06-13 21:44:45 +02:00
|
|
|
data = []
|
|
|
|
for full in full_data:
|
2018-08-31 15:33:41 +02:00
|
|
|
full_copy = deepcopy(full)
|
|
|
|
full_copy['comments'] = []
|
|
|
|
data.append(full_copy)
|
2017-09-04 00:25:45 +02:00
|
|
|
return data
|
2016-09-17 22:26:23 +02:00
|
|
|
|
2016-02-11 22:58:32 +01:00
|
|
|
|
2016-09-10 18:49:38 +02:00
|
|
|
class MotionChangeRecommendationAccessPermissions(BaseAccessPermissions):
|
|
|
|
"""
|
|
|
|
Access permissions container for MotionChangeRecommendation and MotionChangeRecommendationViewSet.
|
|
|
|
"""
|
|
|
|
def check_permissions(self, user):
|
|
|
|
"""
|
|
|
|
Returns True if the user has read access model instances.
|
|
|
|
"""
|
2016-12-17 09:30:20 +01:00
|
|
|
return has_perm(user, 'motions.can_see')
|
2016-09-10 18:49:38 +02:00
|
|
|
|
|
|
|
def get_serializer_class(self, user=None):
|
|
|
|
"""
|
|
|
|
Returns serializer class.
|
|
|
|
"""
|
|
|
|
from .serializers import MotionChangeRecommendationSerializer
|
|
|
|
|
|
|
|
return MotionChangeRecommendationSerializer
|
|
|
|
|
|
|
|
|
2018-08-31 15:33:41 +02:00
|
|
|
class MotionCommentSectionAccessPermissions(BaseAccessPermissions):
|
|
|
|
"""
|
|
|
|
Access permissions container for MotionCommentSection and MotionCommentSectionViewSet.
|
|
|
|
"""
|
|
|
|
def check_permissions(self, user):
|
|
|
|
"""
|
|
|
|
Returns True if the user has read access model instances.
|
|
|
|
"""
|
|
|
|
return has_perm(user, 'motions.can_see')
|
|
|
|
|
|
|
|
def get_serializer_class(self, user=None):
|
|
|
|
"""
|
|
|
|
Returns serializer class.
|
|
|
|
"""
|
|
|
|
from .serializers import MotionCommentSectionSerializer
|
|
|
|
|
|
|
|
return MotionCommentSectionSerializer
|
|
|
|
|
|
|
|
def get_restricted_data(
|
|
|
|
self,
|
|
|
|
full_data: List[Dict[str, Any]],
|
|
|
|
user: Optional[CollectionElement]) -> List[Dict[str, Any]]:
|
|
|
|
"""
|
|
|
|
If the user has manage rights, he can see all sections. If not all sections
|
|
|
|
will be removed, when the user is not in at least one of the read_groups.
|
|
|
|
"""
|
|
|
|
data: List[Dict[str, Any]] = []
|
|
|
|
if has_perm(user, 'motions.can_manage'):
|
|
|
|
data = full_data
|
|
|
|
else:
|
|
|
|
for full in full_data:
|
|
|
|
read_groups = full.get('read_groups_id', [])
|
|
|
|
if in_some_groups(user, read_groups):
|
|
|
|
data.append(full)
|
|
|
|
return data
|
|
|
|
|
|
|
|
|
2016-02-11 22:58:32 +01:00
|
|
|
class CategoryAccessPermissions(BaseAccessPermissions):
|
|
|
|
"""
|
|
|
|
Access permissions container for Category and CategoryViewSet.
|
|
|
|
"""
|
2016-09-17 22:26:23 +02:00
|
|
|
def check_permissions(self, user):
|
2016-02-11 22:58:32 +01:00
|
|
|
"""
|
|
|
|
Returns True if the user has read access model instances.
|
|
|
|
"""
|
2016-12-17 09:30:20 +01:00
|
|
|
return has_perm(user, 'motions.can_see')
|
2016-02-11 22:58:32 +01:00
|
|
|
|
2016-03-02 00:46:19 +01:00
|
|
|
def get_serializer_class(self, user=None):
|
2016-02-11 22:58:32 +01:00
|
|
|
"""
|
|
|
|
Returns serializer class.
|
|
|
|
"""
|
|
|
|
from .serializers import CategorySerializer
|
|
|
|
|
|
|
|
return CategorySerializer
|
|
|
|
|
|
|
|
|
2016-10-01 20:42:44 +02:00
|
|
|
class MotionBlockAccessPermissions(BaseAccessPermissions):
|
|
|
|
"""
|
|
|
|
Access permissions container for Category and CategoryViewSet.
|
|
|
|
"""
|
|
|
|
def check_permissions(self, user):
|
|
|
|
"""
|
|
|
|
Returns True if the user has read access model instances.
|
|
|
|
"""
|
2016-12-17 09:30:20 +01:00
|
|
|
return has_perm(user, 'motions.can_see')
|
2016-10-01 20:42:44 +02:00
|
|
|
|
|
|
|
def get_serializer_class(self, user=None):
|
|
|
|
"""
|
|
|
|
Returns serializer class.
|
|
|
|
"""
|
|
|
|
from .serializers import MotionBlockSerializer
|
|
|
|
|
|
|
|
return MotionBlockSerializer
|
|
|
|
|
|
|
|
|
2016-02-11 22:58:32 +01:00
|
|
|
class WorkflowAccessPermissions(BaseAccessPermissions):
|
|
|
|
"""
|
|
|
|
Access permissions container for Workflow and WorkflowViewSet.
|
|
|
|
"""
|
2016-09-17 22:26:23 +02:00
|
|
|
def check_permissions(self, user):
|
2016-02-11 22:58:32 +01:00
|
|
|
"""
|
|
|
|
Returns True if the user has read access model instances.
|
|
|
|
"""
|
2016-12-17 09:30:20 +01:00
|
|
|
return has_perm(user, 'motions.can_see')
|
2016-02-11 22:58:32 +01:00
|
|
|
|
2016-03-02 00:46:19 +01:00
|
|
|
def get_serializer_class(self, user=None):
|
2016-02-11 22:58:32 +01:00
|
|
|
"""
|
|
|
|
Returns serializer class.
|
|
|
|
"""
|
|
|
|
from .serializers import WorkflowSerializer
|
|
|
|
|
|
|
|
return WorkflowSerializer
|