mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-01-14 13:00:10 -06:00
62 lines
1.5 KiB
Python
62 lines
1.5 KiB
Python
from __future__ import print_function
|
|
from __future__ import unicode_literals
|
|
|
|
import io
|
|
import re
|
|
|
|
import yaml
|
|
from aspy.yaml import ordered_load
|
|
|
|
|
|
def _indent(s):
|
|
lines = s.splitlines(True)
|
|
return ''.join(' ' * 4 + line if line.strip() else line for line in lines)
|
|
|
|
|
|
def _is_header_line(line):
|
|
return (line.startswith(('#', '---')) or not line.strip())
|
|
|
|
|
|
def _migrate_map(contents):
|
|
# Find the first non-header line
|
|
lines = contents.splitlines(True)
|
|
i = 0
|
|
while _is_header_line(lines[i]):
|
|
i += 1
|
|
|
|
header = ''.join(lines[:i])
|
|
rest = ''.join(lines[i:])
|
|
|
|
if isinstance(ordered_load(contents), list):
|
|
# If they are using the "default" flow style of yaml, this operation
|
|
# will yield a valid configuration
|
|
try:
|
|
trial_contents = header + 'repos:\n' + rest
|
|
ordered_load(trial_contents)
|
|
contents = trial_contents
|
|
except yaml.YAMLError:
|
|
contents = header + 'repos:\n' + _indent(rest)
|
|
|
|
return contents
|
|
|
|
|
|
def _migrate_sha_to_rev(contents):
|
|
reg = re.compile(r'(\n\s+)sha:')
|
|
return reg.sub(r'\1rev:', contents)
|
|
|
|
|
|
def migrate_config(config_file, quiet=False):
|
|
with io.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 io.open(config_file, 'w') as f:
|
|
f.write(contents)
|
|
|
|
print('Configuration has been migrated.')
|
|
elif not quiet:
|
|
print('Configuration is already migrated.')
|