mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-05-13 10:14:11 +00:00
* feat: 添加 RBAC 应用模块 * feat: 添加 RBAC Model、API * feat: 添加 RBAC Model、API 2 * feat: 添加 RBAC Model、API 3 * feat: 添加 RBAC Model、API 4 * feat: RBAC * feat: RBAC * feat: RBAC * feat: RBAC * feat: RBAC * feat: RBAC 整理权限位 * feat: RBAC 整理权限位2 * feat: RBAC 整理权限位2 * feat: RBAC 整理权限位 * feat: RBAC 添加默认角色 * feat: RBAC 添加迁移文件;迁移用户角色->用户角色绑定 * feat: RBAC 添加迁移文件;迁移用户角色->用户角色绑定 * feat: RBAC 修改用户模块API * feat: RBAC 添加组织模块迁移文件 & 修改组织模块API * feat: RBAC 添加组织模块迁移文件 & 修改组织模块API * feat: RBAC 修改用户角色属性的使用 * feat: RBAC No.1 * xxx * perf: 暂存 * perf: ... * perf(rbac): 添加 perms 到 profile serializer 中 * stash * perf: 使用init * perf: 修改migrations * perf: rbac * stash * stash * pref: 修改rbac * stash it * stash: 先去修复其他bug * perf: 修改 role 添加 users * pref: 修改 RBAC Model * feat: 添加权限的 tree api * stash: 暂存一下 * stash: 暂存一下 * perf: 修改 model verbose name * feat: 添加model各种 verbose name * perf: 生成 migrations * perf: 优化权限位 * perf: 添加迁移脚本 * feat: 添加组织角色迁移 * perf: 添加迁移脚本 * stash * perf: 添加migrateion * perf: 暂存一下 * perf: 修改rbac * perf: stash it * fix: 迁移冲突 * fix: 迁移冲突 * perf: 暂存一下 * perf: 修改 rbac 逻辑 * stash: 暂存一下 * perf: 修改内置角色 * perf: 解决 root 组织的问题 * perf: stash it * perf: 优化 rbac * perf: 优化 rolebinding 处理 * perf: 完成用户离开组织的问题 * perf: 暂存一下 * perf: 修改翻译 * perf: 去掉了 IsSuperUser * perf: IsAppUser 去掉完成 * perf: 修改 connection token 的权限 * perf: 去掉导入的问题 * perf: perms define 格式,修改 app 用户 的全新啊 * perf: 修改 permission * perf: 去掉一些 org admin * perf: 去掉部分 org admin * perf: 再去掉点 org admin role * perf: 再去掉部分 org admin * perf: user 角色搜索 * perf: 去掉很多 js * perf: 添加权限位 * perf: 修改权限 * perf: 去掉一个 todo * merge: with dev * fix: 修复冲突 Co-authored-by: Bai <bugatti_it@163.com> Co-authored-by: Michael Bai <baijiangjie@gmail.com> Co-authored-by: ibuler <ibuler@qq.com>
133 lines
4.0 KiB
Python
133 lines
4.0 KiB
Python
from rest_framework.mixins import ListModelMixin, UpdateModelMixin, RetrieveModelMixin
|
|
from rest_framework.views import APIView
|
|
from rest_framework.response import Response
|
|
|
|
from common.drf.api import JMSGenericViewSet
|
|
from common.permissions import IsValidUser
|
|
from notifications.notifications import system_msgs
|
|
from notifications.models import SystemMsgSubscription, UserMsgSubscription
|
|
from notifications.backends import BACKEND
|
|
from notifications.serializers import (
|
|
SystemMsgSubscriptionSerializer, SystemMsgSubscriptionByCategorySerializer,
|
|
UserMsgSubscriptionSerializer,
|
|
)
|
|
|
|
__all__ = (
|
|
'BackendListView', 'SystemMsgSubscriptionViewSet',
|
|
'UserMsgSubscriptionViewSet', 'get_all_test_messages'
|
|
)
|
|
|
|
|
|
class BackendListView(APIView):
|
|
def get(self, request):
|
|
data = [
|
|
{
|
|
'name': backend,
|
|
'name_display': backend.label
|
|
}
|
|
for backend in BACKEND.choices
|
|
if backend.is_enable
|
|
]
|
|
return Response(data=data)
|
|
|
|
|
|
class SystemMsgSubscriptionViewSet(ListModelMixin,
|
|
UpdateModelMixin,
|
|
JMSGenericViewSet):
|
|
lookup_field = 'message_type'
|
|
queryset = SystemMsgSubscription.objects.all()
|
|
serializer_classes = {
|
|
'list': SystemMsgSubscriptionByCategorySerializer,
|
|
'update': SystemMsgSubscriptionSerializer,
|
|
'partial_update': SystemMsgSubscriptionSerializer
|
|
}
|
|
rbac_perms = {
|
|
|
|
}
|
|
|
|
def list(self, request, *args, **kwargs):
|
|
data = []
|
|
category_children_mapper = {}
|
|
|
|
subscriptions = self.get_queryset()
|
|
msgtype_sub_mapper = {}
|
|
for sub in subscriptions:
|
|
msgtype_sub_mapper[sub.message_type] = sub
|
|
|
|
for msg in system_msgs:
|
|
message_type = msg['message_type']
|
|
message_type_label = msg['message_type_label']
|
|
category = msg['category']
|
|
category_label = msg['category_label']
|
|
|
|
if category not in category_children_mapper:
|
|
children = []
|
|
|
|
data.append({
|
|
'category': category,
|
|
'category_label': category_label,
|
|
'children': children
|
|
})
|
|
category_children_mapper[category] = children
|
|
|
|
sub = msgtype_sub_mapper[message_type]
|
|
sub.message_type_label = message_type_label
|
|
category_children_mapper[category].append(sub)
|
|
|
|
serializer = self.get_serializer(data, many=True)
|
|
return Response(data=serializer.data)
|
|
|
|
|
|
class UserMsgSubscriptionViewSet(ListModelMixin,
|
|
RetrieveModelMixin,
|
|
UpdateModelMixin,
|
|
JMSGenericViewSet):
|
|
lookup_field = 'user_id'
|
|
serializer_class = UserMsgSubscriptionSerializer
|
|
permission_classes = (IsValidUser,)
|
|
|
|
def get_queryset(self):
|
|
queryset = UserMsgSubscription.objects.filter(user=self.request.user)
|
|
return queryset
|
|
|
|
|
|
|
|
def get_all_test_messages(request):
|
|
import textwrap
|
|
from ..notifications import Message
|
|
from django.shortcuts import HttpResponse
|
|
|
|
msgs_cls = Message.get_all_sub_messages()
|
|
html_data = '<h3>HTML 格式 </h3>'
|
|
text_data = '<h3>Text 格式</h3>'
|
|
|
|
for msg_cls in msgs_cls:
|
|
try:
|
|
msg = msg_cls.gen_test_msg()
|
|
if not msg:
|
|
continue
|
|
msg_html = msg.html_msg_with_sign['message']
|
|
msg_text = msg.text_msg_with_sign['message']
|
|
except NotImplementedError:
|
|
msg_html = msg_text = '没有实现方法'
|
|
except Exception as e:
|
|
msg_html = msg_text = 'Error: ' + str(e)
|
|
|
|
html_data += """
|
|
<h3>{}</h3>
|
|
{}
|
|
<hr />
|
|
""".format(msg_cls.__name__, msg_html)
|
|
|
|
text_data += textwrap.dedent("""
|
|
<h3>{}</h3>
|
|
<pre>
|
|
{}
|
|
</pre>
|
|
<br/>
|
|
<hr />
|
|
""").format(msg_cls.__name__, msg_text)
|
|
return HttpResponse(html_data + text_data)
|
|
|
|
|