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.
75 lines
1.4 KiB
75 lines
1.4 KiB
# -*- coding: utf-8 -*-
|
|
#
|
|
from werkzeug.local import LocalProxy
|
|
from contextlib import contextmanager
|
|
|
|
from common.local import thread_local
|
|
from .models import Organization
|
|
|
|
|
|
def get_org_from_request(request):
|
|
oid = request.session.get("oid")
|
|
if not oid:
|
|
oid = request.META.get("HTTP_X_JMS_ORG")
|
|
if not oid:
|
|
oid = Organization.DEFAULT_ID
|
|
org = Organization.get_instance(oid)
|
|
return org
|
|
|
|
|
|
def set_current_org(org):
|
|
setattr(thread_local, 'current_org_id', org.id)
|
|
|
|
|
|
def set_to_default_org():
|
|
set_current_org(Organization.default())
|
|
|
|
|
|
def set_to_root_org():
|
|
set_current_org(Organization.root())
|
|
|
|
|
|
def _find(attr):
|
|
return getattr(thread_local, attr, None)
|
|
|
|
|
|
def get_current_org():
|
|
org_id = get_current_org_id()
|
|
if org_id is None:
|
|
return None
|
|
org = Organization.get_instance(org_id)
|
|
return org
|
|
|
|
|
|
def get_current_org_id():
|
|
org_id = _find('current_org_id')
|
|
return org_id
|
|
|
|
|
|
def get_current_org_id_for_serializer():
|
|
org_id = get_current_org_id()
|
|
if org_id == Organization.DEFAULT_ID:
|
|
org_id = ''
|
|
return org_id
|
|
|
|
|
|
@contextmanager
|
|
def tmp_to_root_org():
|
|
ori_org = get_current_org()
|
|
set_to_root_org()
|
|
yield
|
|
if ori_org is not None:
|
|
set_current_org(ori_org)
|
|
|
|
|
|
@contextmanager
|
|
def tmp_to_org(org):
|
|
ori_org = get_current_org()
|
|
set_current_org(org)
|
|
yield
|
|
if ori_org is not None:
|
|
set_current_org(ori_org)
|
|
|
|
|
|
current_org = LocalProxy(get_current_org)
|