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.
100 lines
2.8 KiB
100 lines
2.8 KiB
# -*- coding: utf-8 -*-
|
|
#
|
|
from django.db import models
|
|
from django.shortcuts import redirect
|
|
import warnings
|
|
from django.forms import ModelForm
|
|
from django.http.response import HttpResponseForbidden
|
|
|
|
from common.utils import get_logger
|
|
from .utils import current_org, set_current_org
|
|
from .models import Organization
|
|
|
|
logger = get_logger(__file__)
|
|
|
|
from threading import local
|
|
|
|
tl = local()
|
|
|
|
__all__ = [
|
|
'OrgManager', 'OrgViewGenericMixin', 'OrgModelMixin', 'OrgModelForm'
|
|
]
|
|
|
|
|
|
class OrgManager(models.Manager):
|
|
|
|
def get_queryset(self):
|
|
kwargs = {}
|
|
if not hasattr(tl, 'times'):
|
|
tl.times = 0
|
|
|
|
print("[{}]>>>>>>>>>> Get query set".format(tl.times))
|
|
print(current_org)
|
|
if not current_org:
|
|
kwargs['id'] = None
|
|
elif current_org.is_real():
|
|
kwargs['org_id'] = current_org.id
|
|
elif current_org.is_default():
|
|
kwargs['org_id'] = None
|
|
queryset = super(OrgManager, self).get_queryset()
|
|
queryset = queryset.filter(**kwargs)
|
|
# print(kwargs)
|
|
# print(queryset.query)
|
|
tl.times += 1
|
|
return queryset
|
|
|
|
def all(self):
|
|
if not current_org:
|
|
msg = 'You can `objects.set_current_org(org).all()` then run it'
|
|
warnings.warn(msg)
|
|
return self
|
|
else:
|
|
return super(OrgManager, self).all()
|
|
|
|
def set_current_org(self, org):
|
|
if isinstance(org, str):
|
|
org = Organization.objects.get(name=org)
|
|
set_current_org(org)
|
|
return self
|
|
|
|
|
|
class OrgModelMixin(models.Model):
|
|
org_id = models.CharField(max_length=36, null=True)
|
|
objects = OrgManager()
|
|
|
|
def save(self, *args, **kwargs):
|
|
if current_org and current_org.is_real():
|
|
self.org_id = current_org.id
|
|
return super(OrgModelMixin, self).save(*args, **kwargs)
|
|
|
|
class Meta:
|
|
abstract = True
|
|
|
|
|
|
class OrgViewGenericMixin:
|
|
def dispatch(self, request, *args, **kwargs):
|
|
print("Crrent org: {}".format(current_org))
|
|
if not current_org:
|
|
return redirect('orgs:switch-a-org')
|
|
|
|
if not current_org.can_admin_by(request.user):
|
|
print("{} cannot admin {}".format(request.user, current_org))
|
|
if request.user.is_org_admin:
|
|
print("Is org admin")
|
|
return redirect('orgs:switch-a-org')
|
|
return HttpResponseForbidden()
|
|
return super().dispatch(request, *args, **kwargs)
|
|
|
|
|
|
class OrgModelForm(ModelForm):
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
if 'initial' not in kwargs:
|
|
return
|
|
for name, field in self.fields.items():
|
|
if not hasattr(field, 'queryset'):
|
|
continue
|
|
model = field.queryset.model
|
|
field.queryset = model.objects.all()
|
|
|