mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
Unprotected urls in ssowatconf
This commit is contained in:
parent
797dd30549
commit
1c4e5bd2c9
1 changed files with 19 additions and 13 deletions
|
@ -453,11 +453,11 @@ def app_remove(app):
|
||||||
try:
|
try:
|
||||||
shutil.rmtree('/tmp/yunohost_remove')
|
shutil.rmtree('/tmp/yunohost_remove')
|
||||||
except: pass
|
except: pass
|
||||||
|
|
||||||
os.system('cp -a '+ app_setting_path + ' /tmp/yunohost_remove && chown -hR admin: /tmp/yunohost_remove')
|
os.system('cp -a '+ app_setting_path + ' /tmp/yunohost_remove && chown -hR admin: /tmp/yunohost_remove')
|
||||||
os.system('chown -R admin: /tmp/yunohost_remove')
|
os.system('chown -R admin: /tmp/yunohost_remove')
|
||||||
os.system('chmod -R u+rX /tmp/yunohost_remove')
|
os.system('chmod -R u+rX /tmp/yunohost_remove')
|
||||||
|
|
||||||
if hook_exec('/tmp/yunohost_remove/scripts/remove') != 0:
|
if hook_exec('/tmp/yunohost_remove/scripts/remove') != 0:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
@ -549,7 +549,7 @@ def app_removeaccess(apps, users):
|
||||||
if new_users == '':
|
if new_users == '':
|
||||||
new_users = user['Username']
|
new_users = user['Username']
|
||||||
new_users=new_users+','+user['Username']
|
new_users=new_users+','+user['Username']
|
||||||
|
|
||||||
app_setting(app, 'allowed_users', new_users.strip())
|
app_setting(app, 'allowed_users', new_users.strip())
|
||||||
|
|
||||||
app_ssowatconf()
|
app_ssowatconf()
|
||||||
|
@ -620,7 +620,7 @@ def app_service(service, status=None, log=None, runlevel=None, remove=False):
|
||||||
services[service] = { 'status': 'service' }
|
services[service] = { 'status': 'service' }
|
||||||
else:
|
else:
|
||||||
services[service] = { 'status': status }
|
services[service] = { 'status': status }
|
||||||
|
|
||||||
if log is not None:
|
if log is not None:
|
||||||
services[service]['log'] = log
|
services[service]['log'] = log
|
||||||
|
|
||||||
|
@ -740,19 +740,25 @@ def app_ssowatconf():
|
||||||
for user in user_list()['Users']:
|
for user in user_list()['Users']:
|
||||||
users[user['Username']] = app_map(user=user['Username'])
|
users[user['Username']] = app_map(user=user['Username'])
|
||||||
|
|
||||||
skipped_uri = []
|
skipped_urls = []
|
||||||
apps = {}
|
unprotected_urls = []
|
||||||
|
apps = {}
|
||||||
for app in app_list()['Apps']:
|
for app in app_list()['Apps']:
|
||||||
if _is_installed(app['ID']):
|
if _is_installed(app['ID']):
|
||||||
with open(apps_setting_path + app['ID'] +'/settings.yml') as f:
|
with open(apps_setting_path + app['ID'] +'/settings.yml') as f:
|
||||||
app_settings = yaml.load(f)
|
app_settings = yaml.load(f)
|
||||||
if 'skipped_uris' in app_settings:
|
if 'skipped_uris' in app_settings:
|
||||||
for item in app_settings['skipped_uris'].split(','):
|
for item in app_settings['skipped_uris'].split(','):
|
||||||
if item[-1:] == '/':
|
if item[-1:] == '/':
|
||||||
item = item[:-1]
|
item = item[:-1]
|
||||||
skipped_uri.append(app_settings['domain'] + app_settings['path'][:-1] + item)
|
skipped_urls.append(app_settings['domain'] + app_settings['path'][:-1] + item)
|
||||||
|
if 'unprotected_uris' in app_settings:
|
||||||
for domain in domains:
|
for item in app_settings['unprotected_uris'].split(','):
|
||||||
|
if item[-1:] == '/':
|
||||||
|
item = item[:-1]
|
||||||
|
unprotected_urls.append(app_settings['domain'] + app_settings['path'][:-1] + item)
|
||||||
|
|
||||||
|
for domain in domains:
|
||||||
skipped_uri.extend([domain +'/ynhadmin', domain +'/ynhapi'])
|
skipped_uri.extend([domain +'/ynhadmin', domain +'/ynhapi'])
|
||||||
|
|
||||||
conf_dict = {
|
conf_dict = {
|
||||||
|
@ -767,8 +773,8 @@ def app_ssowatconf():
|
||||||
'Email': 'mail'
|
'Email': 'mail'
|
||||||
},
|
},
|
||||||
'domains': domains,
|
'domains': domains,
|
||||||
'skipped_urls': skipped_uri,
|
'skipped_urls': skipped_urls,
|
||||||
'unprotected_urls': [],
|
'unprotected_urls': unprotected_urls,
|
||||||
'users': users
|
'users': users
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue