mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-10-22 00:09:14 +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>
109 lines
3.4 KiB
Python
109 lines
3.4 KiB
Python
# coding: utf-8
|
|
#
|
|
|
|
from django.db import models
|
|
from django.db.models import Q
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from common.utils import lazyproperty
|
|
from .base import BasePermission, Action
|
|
from users.models import User
|
|
from applications.const import AppCategory, AppType
|
|
|
|
__all__ = [
|
|
'ApplicationPermission',
|
|
]
|
|
|
|
|
|
class ApplicationPermission(BasePermission):
|
|
category = models.CharField(
|
|
max_length=16, choices=AppCategory.choices, verbose_name=_('Category')
|
|
)
|
|
type = models.CharField(
|
|
max_length=16, choices=AppType.choices, verbose_name=_('Type')
|
|
)
|
|
applications = models.ManyToManyField(
|
|
'applications.Application', related_name='granted_by_permissions', blank=True,
|
|
verbose_name=_("Application")
|
|
)
|
|
system_users = models.ManyToManyField(
|
|
'assets.SystemUser',
|
|
related_name='granted_by_application_permissions', blank=True,
|
|
verbose_name=_("System user")
|
|
)
|
|
|
|
class Meta:
|
|
unique_together = [('org_id', 'name')]
|
|
verbose_name = _('Application permission')
|
|
ordering = ('name',)
|
|
permissions = [
|
|
('view_myapps', _('Can view my apps')),
|
|
('connect_myapps', _('Can connect my apps')),
|
|
('view_userapps', _('Can view user apps')),
|
|
('view_usergroupapps', _('Can view usergroup apps')),
|
|
]
|
|
|
|
@property
|
|
def category_remote_app(self):
|
|
return self.category == AppCategory.remote_app.value
|
|
|
|
@property
|
|
def category_db(self):
|
|
return self.category == AppCategory.db.value
|
|
|
|
@property
|
|
def category_cloud(self):
|
|
return self.category == AppCategory.cloud.value
|
|
|
|
@lazyproperty
|
|
def users_amount(self):
|
|
return self.users.count()
|
|
|
|
@lazyproperty
|
|
def user_groups_amount(self):
|
|
return self.user_groups.count()
|
|
|
|
@lazyproperty
|
|
def applications_amount(self):
|
|
return self.applications.count()
|
|
|
|
@lazyproperty
|
|
def system_users_amount(self):
|
|
return self.system_users.count()
|
|
|
|
def get_all_users(self):
|
|
user_ids = self.users.all().values_list('id', flat=True)
|
|
user_group_ids = self.user_groups.all().values_list('id', flat=True)
|
|
users = User.objects.filter(
|
|
Q(id__in=user_ids) | Q(groups__id__in=user_group_ids)
|
|
)
|
|
return users
|
|
|
|
@classmethod
|
|
def get_include_actions_choices(cls, category=None):
|
|
actions = {Action.ALL, Action.CONNECT}
|
|
if category == AppCategory.db:
|
|
_actions = [Action.UPLOAD, Action.DOWNLOAD]
|
|
elif category == AppCategory.remote_app:
|
|
_actions = [
|
|
Action.UPLOAD, Action.DOWNLOAD,
|
|
Action.CLIPBOARD_COPY, Action.CLIPBOARD_PASTE
|
|
]
|
|
else:
|
|
_actions = []
|
|
actions.update(_actions)
|
|
|
|
if (Action.UPLOAD in actions) or (Action.DOWNLOAD in actions):
|
|
actions.update([Action.UPDOWNLOAD])
|
|
if (Action.CLIPBOARD_COPY in actions) or (Action.CLIPBOARD_PASTE in actions):
|
|
actions.update([Action.CLIPBOARD_COPY_PASTE])
|
|
|
|
choices = [Action.NAME_MAP[action] for action in actions]
|
|
return choices
|
|
|
|
@classmethod
|
|
def get_exclude_actions_choices(cls, category=None):
|
|
include_choices = cls.get_include_actions_choices(category)
|
|
exclude_choices = set(Action.NAME_MAP.values()) - set(include_choices)
|
|
return exclude_choices
|