You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jumpserver/apps/terminal/views/storage.py

182 lines
5.6 KiB

Config (#3502) * [Update] 修改config * [Update] 移动存储设置到到terminal中 * [Update] 修改permission 查看 * [Update] pre merge * [Update] 录像存储 * [Update] 命令存储 * [Update] 添加存储测试可连接性 * [Update] 修改 meta 值的 key 为大写 * [Update] 修改 Terminal 相关 Storage 配置 * [Update] 删除之前获取录像/命令存储的代码 * [Update] 修改导入失败 * [Update] 迁移文件添加default存储 * [Update] 删除之前代码,添加help_text信息 * [Update] 删除之前代码 * [Update] 删除之前代码 * [Update] 抽象命令/录像存储 APIView * [Update] 抽象命令/录像存储 APIView 1 * [Update] 抽象命令/录像存储 DictField * [Update] 抽象命令/录像存储列表页面 * [Update] 修复CustomDictField的bug * [Update] RemoteApp 页面添加 hidden * [Update] 用户页面添加用户关联授权 * [Update] 修改存储测试可连接性 target * [Update] 修改配置 * [Update] 修改存储前端 Form 渲染逻辑 * [Update] 修改存储细节 * [Update] 统一存储类型到 const 文件 * [Update] 修改迁移文件及Model,创建默认存储 * [Update] 修改迁移文件及Model初始化默认数据 * [Update] 修改迁移文件 * [Update] 修改迁移文件 * [Update] 修改迁移文件 * [Update] 修改迁移文件 * [Update] 修改迁移文件 * [Update] 修改迁移文件 * [Update] 修改迁移文件 * [Update] 限制删除默认存储配置,只允许创建扩展的存储类型 * [Update] 修改ip字段长度 * [Update] 修改ip字段长度 * [Update] 修改一些css * [Update] 修改关联 * [Update] 添加操作日志定时清理 * [Update] 修改记录syslog的instance encoder * [Update] 忽略登录产生的操作日志 * [Update] 限制更新存储时不覆盖原有AK SK 等字段 * [Update] 修改迁移文件添加comment字段 * [Update] 修改迁移文件 * [Update] 添加 comment 字段 * [Update] 修改默认存储no -> null * [Update] 修改细节 * [Update] 更新翻译(存储配置 * [Update] 修改定时任务注册,修改系统用户资产、节点关系api * [Update] 添加监控磁盘任务 * [Update] 修改session * [Update] 拆分serializer * [Update] 还原setting原来的manager
5 years ago
# coding: utf-8
#
from django.http import Http404
from django.views.generic import TemplateView
from django.views.generic.edit import CreateView, UpdateView
from django.utils.translation import ugettext as _
from common.permissions import PermissionsMixin, IsSuperUser
from terminal.models import ReplayStorage, CommandStorage
from .. import forms, const
__all__ = [
'ReplayStorageListView', 'ReplayStorageCreateView',
'ReplayStorageUpdateView', 'CommandStorageListView',
'CommandStorageCreateView', 'CommandStorageUpdateView'
]
class ReplayStorageListView(PermissionsMixin, TemplateView):
template_name = 'terminal/replay_storage_list.html'
permission_classes = [IsSuperUser]
def get_context_data(self, **kwargs):
context = {
'app': _('Terminal'),
'action': _('Replay storage list'),
'is_replay': True,
'type_choices': const.REPLAY_STORAGE_TYPE_CHOICES_EXTENDS,
}
kwargs.update(context)
return super().get_context_data(**kwargs)
class CommandStorageListView(PermissionsMixin, TemplateView):
template_name = 'terminal/command_storage_list.html'
permission_classes = [IsSuperUser]
def get_context_data(self, **kwargs):
context = {
'app': _('Terminal'),
'action': _('Command storage list'),
'type_choices': const.COMMAND_STORAGE_TYPE_CHOICES_EXTENDS,
'is_command': True,
}
kwargs.update(context)
return super().get_context_data(**kwargs)
class BaseStorageCreateUpdateViewMixin:
permission_classes = [IsSuperUser]
default_type = None
form_class = None
form_class_choices = {}
def get_initial(self):
return {'type': self.get_type()}
def get_type(self):
return self.default_type
def get_form_class(self):
tp = self.get_type()
form_class = self.form_class_choices.get(tp)
if not form_class:
raise Http404()
return form_class
class ReplayStorageCreateUpdateViewMixin(BaseStorageCreateUpdateViewMixin):
model = ReplayStorage
default_type = const.REPLAY_STORAGE_TYPE_S3
form_class = forms.ReplayStorageS3Form
form_class_choices = {
const.REPLAY_STORAGE_TYPE_S3: forms.ReplayStorageS3Form,
const.REPLAY_STORAGE_TYPE_CEPH: forms.ReplayStorageCephForm,
const.REPLAY_STORAGE_TYPE_SWIFT: forms.ReplayStorageSwiftForm,
Config (#3502) * [Update] 修改config * [Update] 移动存储设置到到terminal中 * [Update] 修改permission 查看 * [Update] pre merge * [Update] 录像存储 * [Update] 命令存储 * [Update] 添加存储测试可连接性 * [Update] 修改 meta 值的 key 为大写 * [Update] 修改 Terminal 相关 Storage 配置 * [Update] 删除之前获取录像/命令存储的代码 * [Update] 修改导入失败 * [Update] 迁移文件添加default存储 * [Update] 删除之前代码,添加help_text信息 * [Update] 删除之前代码 * [Update] 删除之前代码 * [Update] 抽象命令/录像存储 APIView * [Update] 抽象命令/录像存储 APIView 1 * [Update] 抽象命令/录像存储 DictField * [Update] 抽象命令/录像存储列表页面 * [Update] 修复CustomDictField的bug * [Update] RemoteApp 页面添加 hidden * [Update] 用户页面添加用户关联授权 * [Update] 修改存储测试可连接性 target * [Update] 修改配置 * [Update] 修改存储前端 Form 渲染逻辑 * [Update] 修改存储细节 * [Update] 统一存储类型到 const 文件 * [Update] 修改迁移文件及Model,创建默认存储 * [Update] 修改迁移文件及Model初始化默认数据 * [Update] 修改迁移文件 * [Update] 修改迁移文件 * [Update] 修改迁移文件 * [Update] 修改迁移文件 * [Update] 修改迁移文件 * [Update] 修改迁移文件 * [Update] 修改迁移文件 * [Update] 限制删除默认存储配置,只允许创建扩展的存储类型 * [Update] 修改ip字段长度 * [Update] 修改ip字段长度 * [Update] 修改一些css * [Update] 修改关联 * [Update] 添加操作日志定时清理 * [Update] 修改记录syslog的instance encoder * [Update] 忽略登录产生的操作日志 * [Update] 限制更新存储时不覆盖原有AK SK 等字段 * [Update] 修改迁移文件添加comment字段 * [Update] 修改迁移文件 * [Update] 添加 comment 字段 * [Update] 修改默认存储no -> null * [Update] 修改细节 * [Update] 更新翻译(存储配置 * [Update] 修改定时任务注册,修改系统用户资产、节点关系api * [Update] 添加监控磁盘任务 * [Update] 修改session * [Update] 拆分serializer * [Update] 还原setting原来的manager
5 years ago
const.REPLAY_STORAGE_TYPE_OSS: forms.ReplayStorageOSSForm,
const.REPLAY_STORAGE_TYPE_AZURE: forms.ReplayStorageAzureForm
}
class ReplayStorageCreateView(ReplayStorageCreateUpdateViewMixin,
PermissionsMixin, CreateView):
template_name = 'terminal/replay_storage_create_update.html'
def get_type(self):
tp = self.request.GET.get("type")
if tp:
return tp.lower()
return super().get_type()
def get_context_data(self, **kwargs):
context = {
'app': _('Terminal'),
'action': _('Create replay storage'),
'api_action': 'create'
}
kwargs.update(context)
return super().get_context_data(**kwargs)
class ReplayStorageUpdateView(ReplayStorageCreateUpdateViewMixin,
PermissionsMixin, UpdateView):
template_name = 'terminal/replay_storage_create_update.html'
def get_initial(self):
initial_data = super().get_initial()
for k, v in self.object.meta.items():
_k = "{}_{}".format(self.object.type, k.lower())
initial_data[_k] = v
return initial_data
def get_type(self):
return self.object.type
def get_context_data(self, **kwargs):
context = {
'app': _('Terminal'),
'action': _('Update replay storage'),
'api_action': 'update'
}
kwargs.update(context)
return super().get_context_data(**kwargs)
class CommandStorageCreateUpdateViewMixin(BaseStorageCreateUpdateViewMixin):
model = CommandStorage
default_type = const.COMMAND_STORAGE_TYPE_ES
form_class = forms.CommandStorageTypeESForm
form_class_choices = {
const.COMMAND_STORAGE_TYPE_ES: forms.CommandStorageTypeESForm
}
class CommandStorageCreateView(CommandStorageCreateUpdateViewMixin,
PermissionsMixin, CreateView):
template_name = 'terminal/command_storage_create_update.html'
def get_type(self):
tp = self.request.GET.get("type")
if tp:
return tp.lower()
return super().get_type()
def get_context_data(self, **kwargs):
context = {
'app': _('Terminal'),
'action': _('Create command storage'),
'api_action': 'create'
}
kwargs.update(context)
return super().get_context_data(**kwargs)
class CommandStorageUpdateView(CommandStorageCreateUpdateViewMixin,
PermissionsMixin, UpdateView):
template_name = 'terminal/command_storage_create_update.html'
def get_initial(self):
initial_data = super().get_initial()
for k, v in self.object.meta.items():
_k = "{}_{}".format(self.object.type, k.lower())
if k == 'HOSTS':
v = ','.join(v)
initial_data[_k] = v
return initial_data
def get_type(self):
return self.object.type
def get_context_data(self, **kwargs):
context = {
'app': _('Terminal'),
'action': _('Update command storage'),
'api_action': 'update'
}
kwargs.update(context)
return super().get_context_data(**kwargs)