mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-08-10 02:28:33 +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>
182 lines
5.9 KiB
Python
182 lines
5.9 KiB
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
import abc
|
|
import uuid
|
|
from django.utils.translation import ugettext_lazy as _
|
|
from django.db import models
|
|
from django import forms
|
|
from rest_framework import serializers
|
|
|
|
from .celery.utils import (
|
|
create_or_update_celery_periodic_tasks, disable_celery_periodic_task,
|
|
delete_celery_periodic_task,
|
|
)
|
|
|
|
__all__ = [
|
|
'PeriodTaskModelMixin', 'PeriodTaskSerializerMixin',
|
|
'PeriodTaskFormMixin',
|
|
]
|
|
|
|
|
|
class PeriodTaskModelMixin(models.Model):
|
|
id = models.UUIDField(default=uuid.uuid4, primary_key=True)
|
|
name = models.CharField(
|
|
max_length=128, unique=False, verbose_name=_("Name")
|
|
)
|
|
is_periodic = models.BooleanField(default=False)
|
|
interval = models.IntegerField(
|
|
default=24, null=True, blank=True,
|
|
verbose_name=_("Cycle perform"),
|
|
)
|
|
crontab = models.CharField(
|
|
null=True, blank=True, max_length=128,
|
|
verbose_name=_("Regularly perform"),
|
|
)
|
|
|
|
@abc.abstractmethod
|
|
def get_register_task(self):
|
|
period_name, task, args, kwargs = None, None, (), {}
|
|
return period_name, task, args, kwargs
|
|
|
|
@property
|
|
def interval_ratio(self):
|
|
return 3600, 'h'
|
|
|
|
@property
|
|
def interval_display(self):
|
|
unit = self.interval_ratio[1]
|
|
if not self.interval:
|
|
return ''
|
|
return '{} {}'.format(self.interval, unit)
|
|
|
|
def set_period_schedule(self):
|
|
name, task, args, kwargs = self.get_register_task()
|
|
if not self.is_periodic:
|
|
disable_celery_periodic_task(name)
|
|
return
|
|
|
|
crontab = interval = None
|
|
if self.crontab:
|
|
crontab = self.crontab
|
|
elif self.interval:
|
|
interval = self.interval * self.interval_ratio[0]
|
|
|
|
tasks = {
|
|
name: {
|
|
'task': task,
|
|
'interval': interval,
|
|
'crontab': crontab,
|
|
'args': args,
|
|
'kwargs': kwargs,
|
|
'enabled': True,
|
|
}
|
|
}
|
|
create_or_update_celery_periodic_tasks(tasks)
|
|
|
|
def save(self, **kwargs):
|
|
instance = super().save(**kwargs)
|
|
self.set_period_schedule()
|
|
return instance
|
|
|
|
def delete(self, using=None, keep_parents=False):
|
|
name = self.get_register_task()[0]
|
|
instance = super().delete(using=using, keep_parents=keep_parents)
|
|
delete_celery_periodic_task(name)
|
|
return instance
|
|
|
|
@property
|
|
def periodic_display(self):
|
|
if self.is_periodic and self.crontab:
|
|
return _('Regularly perform') + " ( {} )".format(self.crontab)
|
|
if self.is_periodic and self.interval:
|
|
return _('Cycle perform') + " ( {} h )".format(self.interval)
|
|
return '-'
|
|
|
|
@property
|
|
def schedule(self):
|
|
from django_celery_beat.models import PeriodicTask
|
|
try:
|
|
return PeriodicTask.objects.get(name=str(self))
|
|
except PeriodicTask.DoesNotExist:
|
|
return None
|
|
|
|
class Meta:
|
|
abstract = True
|
|
|
|
|
|
class PeriodTaskSerializerMixin(serializers.Serializer):
|
|
is_periodic = serializers.BooleanField(default=False, label=_("Periodic perform"))
|
|
crontab = serializers.CharField(
|
|
max_length=128, allow_blank=True,
|
|
allow_null=True, required=False, label=_('Regularly perform')
|
|
)
|
|
interval = serializers.IntegerField(allow_null=True, required=False)
|
|
|
|
INTERVAL_MAX = 65535
|
|
INTERVAL_MIN = 1
|
|
|
|
def validate_crontab(self, crontab):
|
|
if not crontab:
|
|
return crontab
|
|
if isinstance(crontab, str) and len(crontab.strip().split()) != 5:
|
|
msg = _('* Please enter a valid crontab expression')
|
|
raise serializers.ValidationError(msg)
|
|
return crontab
|
|
|
|
def validate_interval(self, interval):
|
|
if not interval:
|
|
return interval
|
|
msg = _("Range {} to {}").format(self.INTERVAL_MIN, self.INTERVAL_MAX)
|
|
if interval > self.INTERVAL_MAX or interval < self.INTERVAL_MIN:
|
|
raise serializers.ValidationError(msg)
|
|
return interval
|
|
|
|
def validate_is_periodic(self, ok):
|
|
if not ok:
|
|
return ok
|
|
crontab = self.initial_data.get('crontab')
|
|
interval = self.initial_data.get('interval')
|
|
if ok and not any([crontab, interval]):
|
|
msg = _("Require periodic or regularly perform setting")
|
|
raise serializers.ValidationError(msg)
|
|
return ok
|
|
|
|
|
|
class PeriodTaskFormMixin(forms.Form):
|
|
is_periodic = forms.BooleanField(
|
|
initial=True, required=False, label=_('Periodic perform')
|
|
)
|
|
crontab = forms.CharField(
|
|
max_length=128, required=False, label=_('Regularly perform'),
|
|
help_text=_("eg: Every Sunday 03:05 run <5 3 * * 0> <br> "
|
|
"Tips: "
|
|
"Using 5 digits linux crontab expressions "
|
|
"<min hour day month week> "
|
|
"(<a href='https://tool.lu/crontab/' target='_blank'>Online tools</a>) <br>"
|
|
"Note: "
|
|
"If both Regularly perform and Cycle perform are set, "
|
|
"give priority to Regularly perform"),
|
|
)
|
|
interval = forms.IntegerField(
|
|
required=False, initial=24,
|
|
help_text=_('Tips: (Units: hour)'), label=_("Cycle perform"),
|
|
)
|
|
|
|
def get_initial_for_field(self, field, field_name):
|
|
"""
|
|
Return initial data for field on form. Use initial data from the form
|
|
or the field, in that order. Evaluate callable values.
|
|
"""
|
|
if field_name not in ['is_periodic', 'crontab', 'interval']:
|
|
return super().get_initial_for_field(field, field_name)
|
|
instance = getattr(self, 'instance', None)
|
|
if instance is None:
|
|
return super().get_initial_for_field(field, field_name)
|
|
init_attr_name = field_name + '_initial'
|
|
value = getattr(self, init_attr_name, None)
|
|
if value is None:
|
|
return super().get_initial_for_field(field, field_name)
|
|
return value
|
|
|
|
|