mirror of
https://github.com/ai-robots-txt/ai.robots.txt.git
synced 2025-04-04 19:13:57 +00:00
Removed if condition and added a little comments
This commit is contained in:
parent
a9956f7825
commit
4f03818280
1 changed files with 4 additions and 5 deletions
|
@ -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.")
|
||||||
|
|
Loading…
Reference in a new issue