2025-02-09 21:10:22 +01:00
|
|
|
import re
|
2025-02-09 21:22:51 +01:00
|
|
|
import textwrap
|
2025-02-09 21:10:22 +01:00
|
|
|
|
|
|
|
import yaml
|
|
|
|
|
2025-02-09 21:20:03 +01:00
|
|
|
from pre_commit.clientlib import load_config
|
2025-02-09 21:10:22 +01:00
|
|
|
from pre_commit.util import yaml_load
|
|
|
|
|
|
|
|
|
|
|
|
def _is_header_line(line: str) -> bool:
|
|
|
|
return line.startswith(('#', '---')) or not line.strip()
|
|
|
|
|
|
|
|
|
|
|
|
def _migrate_map(contents: str) -> str:
|
2025-02-09 21:22:51 +01:00
|
|
|
if isinstance(yaml_load(contents), list):
|
|
|
|
# Find the first non-header line
|
|
|
|
lines = contents.splitlines(True)
|
|
|
|
i = 0
|
|
|
|
# Only loop on non empty configuration file
|
|
|
|
while i < len(lines) and _is_header_line(lines[i]):
|
|
|
|
i += 1
|
2025-02-09 21:10:22 +01:00
|
|
|
|
2025-02-09 21:22:51 +01:00
|
|
|
header = ''.join(lines[:i])
|
|
|
|
rest = ''.join(lines[i:])
|
2025-02-09 21:10:22 +01:00
|
|
|
|
|
|
|
# If they are using the "default" flow style of yaml, this operation
|
|
|
|
# will yield a valid configuration
|
|
|
|
try:
|
|
|
|
trial_contents = f'{header}repos:\n{rest}'
|
|
|
|
yaml_load(trial_contents)
|
|
|
|
contents = trial_contents
|
|
|
|
except yaml.YAMLError:
|
2025-02-09 21:22:51 +01:00
|
|
|
contents = f'{header}repos:\n{textwrap.indent(rest, " " * 4)}'
|
2025-02-09 21:10:22 +01:00
|
|
|
|
|
|
|
return contents
|
|
|
|
|
|
|
|
|
|
|
|
def _migrate_sha_to_rev(contents: str) -> str:
|
|
|
|
return re.sub(r'(\n\s+)sha:', r'\1rev:', contents)
|
|
|
|
|
|
|
|
|
|
|
|
def migrate_config(config_file: str, quiet: bool = False) -> int:
|
2025-02-09 21:20:03 +01:00
|
|
|
# ensure that the configuration is a valid pre-commit configuration
|
|
|
|
load_config(config_file)
|
|
|
|
|
2025-02-09 21:10:22 +01:00
|
|
|
with open(config_file) as f:
|
|
|
|
orig_contents = contents = f.read()
|
|
|
|
|
|
|
|
contents = _migrate_map(contents)
|
|
|
|
contents = _migrate_sha_to_rev(contents)
|
|
|
|
|
|
|
|
if contents != orig_contents:
|
|
|
|
with open(config_file, 'w') as f:
|
|
|
|
f.write(contents)
|
|
|
|
|
|
|
|
print('Configuration has been migrated.')
|
|
|
|
elif not quiet:
|
|
|
|
print('Configuration is already migrated.')
|
|
|
|
return 0
|