Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jumpserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
jumpserver
Commits
344f3802
Commit
344f3802
authored
Aug 06, 2019
by
BaiJiangJie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Feature] 终端配置:终端配置返回LICENSE_VALID变量
parent
4fc38a91
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
3 deletions
+14
-3
common.py
apps/common/utils/common.py
+9
-0
models.py
apps/terminal/models.py
+5
-2
utils.py
apps/terminal/utils.py
+0
-1
No files found.
apps/common/utils/common.py
View file @
344f3802
...
...
@@ -195,3 +195,12 @@ def timeit(func):
logger
.
debug
(
msg
)
return
result
return
wrapper
def
get_validity_of_license
():
try
:
from
xpack.plugins.license.models
import
License
except
ModuleNotFoundError
:
return
False
else
:
return
License
.
has_valid_license
()
apps/terminal/models.py
View file @
344f3802
...
...
@@ -12,7 +12,9 @@ from django.core.cache import cache
from
users.models
import
User
from
orgs.mixins
import
OrgModelMixin
from
common.utils
import
get_command_storage_setting
,
get_replay_storage_setting
from
common.utils
import
(
get_command_storage_setting
,
get_replay_storage_setting
,
get_validity_of_license
)
from
.backends
import
get_multi_command_storage
from
.backends.command.models
import
AbstractSessionCommand
...
...
@@ -80,7 +82,8 @@ class Terminal(models.Model):
configs
.
update
(
self
.
get_command_storage_setting
())
configs
.
update
(
self
.
get_replay_storage_setting
())
configs
.
update
({
'SECURITY_MAX_IDLE_TIME'
:
settings
.
SECURITY_MAX_IDLE_TIME
'SECURITY_MAX_IDLE_TIME'
:
settings
.
SECURITY_MAX_IDLE_TIME
,
'LICENSE_VALID'
:
get_validity_of_license
(),
})
return
configs
...
...
apps/terminal/utils.py
View file @
344f3802
...
...
@@ -32,4 +32,3 @@ def get_system_user_list_from_cache():
return
cache
.
get
(
SYSTEM_USER_CACHE_KEY
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment