Skip to content
Snippets Groups Projects
Commit 8a7f9300 authored by Stéphane Diemer's avatar Stéphane Diemer
Browse files

Added a check of server name in Nginx conf (refs #21514).

parent 1e32fe79
No related branches found
No related tags found
No related merge requests found
...@@ -13,8 +13,9 @@ from utils import log ...@@ -13,8 +13,9 @@ from utils import log
class SetAppDomain(): class SetAppDomain():
USAGE = '''%s [-d] [-h] [app] <domain> USAGE = '''%s [-d] [-f] [-h] [app] <domain>
-d: Debug mode (can be started with non root users). -d: Debug mode (can be started with non root users).
-f: Force mode (to force replacement of configuration even if there are warnings).
-h: Show this message. -h: Show this message.
app: The application for which the new domain should be set. app: The application for which the new domain should be set.
Possible values: Possible values:
...@@ -22,8 +23,8 @@ class SetAppDomain(): ...@@ -22,8 +23,8 @@ class SetAppDomain():
It is possible to specify which MS instance should be targetted It is possible to specify which MS instance should be targetted
by using this format: ms-<instance name> (for example ms-msuser). by using this format: ms-<instance name> (for example ms-msuser).
domain: The new domain.''' % __file__ domain: The new domain.''' % __file__
MS_INSTANCE_USER_PATTERN = r'^[a-z0-9\-]+$' MS_INSTANCE_USER_PATTERN = r'[a-z0-9\-]+'
NGINX_SERVER_NAME_PATTERN = r'^\s*server_name\s+([\w\-\_\.\ ]+);$' NGINX_SERVER_NAME_PATTERN = r'\s*server_name\s+([\w\-\_\.\ ]+);'
def __init__(self, *args): def __init__(self, *args):
self.display_header() self.display_header()
...@@ -40,6 +41,10 @@ class SetAppDomain(): ...@@ -40,6 +41,10 @@ class SetAppDomain():
# Add to python path # Add to python path
if root_dir not in sys.path: if root_dir not in sys.path:
sys.path.append(root_dir) sys.path.append(root_dir)
# Check if force mode is enabled
self.force = '-f' in args
if self.force:
args.remove('-f')
# Check that this script is run by root # Check that this script is run by root
self.debug = '-d' in args self.debug = '-d' in args
if self.debug: if self.debug:
...@@ -88,11 +93,21 @@ class SetAppDomain(): ...@@ -88,11 +93,21 @@ class SetAppDomain():
with open(path, 'r') as fo: with open(path, 'r') as fo:
vhost = fo.read() vhost = fo.read()
new_vhost = '' new_vhost = ''
changed_lines = 0
for line in vhost.split('\n'): for line in vhost.split('\n'):
if re.match(self.NGINX_SERVER_NAME_PATTERN, line): if re.match(self.NGINX_SERVER_NAME_PATTERN, line):
new_vhost += re.sub(self.NGINX_SERVER_NAME_PATTERN, line, new_domain) + '\n' new_vhost += re.sub(self.NGINX_SERVER_NAME_PATTERN, line, new_domain) + '\n'
changed_lines += 1
else: else:
new_vhost += line + '\n' new_vhost += line + '\n'
if changed_lines != 2:
log('Warning the number of server_name occurence changed in Nginx configuration is not the expected number (2) but is %s.' % changed_lines)
if not self.force:
log('New configuration will be:')
log(new_vhost)
log('Use -f to force the replacement of the configuration.')
sys.exit(1)
new_vhost = new_vhost.strip() + '\n' new_vhost = new_vhost.strip() + '\n'
if new_vhost != vhost: if new_vhost != vhost:
if self.debug: if self.debug:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment