mirror of https://github.com/jumpserver/jumpserver
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.
122 lines
3.5 KiB
122 lines
3.5 KiB
# -*- coding: utf-8 -*-
|
|
#
|
|
|
|
from rest_framework.serializers import ValidationError
|
|
from django.db import models
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
from common.db.models import JMSBaseModel
|
|
from common.utils import get_logger, lazyproperty
|
|
from ..models import Organization
|
|
from ..utils import (
|
|
set_current_org, get_current_org, current_org, filter_org_queryset
|
|
)
|
|
|
|
logger = get_logger(__file__)
|
|
|
|
__all__ = [
|
|
'OrgManager', 'OrgModelMixin', 'JMSOrgBaseModel'
|
|
]
|
|
|
|
|
|
class OrgManager(models.Manager):
|
|
def all_group_by_org(self):
|
|
from ..models import Organization
|
|
orgs = list(Organization.objects.all())
|
|
org_queryset = {}
|
|
for org in orgs:
|
|
org_id = org.id
|
|
queryset = super(OrgManager, self).get_queryset().filter(org_id=org_id)
|
|
org_queryset[org] = queryset
|
|
return org_queryset
|
|
|
|
def get_queryset(self):
|
|
queryset = super(OrgManager, self).get_queryset()
|
|
return filter_org_queryset(queryset)
|
|
|
|
def set_current_org(self, org):
|
|
if isinstance(org, str):
|
|
org = Organization.get_instance(org)
|
|
set_current_org(org)
|
|
return self
|
|
|
|
def bulk_create(self, objs, batch_size=None, ignore_conflicts=False):
|
|
org = get_current_org()
|
|
for obj in objs:
|
|
if org.is_root():
|
|
if not obj.org_id:
|
|
raise ValidationError(_('Please save in a org'))
|
|
else:
|
|
obj.org_id = org.id
|
|
return super().bulk_create(objs, batch_size, ignore_conflicts)
|
|
|
|
|
|
class OrgModelMixin(models.Model):
|
|
org_id = models.CharField(
|
|
max_length=36, blank=True, default='',
|
|
verbose_name=_("Organization"), db_index=True
|
|
)
|
|
objects = OrgManager()
|
|
sep = '@'
|
|
|
|
def save(self, *args, **kwargs):
|
|
locking_org = getattr(self, 'LOCKING_ORG', None)
|
|
if locking_org:
|
|
org = Organization.get_instance(locking_org)
|
|
else:
|
|
org = get_current_org()
|
|
# 这里不可以优化成, 因为 root 组织下可以设置组织 id 来保存
|
|
# if org.is_root() and not self.org_id:
|
|
# raise ...
|
|
if org.is_root():
|
|
if not self.org_id:
|
|
raise ValidationError(_('Please save in a org'))
|
|
else:
|
|
self.org_id = org.id
|
|
return super().save(*args, **kwargs)
|
|
|
|
@lazyproperty
|
|
def org(self):
|
|
return Organization.get_instance(self.org_id)
|
|
|
|
@property
|
|
def org_name(self):
|
|
return self.org.name
|
|
|
|
@property
|
|
def fullname(self, attr=None):
|
|
name = ''
|
|
if attr and hasattr(self, attr):
|
|
name = getattr(self, attr)
|
|
elif hasattr(self, 'name'):
|
|
name = self.name
|
|
return name + self.sep + self.org_name
|
|
|
|
def validate_unique(self, exclude=None):
|
|
"""
|
|
Check unique constraints on the model and raise ValidationError if any
|
|
failed.
|
|
Form 提交时会使用这个检验
|
|
"""
|
|
self.org_id = current_org.id
|
|
if exclude and 'org_id' in exclude:
|
|
exclude.remove('org_id')
|
|
unique_checks, date_checks = self._get_unique_checks(exclude=exclude)
|
|
|
|
errors = self._perform_unique_checks(unique_checks)
|
|
date_errors = self._perform_date_checks(date_checks)
|
|
|
|
for k, v in date_errors.items():
|
|
errors.setdefault(k, []).extend(v)
|
|
|
|
if errors:
|
|
raise ValidationError(errors)
|
|
|
|
class Meta:
|
|
abstract = True
|
|
|
|
|
|
class JMSOrgBaseModel(JMSBaseModel, OrgModelMixin):
|
|
class Meta:
|
|
abstract = True
|