Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
I
install.api
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
Script
install.api
Commits
7e9602bf
Commit
7e9602bf
authored
Apr 08, 2020
by
金凯强
🎨
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
还原上一次修改
parent
2219f038
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
44 deletions
+44
-44
common_tools.py
app/utils/common_tools.py
+44
-44
No files found.
app/utils/common_tools.py
View file @
7e9602bf
...
@@ -7,14 +7,42 @@ from huansi_utils.app.apploader import logger
...
@@ -7,14 +7,42 @@ from huansi_utils.app.apploader import logger
from
huansi_utils.exception.exception
import
HSException
from
huansi_utils.exception.exception
import
HSException
# 超过四秒,基本上没救了,告辞~~~~
class
CommonTools
:
@
timeout_decorator
.
timeout
(
2
)
@
classmethod
def
test_sql_connection
(
ip
,
port
,
user_name
,
password
,
db_name
):
def
validate_dict_value_all_not_none
(
cls
,
dict_data
:
dict
,
mapping
=
None
):
'''
验证字典的值全不为空
:return:
'''
if
not
isinstance
(
dict_data
,
dict
):
raise
HSException
(
'dict_data必须为字典类型'
)
for
key
,
value
in
dict_data
.
items
():
if
value
is
None
:
raise
HSException
(
f
"{key}不能为空"
)
# 超过四秒,基本上没救了,告辞~~~~
@
timeout_decorator
.
timeout
(
2
)
def
test_db_connection
(
self
,
ip
:
int
,
port
:
int
,
user_name
:
str
,
password
:
str
,
db_name
:
str
):
'''
测试数据库连接
:param ip:
:param port:
:param user_name:
:param password:
:param db_name:
:param sql:
:return:
'''
from
sqlalchemy
import
create_engine
from
sqlalchemy
import
create_engine
from
sqlalchemy.orm
import
sessionmaker
from
sqlalchemy.orm
import
sessionmaker
con_str
=
f
'mssql+pymssql://{user_name}:{password}@{ip}:{port}/{db_name}'
con_str
=
f
'mssql+pymssql://{user_name}:{password}@{ip}:{port}/{db_name}'
engine
=
create_engine
(
con_str
)
engine
=
create_engine
(
con_str
)
DBSession
=
sessionmaker
(
bind
=
engine
)
DBSession
=
sessionmaker
(
bind
=
engine
)
try
:
try
:
session
=
DBSession
()
session
=
DBSession
()
...
@@ -49,34 +77,6 @@ def test_sql_connection(ip, port, user_name, password, db_name):
...
@@ -49,34 +77,6 @@ def test_sql_connection(ip, port, user_name, password, db_name):
return
False
return
False
class
CommonTools
:
@
classmethod
def
validate_dict_value_all_not_none
(
cls
,
dict_data
:
dict
,
mapping
=
None
):
'''
验证字典的值全不为空
:return:
'''
if
not
isinstance
(
dict_data
,
dict
):
raise
HSException
(
'dict_data必须为字典类型'
)
for
key
,
value
in
dict_data
.
items
():
if
value
is
None
:
raise
HSException
(
f
"{key}不能为空"
)
def
test_db_connection
(
self
,
ip
:
int
,
port
:
int
,
user_name
:
str
,
password
:
str
,
db_name
:
str
):
'''
测试数据库连接
:param ip:
:param port:
:param user_name:
:param password:
:param db_name:
:param sql:
:return:
'''
return
test_sql_connection
(
ip
,
port
,
user_name
,
password
,
db_name
)
@
classmethod
@
classmethod
def
validate_runner_is_install
(
self
):
def
validate_runner_is_install
(
self
):
'''
'''
...
...
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