mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-01-15 14:47:24 +00:00
* [Update] 暂存,优化解决不了问题 * [Update] 待续(小白) * [Update] 修改asset user * [Update] 计划再次更改 * [Update] 修改asset user * [Update] 暂存与喜爱 * [Update] Add id in * [Update] 阶段性完成ops task该做 * [Update] 修改asset user api * [Update] 修改asset user 任务,查看认证等 * [Update] 基本完成asset user改造 * [Update] dynamic user only allow 1 * [Update] 修改asset user task * [Update] 修改node admin user task api * [Update] remove file header license * [Update] 添加sftp root * [Update] 暂存 * [Update] 暂存 * [Update] 修改翻译 * [Update] 修改系统用户改为同名后,用户名改为空 * [Update] 基本完成CAS调研 * [Update] 支持cas server * [Update] 支持cas server * [Update] 添加requirements * [Update] 为方便调试添加mysql ipython到包中 * [Update] 添加huaweiyun翻译 * [Update] 增加下载session 录像 * [Update] 只有第一次通知replay离线的使用方法 * [Update] 暂存一下 * [Bugfix] 获取系统用户信息报错 * [Bugfix] 修改system user info * [Update] 改成清理10天git status * [Update] 修改celery日志保留时间 * [Update]修复部分pip包依赖的版本不兼容问题 (#3672) * [Update] 修复用户更新页面会清空用户public_key的问题 * Fix broken dependencies Co-authored-by: BaiJiangJie <32935519+BaiJiangJie@users.noreply.github.com> * [Update] 修改获取系统用户auth info * [Update] Remove log * [Bugfix] 修复sftp home设置的bug * [Update] 授权的系统用户添加sftp root * [Update] 修改系统用户关联的用户 * [Update] 修改placeholder * [Update] 优化获取授权的系统用户 * [Update] 修改tasks * [Update] tree service update * [Update] 暂存 * [Update] 基本完成用户授权树和资产树改造 * [Update] Dashbaord perf * [update] Add huawei cloud sdk requirements * [Updte] 优化dashboard页面 * [Update] system user auth info 添加id * [Update] 修改系统用户serializer * [Update] 优化api * [Update] LDAP Test Util (#3720) * [Update] LDAPTestUtil 1 * [Update] LDAPTestUtil 2 * [Update] LDAPTestUtil 3 * [Update] LDAPTestUtil 4 * [Update] LDAPTestUtil 5 * [Update] LDAPTestUtil 6 * [Update] LDAPTestUtil 7 * [Update] session 已添加is success,并且添加display serializer * [Bugfix] 修复无法删除空节点的bug * [Update] 命令记录分组织显示 * [Update] Session is_success 添加迁移文件 * [Update] 批量命令添加org_id * [Update] 修复一些文案,修改不绑定MFA,不能ssh登录 * [Update] 修改replay api, 返回session信息 * [Update] 解决无效es导致访问命令记录页面失败的问题 * [Update] 拆分profile view * [Update] 修改一个翻译 * [Update] 修改aysnc api框架 * [Update] 命令列表添加risk level * [Update] 完成录像打包下载 * [Update] 更改登陆otp页面 * [Update] 修改command 存储redis_level * [Update] 修改翻译 * [Update] 修改系统用户的用户列表字段 * [Update] 使用新logo和统一Jumpserver为JumpServer * [Update] 优化cloud task * [Update] 统一period task * [Update] 统一period form serializer字段 * [Update] 修改period task * [Update] 修改资产网关信息 * [Update] 用户授权资产树资产信息添加domain * [Update] 修改翻译 * [Update] 测试可连接性 * 1.5.7 bai (#3764) * [Update] 修复index页面Bug;修复测试资产用户可连接性问题; * [Update] 修改测试资产用户可连接 * [Bugfix] 修复backends问题 * [Update] 修改marksafe依赖版本 * [Update] 修改测试资产用户可连接性 * [Update] 修改检测服务器性能时获取percent值 * [Update] 更新依赖boto3=1.12.14 Co-authored-by: Yanzhe Lee <lee.yanzhe@yanzhe.org> Co-authored-by: BaiJiangJie <32935519+BaiJiangJie@users.noreply.github.com> Co-authored-by: Bai <bugatti_it@163.com>
173 lines
5.7 KiB
Python
173 lines
5.7 KiB
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
from itertools import groupby
|
|
from django import forms
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
from common.utils import get_logger
|
|
from orgs.mixins.forms import OrgModelForm
|
|
|
|
from ..models import Asset, Platform
|
|
|
|
|
|
logger = get_logger(__file__)
|
|
__all__ = [
|
|
'AssetCreateUpdateForm', 'AssetBulkUpdateForm', 'ProtocolForm',
|
|
]
|
|
|
|
|
|
class ProtocolForm(forms.Form):
|
|
name = forms.ChoiceField(
|
|
choices=Asset.PROTOCOL_CHOICES, label=_("Name"), initial='ssh',
|
|
widget=forms.Select(attrs={'class': 'form-control protocol-name'})
|
|
)
|
|
port = forms.IntegerField(
|
|
max_value=65534, min_value=1, label=_("Port"), initial=22,
|
|
widget=forms.TextInput(attrs={'class': 'form-control protocol-port'})
|
|
)
|
|
|
|
|
|
class AssetCreateUpdateForm(OrgModelForm):
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
self.set_platform_to_name()
|
|
self.set_fields_queryset()
|
|
|
|
def set_fields_queryset(self):
|
|
nodes_field = self.fields['nodes']
|
|
nodes_choices = []
|
|
if self.instance:
|
|
nodes_choices = [
|
|
(n.id, n.full_value) for n in
|
|
self.instance.nodes.all()
|
|
]
|
|
nodes_field.choices = nodes_choices
|
|
|
|
@staticmethod
|
|
def sorted_platform(platform):
|
|
if platform['base'] == 'Other':
|
|
return 'zz'
|
|
return platform['base']
|
|
|
|
def set_platform_to_name(self):
|
|
choices = []
|
|
platforms = Platform.objects.all().values('name', 'base')
|
|
platforms_sorted = sorted(platforms, key=self.sorted_platform)
|
|
platforms_grouped = groupby(platforms_sorted, key=lambda x: x['base'])
|
|
for i in platforms_grouped:
|
|
base = i[0]
|
|
grouped = sorted(i[1], key=lambda x: x['name'])
|
|
grouped = [(j['name'], j['name']) for j in grouped]
|
|
choices.append(
|
|
(base, grouped)
|
|
)
|
|
platform_field = self.fields['platform']
|
|
platform_field.choices = choices
|
|
if self.instance:
|
|
self.initial['platform'] = self.instance.platform.name
|
|
|
|
def add_nodes_initial(self, node):
|
|
nodes_field = self.fields['nodes']
|
|
nodes_field.choices.append((node.id, node.full_value))
|
|
nodes_field.initial = [node]
|
|
|
|
class Meta:
|
|
model = Asset
|
|
fields = [
|
|
'hostname', 'ip', 'public_ip', 'protocols', 'comment',
|
|
'nodes', 'is_active', 'admin_user', 'labels', 'platform',
|
|
'domain', 'number',
|
|
]
|
|
widgets = {
|
|
'nodes': forms.SelectMultiple(attrs={
|
|
'class': 'nodes-select2', 'data-placeholder': _('Nodes')
|
|
}),
|
|
'admin_user': forms.Select(attrs={
|
|
'class': 'select2', 'data-placeholder': _('Admin user')
|
|
}),
|
|
'labels': forms.SelectMultiple(attrs={
|
|
'class': 'select2', 'data-placeholder': _('Label')
|
|
}),
|
|
'domain': forms.Select(attrs={
|
|
'class': 'select2', 'data-placeholder': _('Domain')
|
|
}),
|
|
'platform': forms.Select(attrs={
|
|
'class': 'select2', 'data-placeholder': _('Platform')
|
|
}),
|
|
}
|
|
labels = {
|
|
'nodes': _("Node"),
|
|
}
|
|
help_texts = {
|
|
'admin_user': _(
|
|
'root or other NOPASSWD sudo privilege user existed in asset,'
|
|
'If asset is windows or other set any one, more see admin user left menu'
|
|
),
|
|
'platform': _("Windows 2016 RDP protocol is different, If is window 2016, set it"),
|
|
'domain': _("If your have some network not connect with each other, you can set domain")
|
|
}
|
|
|
|
|
|
class AssetBulkUpdateForm(OrgModelForm):
|
|
assets = forms.ModelMultipleChoiceField(
|
|
required=True,
|
|
label=_('Select assets'), queryset=Asset.objects,
|
|
widget=forms.SelectMultiple(
|
|
attrs={
|
|
'class': 'select2',
|
|
'data-placeholder': _('Select assets')
|
|
}
|
|
)
|
|
)
|
|
|
|
class Meta:
|
|
model = Asset
|
|
fields = [
|
|
'assets', 'admin_user', 'labels', 'platform',
|
|
'domain',
|
|
]
|
|
widgets = {
|
|
'labels': forms.SelectMultiple(
|
|
attrs={'class': 'select2', 'data-placeholder': _('Label')}
|
|
),
|
|
'nodes': forms.SelectMultiple(
|
|
attrs={'class': 'select2', 'data-placeholder': _('Node')}
|
|
),
|
|
}
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
self.set_fields_queryset()
|
|
|
|
# 重写其他字段为不再required
|
|
for name, field in self.fields.items():
|
|
if name != 'assets':
|
|
field.required = False
|
|
|
|
def set_fields_queryset(self):
|
|
assets_field = self.fields['assets']
|
|
if hasattr(self, 'data'):
|
|
assets_field.queryset = Asset.objects.all()
|
|
|
|
def save(self, commit=True):
|
|
changed_fields = []
|
|
for field in self._meta.fields:
|
|
if self.data.get(field) not in [None, '']:
|
|
changed_fields.append(field)
|
|
|
|
cleaned_data = {k: v for k, v in self.cleaned_data.items()
|
|
if k in changed_fields}
|
|
assets = cleaned_data.pop('assets')
|
|
labels = cleaned_data.pop('labels', [])
|
|
nodes = cleaned_data.pop('nodes', None)
|
|
assets = Asset.objects.filter(id__in=[asset.id for asset in assets])
|
|
assets.update(**cleaned_data)
|
|
|
|
if labels:
|
|
for asset in assets:
|
|
asset.labels.set(labels)
|
|
if nodes:
|
|
for asset in assets:
|
|
asset.nodes.set(nodes)
|
|
return assets
|