添加了一个检查path的工具
This commit is contained in:
parent
4cfbacdb26
commit
7dd73e1330
19
toolbox.py
19
toolbox.py
@ -527,3 +527,22 @@ class DummyWith():
|
|||||||
|
|
||||||
def __exit__(self, exc_type, exc_value, traceback):
|
def __exit__(self, exc_type, exc_value, traceback):
|
||||||
return
|
return
|
||||||
|
|
||||||
|
def custom_path_check(path: str)->bool:
|
||||||
|
'''
|
||||||
|
check path for sub url
|
||||||
|
|
||||||
|
path: path to check
|
||||||
|
|
||||||
|
return value: do sub url wrap
|
||||||
|
'''
|
||||||
|
if len(path) == 0:
|
||||||
|
print("ilegal custom path: {}\npath must not be empty\ndeploy on root url".format(path))
|
||||||
|
return False
|
||||||
|
if path[0] == '/':
|
||||||
|
if path[1] != '/':
|
||||||
|
print("deploy on sub-path {}".format(path))
|
||||||
|
return True
|
||||||
|
return False
|
||||||
|
print("ilegal custom path: {}\npath should begin with \'/\'\ndeploy on root url".format(path))
|
||||||
|
return False
|
||||||
|
Loading…
x
Reference in New Issue
Block a user