mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
Pattern on path + check subfolder
This commit is contained in:
parent
f60f616047
commit
ccc0413a05
2 changed files with 5 additions and 2 deletions
|
@ -267,11 +267,12 @@ app:
|
||||||
-p:
|
-p:
|
||||||
full: --path
|
full: --path
|
||||||
default: "/"
|
default: "/"
|
||||||
|
pattern: '^\/([a-zA-Z-_\/\.0-9])*$'
|
||||||
-l:
|
-l:
|
||||||
full: --label
|
full: --label
|
||||||
-m:
|
-m:
|
||||||
full: --mode
|
full: --mode
|
||||||
help: level of protectness of the app (public|protected|private)
|
help: level of privacy of the app (public|protected|private)
|
||||||
default: 'private'
|
default: 'private'
|
||||||
|
|
||||||
### app_remove() TODO: Write help
|
### app_remove() TODO: Write help
|
||||||
|
|
|
@ -159,7 +159,6 @@ def app_install(app, domain, path='/', label=None, mode='private'):
|
||||||
"""
|
"""
|
||||||
# TODO: Virer la règle "default" lemon
|
# TODO: Virer la règle "default" lemon
|
||||||
# TODO: check path and url_to_(un)protect pattern
|
# TODO: check path and url_to_(un)protect pattern
|
||||||
# TODO: check if app is installed on this domain/path (or subpath)
|
|
||||||
|
|
||||||
with YunoHostLDAP() as yldap:
|
with YunoHostLDAP() as yldap:
|
||||||
|
|
||||||
|
@ -206,6 +205,9 @@ def app_install(app, domain, path='/', label=None, mode='private'):
|
||||||
if app_settings['path'] == path:
|
if app_settings['path'] == path:
|
||||||
raise YunoHostError(1, _("An app is already installed on this location"))
|
raise YunoHostError(1, _("An app is already installed on this location"))
|
||||||
|
|
||||||
|
if app_settings['path'] in path and app_settings['path'].count('/') < path.count('/'):
|
||||||
|
raise YunoHostError(1, _("Unable to install app at this location"))
|
||||||
|
|
||||||
unique_app_id = manifest['yunohost']['uid'] +'__'+ str(instance_number)
|
unique_app_id = manifest['yunohost']['uid'] +'__'+ str(instance_number)
|
||||||
app_final_path = apps_path +'/'+ unique_app_id
|
app_final_path = apps_path +'/'+ unique_app_id
|
||||||
script_var_dict = { 'APP_DIR': app_tmp_folder }
|
script_var_dict = { 'APP_DIR': app_tmp_folder }
|
||||||
|
|
Loading…
Reference in a new issue