1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/synapse_ynh.git synced 2024-09-03 20:26:38 +02:00

Rework remove_sso_conf script

This commit is contained in:
Josué Tille 2020-03-31 10:47:44 +02:00
parent 8ce2d639e3
commit 91aafe7d42
No known key found for this signature in database
GPG key ID: 716A6C99B04194EF
2 changed files with 7 additions and 8 deletions

View file

@ -1,15 +1,14 @@
import json import json
domain = sys.argv[1]
server_name = sys.argv[2]
with open("/etc/ssowat/conf.json.persistent", "r", encoding='utf-8') as jsonFile: with open("/etc/ssowat/conf.json.persistent", "r", encoding='utf-8') as jsonFile:
data = json.load(jsonFile) data = json.load(jsonFile)
for entry in data["skipped_urls"].copy(): data["skipped_urls"].remove(domain + "/_matrix")
if "/_matrix" in entry or "/.well-known/matrix/" in entry: data["skipped_urls"].remove(server_name + "/.well-known/matrix/")
data["skipped_urls"].remove(entry) data["protected_urls"].remove(domain + "/_matrix/cas_server.php/login")
for entry in data["protected_urls"].copy():
if "/_matrix" in entry:
data["protected_urls"].remove(entry)
with open("/etc/ssowat/conf.json.persistent", "w", encoding='utf-8') as jsonFile: with open("/etc/ssowat/conf.json.persistent", "w", encoding='utf-8') as jsonFile:
jsonFile.write(json.dumps(data, indent=4, sort_keys=True)) jsonFile.write(json.dumps(data, indent=4, sort_keys=True))

View file

@ -80,7 +80,7 @@ ynh_remove_app_dependencies
#================================================= #=================================================
# Remove the skipped url # Remove the skipped url
python3 ../conf/remove_sso_conf.py python3 ../conf/remove_sso_conf.py $domain $server_name
#================================================= #=================================================
# REMOVE APP MAIN DIR # REMOVE APP MAIN DIR