Removed if condition and added a little comments

This commit is contained in:
Massimo Gismondi 2025-01-20 06:51:06 +01:00
parent a9956f7825
commit 4f03818280

View file

@ -135,9 +135,10 @@ def json_to_table(robots_json):
def json_to_htaccess(robot_json): def json_to_htaccess(robot_json):
# Creates a .htaccess filter file. It uses a regular expression to filter out # Creates a .htaccess filter file. It uses a regular expression to filter out
# User agents that contain any of the blocked values. # User agents that contain any of the blocked values.
htaccess += "RewriteEngine On\n" htaccess = "RewriteEngine On\n"
htaccess += "RewriteCond %{HTTP_USER_AGENT} ^.*(" htaccess += "RewriteCond %{HTTP_USER_AGENT} ^.*("
# Escape spaces in each User Agent to build the regular expression
robots = map(lambda el: el.replace(" ", "\\ "), robot_json.keys()) robots = map(lambda el: el.replace(" ", "\\ "), robot_json.keys())
htaccess += "|".join(robots) htaccess += "|".join(robots)
htaccess += ").*$ [NC]\n" htaccess += ").*$ [NC]\n"
@ -149,10 +150,8 @@ def update_file_if_changed(file_name, converter):
"""Update files if newer content is available and log the (in)actions.""" """Update files if newer content is available and log the (in)actions."""
new_content = converter(load_robots_json()) new_content = converter(load_robots_json())
filepath = Path(file_name) filepath = Path(file_name)
if not filepath.exists(): # "touch" will create the file if it doesn't exist yet
filepath.write_text(new_content, encoding="utf-8") filepath.touch()
print(f"{file_name} has been created.")
return
old_content = filepath.read_text(encoding="utf-8") old_content = filepath.read_text(encoding="utf-8")
if old_content == new_content: if old_content == new_content:
print(f"{file_name} is already up to date.") print(f"{file_name} is already up to date.")