Merge pull request #17 from Coordinate35/master
fix https://github.com/1connect/nginx-config-formatter/issues/14
This commit is contained in:
commit
47e7e317b2
BIN
__pycache__/nginxfmt.cpython-37.pyc
Normal file
BIN
__pycache__/nginxfmt.cpython-37.pyc
Normal file
Binary file not shown.
35
nginxfmt.py
35
nginxfmt.py
@ -20,6 +20,8 @@ INDENTATION = ' ' * 4
|
|||||||
TEMPLATE_VARIABLE_OPENING_TAG = '___TEMPLATE_VARIABLE_OPENING_TAG___'
|
TEMPLATE_VARIABLE_OPENING_TAG = '___TEMPLATE_VARIABLE_OPENING_TAG___'
|
||||||
TEMPLATE_VARIABLE_CLOSING_TAG = '___TEMPLATE_VARIABLE_CLOSING_TAG___'
|
TEMPLATE_VARIABLE_CLOSING_TAG = '___TEMPLATE_VARIABLE_CLOSING_TAG___'
|
||||||
|
|
||||||
|
TEMPLATE_BRACKET_OPENING_TAG = '___TEMPLATE_BRACKET_OPENING_TAG___'
|
||||||
|
TEMPLATE_BRACKET_CLOSING_TAG = '___TEMPLATE_BRACKET_CLOSING_TAG___'
|
||||||
|
|
||||||
def strip_line(single_line):
|
def strip_line(single_line):
|
||||||
"""Strips the line and replaces neighbouring whitespaces with single space (except when within quotation marks)."""
|
"""Strips the line and replaces neighbouring whitespaces with single space (except when within quotation marks)."""
|
||||||
@ -85,6 +87,37 @@ def strip_variable_template_tags(line: str) -> str:
|
|||||||
line,
|
line,
|
||||||
flags=re.UNICODE)
|
flags=re.UNICODE)
|
||||||
|
|
||||||
|
def apply_bracket_template_tags(content: str) -> str:
|
||||||
|
""" Replaces bracket { and } with tags, so subsequent formatting is easier."""
|
||||||
|
result = ""
|
||||||
|
in_quotes = False
|
||||||
|
last_c = ""
|
||||||
|
|
||||||
|
for c in content:
|
||||||
|
if (c == "\'" or c == "\"") and last_c != "\\":
|
||||||
|
in_quotes = reverse_in_quotes_status(in_quotes)
|
||||||
|
if in_quotes:
|
||||||
|
if c == "{":
|
||||||
|
result += TEMPLATE_BRACKET_OPENING_TAG
|
||||||
|
elif c == "}":
|
||||||
|
result += TEMPLATE_BRACKET_CLOSING_TAG
|
||||||
|
else:
|
||||||
|
result += c
|
||||||
|
else:
|
||||||
|
result += c
|
||||||
|
last_c = c
|
||||||
|
return result
|
||||||
|
|
||||||
|
def reverse_in_quotes_status(status: bool) -> bool:
|
||||||
|
if status:
|
||||||
|
return False
|
||||||
|
return True
|
||||||
|
|
||||||
|
def strip_bracket_template_tags(content: str) -> str:
|
||||||
|
""" Replaces tags back with { and } respectively."""
|
||||||
|
content = content.replace(TEMPLATE_BRACKET_OPENING_TAG, "{", -1)
|
||||||
|
content = content.replace(TEMPLATE_BRACKET_CLOSING_TAG, "}", -1)
|
||||||
|
return content
|
||||||
|
|
||||||
def clean_lines(orig_lines) -> list:
|
def clean_lines(orig_lines) -> list:
|
||||||
"""Strips the lines and splits them if they contain curly brackets."""
|
"""Strips the lines and splits them if they contain curly brackets."""
|
||||||
@ -147,12 +180,14 @@ def perform_indentation(lines):
|
|||||||
|
|
||||||
def format_config_contents(contents):
|
def format_config_contents(contents):
|
||||||
"""Accepts the string containing nginx configuration and returns formatted one. Adds newline at the end."""
|
"""Accepts the string containing nginx configuration and returns formatted one. Adds newline at the end."""
|
||||||
|
contents = apply_bracket_template_tags(contents)
|
||||||
lines = contents.splitlines()
|
lines = contents.splitlines()
|
||||||
lines = clean_lines(lines)
|
lines = clean_lines(lines)
|
||||||
lines = join_opening_bracket(lines)
|
lines = join_opening_bracket(lines)
|
||||||
lines = perform_indentation(lines)
|
lines = perform_indentation(lines)
|
||||||
|
|
||||||
text = '\n'.join(lines)
|
text = '\n'.join(lines)
|
||||||
|
text = strip_bracket_template_tags(text)
|
||||||
|
|
||||||
for pattern, substitute in ((r'\n{3,}', '\n\n\n'), (r'^\n', ''), (r'\n$', '')):
|
for pattern, substitute in ((r'\n{3,}', '\n\n\n'), (r'^\n', ''), (r'\n$', '')):
|
||||||
text = re.sub(pattern, substitute, text, re.MULTILINE)
|
text = re.sub(pattern, substitute, text, re.MULTILINE)
|
||||||
|
@ -89,6 +89,14 @@ class TestFormatter(unittest.TestCase):
|
|||||||
self.assertEqual('lorem ipsum " foo bar zip " or " dd aa " mi',
|
self.assertEqual('lorem ipsum " foo bar zip " or " dd aa " mi',
|
||||||
strip_line(' lorem ipsum " foo bar zip " or \t " dd aa " mi'))
|
strip_line(' lorem ipsum " foo bar zip " or \t " dd aa " mi'))
|
||||||
|
|
||||||
|
def test_apply_bracket_template_tags(self):
|
||||||
|
self.assertEqual("\"aaa___TEMPLATE_BRACKET_OPENING_TAG___dd___TEMPLATE_BRACKET_CLOSING_TAG___bbb\"", apply_bracket_template_tags("\"aaa{dd}bbb\""))
|
||||||
|
self.assertEqual("\"aaa___TEMPLATE_BRACKET_OPENING_TAG___dd___TEMPLATE_BRACKET_CLOSING_TAG___bbb\"cc{cc}cc\"dddd___TEMPLATE_BRACKET_OPENING_TAG___eee___TEMPLATE_BRACKET_CLOSING_TAG___fff\"", apply_bracket_template_tags("\"aaa{dd}bbb\"cc{cc}cc\"dddd{eee}fff\""))
|
||||||
|
|
||||||
|
def test_strip_bracket_template_tags(self):
|
||||||
|
self.assertEqual("\"aaa{dd}bbb\"", strip_bracket_template_tags("\"aaa___TEMPLATE_BRACKET_OPENING_TAG___dd___TEMPLATE_BRACKET_CLOSING_TAG___bbb\""))
|
||||||
|
self.assertEqual("\"aaa{dd}bbb\"cc{cc}cc\"dddd{eee}fff\"", apply_bracket_template_tags("\"aaa___TEMPLATE_BRACKET_OPENING_TAG___dd___TEMPLATE_BRACKET_CLOSING_TAG___bbb\"cc{cc}cc\"dddd___TEMPLATE_BRACKET_OPENING_TAG___eee___TEMPLATE_BRACKET_CLOSING_TAG___fff\""))
|
||||||
|
|
||||||
def test_variable_template_tags(self):
|
def test_variable_template_tags(self):
|
||||||
self.assertEqual("foo bar ___TEMPLATE_VARIABLE_OPENING_TAG___myvar___TEMPLATE_VARIABLE_CLOSING_TAG___",
|
self.assertEqual("foo bar ___TEMPLATE_VARIABLE_OPENING_TAG___myvar___TEMPLATE_VARIABLE_CLOSING_TAG___",
|
||||||
apply_variable_template_tags("foo bar ${myvar}"))
|
apply_variable_template_tags("foo bar ${myvar}"))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user