mirror of https://github.com/jumpserver/jumpserver
commit
10e06a4533
|
@ -34,7 +34,7 @@ class ExistAssetPrimaryKeyRelatedField(serializers.PrimaryKeyRelatedField):
|
||||||
class RemoteAppSerializer(serializers.Serializer):
|
class RemoteAppSerializer(serializers.Serializer):
|
||||||
asset_info = serializers.SerializerMethodField()
|
asset_info = serializers.SerializerMethodField()
|
||||||
asset = ExistAssetPrimaryKeyRelatedField(
|
asset = ExistAssetPrimaryKeyRelatedField(
|
||||||
queryset=Asset.objects, required=False, label=_("Asset"), allow_null=True
|
queryset=Asset.objects, required=True, label=_("Asset"), allow_null=True
|
||||||
)
|
)
|
||||||
path = serializers.CharField(
|
path = serializers.CharField(
|
||||||
max_length=128, label=_('Application path'), allow_null=True
|
max_length=128, label=_('Application path'), allow_null=True
|
||||||
|
@ -42,7 +42,7 @@ class RemoteAppSerializer(serializers.Serializer):
|
||||||
|
|
||||||
def validate_asset(self, asset):
|
def validate_asset(self, asset):
|
||||||
if not asset:
|
if not asset:
|
||||||
raise serializers.ValidationError(_('This field is required'))
|
raise serializers.ValidationError(_('This field is required.'))
|
||||||
return asset
|
return asset
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
|
|
|
@ -49,6 +49,7 @@ class AccountSecretSerializer(AccountSerializer):
|
||||||
'password': {'write_only': False},
|
'password': {'write_only': False},
|
||||||
'private_key': {'write_only': False},
|
'private_key': {'write_only': False},
|
||||||
'public_key': {'write_only': False},
|
'public_key': {'write_only': False},
|
||||||
|
'systemuser_display': {'label': _('System user display')}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -37,6 +37,6 @@ def on_authbook_post_create(sender, instance, **kwargs):
|
||||||
@receiver(pre_save, sender=AuthBook)
|
@receiver(pre_save, sender=AuthBook)
|
||||||
def on_authbook_pre_create(sender, instance, **kwargs):
|
def on_authbook_pre_create(sender, instance, **kwargs):
|
||||||
# 升级版本号
|
# 升级版本号
|
||||||
instance.version = instance.history.all().count() + 1
|
instance.version += 1
|
||||||
# 即使在 root 组织也不怕
|
# 即使在 root 组织也不怕
|
||||||
instance.org_id = instance.asset.org_id
|
instance.org_id = instance.asset.org_id
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
from django.urls import path, include
|
from django.urls import path, include
|
||||||
|
from django.db.transaction import non_atomic_requests
|
||||||
|
|
||||||
from .. import views
|
from .. import views
|
||||||
from users import views as users_view
|
from users import views as users_view
|
||||||
|
@ -10,7 +11,7 @@ app_name = 'authentication'
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
# login
|
# login
|
||||||
path('login/', views.UserLoginView.as_view(), name='login'),
|
path('login/', non_atomic_requests(views.UserLoginView.as_view()), name='login'),
|
||||||
path('login/otp/', views.UserLoginOtpView.as_view(), name='login-otp'),
|
path('login/otp/', views.UserLoginOtpView.as_view(), name='login-otp'),
|
||||||
path('login/wait-confirm/', views.UserLoginWaitConfirmView.as_view(), name='login-wait-confirm'),
|
path('login/wait-confirm/', views.UserLoginWaitConfirmView.as_view(), name='login-wait-confirm'),
|
||||||
path('login/guard/', views.UserLoginGuardView.as_view(), name='login-guard'),
|
path('login/guard/', views.UserLoginGuardView.as_view(), name='login-guard'),
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
import os
|
import os
|
||||||
import datetime
|
import datetime
|
||||||
|
|
||||||
from django.contrib.auth import login as auth_login, logout as auth_logout
|
from django.contrib.auth import login as auth_login, logout as auth_logout
|
||||||
from django.http import HttpResponse
|
from django.http import HttpResponse
|
||||||
from django.shortcuts import reverse, redirect
|
from django.shortcuts import reverse, redirect
|
||||||
|
@ -17,6 +18,7 @@ from django.views.generic.edit import FormView
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.urls import reverse_lazy
|
from django.urls import reverse_lazy
|
||||||
from django.contrib.auth import BACKEND_SESSION_KEY
|
from django.contrib.auth import BACKEND_SESSION_KEY
|
||||||
|
from django.db.transaction import atomic
|
||||||
|
|
||||||
from common.utils import get_request_ip, FlashMessageUtil
|
from common.utils import get_request_ip, FlashMessageUtil
|
||||||
from users.utils import (
|
from users.utils import (
|
||||||
|
@ -107,6 +109,7 @@ class UserLoginView(mixins.AuthMixin, FormView):
|
||||||
self.request.session.delete_test_cookie()
|
self.request.session.delete_test_cookie()
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
with atomic():
|
||||||
self.check_user_auth(decrypt_passwd=True)
|
self.check_user_auth(decrypt_passwd=True)
|
||||||
except errors.AuthFailedError as e:
|
except errors.AuthFailedError as e:
|
||||||
form.add_error(None, e.msg)
|
form.add_error(None, e.msg)
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
from django.core.management.base import BaseCommand
|
from django.core.management.base import BaseCommand
|
||||||
|
|
||||||
from assets.signals_handler.node_assets_mapping import expire_node_assets_mapping_for_memory
|
from assets.signals_handler.node_assets_mapping import expire_node_assets_mapping_for_memory
|
||||||
|
from orgs.caches import OrgResourceStatisticsCache
|
||||||
from orgs.models import Organization
|
from orgs.models import Organization
|
||||||
|
|
||||||
|
|
||||||
|
@ -12,8 +13,16 @@ def expire_node_assets_mapping():
|
||||||
expire_node_assets_mapping_for_memory(org_id)
|
expire_node_assets_mapping_for_memory(org_id)
|
||||||
|
|
||||||
|
|
||||||
|
def expire_org_resource_statistics_cache():
|
||||||
|
orgs = Organization.objects.all()
|
||||||
|
for org in orgs:
|
||||||
|
cache = OrgResourceStatisticsCache(org)
|
||||||
|
cache.expire()
|
||||||
|
|
||||||
|
|
||||||
class Command(BaseCommand):
|
class Command(BaseCommand):
|
||||||
help = 'Expire caches'
|
help = 'Expire caches'
|
||||||
|
|
||||||
def handle(self, *args, **options):
|
def handle(self, *args, **options):
|
||||||
expire_node_assets_mapping()
|
expire_node_assets_mapping()
|
||||||
|
expire_org_resource_statistics_cache()
|
||||||
|
|
Binary file not shown.
|
@ -389,8 +389,8 @@ msgstr "应用路径"
|
||||||
|
|
||||||
#: applications/serializers/attrs/application_category/remote_app.py:45
|
#: applications/serializers/attrs/application_category/remote_app.py:45
|
||||||
#: xpack/plugins/cloud/serializers.py:51
|
#: xpack/plugins/cloud/serializers.py:51
|
||||||
msgid "This field is required"
|
msgid "This field is required."
|
||||||
msgstr "这个字段是必填项"
|
msgstr "该字段是必填项。"
|
||||||
|
|
||||||
#: applications/serializers/attrs/application_type/chrome.py:17
|
#: applications/serializers/attrs/application_type/chrome.py:17
|
||||||
#: applications/serializers/attrs/application_type/vmware_client.py:22
|
#: applications/serializers/attrs/application_type/vmware_client.py:22
|
||||||
|
|
Loading…
Reference in New Issue