|
| 1 | +module Overcommit::Hook::PostCommit |
| 2 | + # Checks the status of submodules in the current repository and |
| 3 | + # notifies the user if any are uninitialized, out of date with |
| 4 | + # the current index, or contain merge conflicts. |
| 5 | + class SubmoduleStatus < Base |
| 6 | + SUBMODULE_STATUS_REGEX = / |
| 7 | + ^\s*(?<prefix>[-+U]?)(?<sha1>\w+) |
| 8 | + \s(?<path>[^\s]+?) |
| 9 | + (?:\s\((?<describe>.+)\))?$ |
| 10 | + /x |
| 11 | + |
| 12 | + SubmoduleStatus = Struct.new(:prefix, :sha1, :path, :describe) do |
| 13 | + def uninitialized? |
| 14 | + prefix == '-' |
| 15 | + end |
| 16 | + |
| 17 | + def outdated? |
| 18 | + prefix == '+' |
| 19 | + end |
| 20 | + |
| 21 | + def merge_conflict? |
| 22 | + prefix == 'U' |
| 23 | + end |
| 24 | + end |
| 25 | + |
| 26 | + def run |
| 27 | + result = execute(command) |
| 28 | + submodule_statuses = parse_submodule_statuses(result.stdout) |
| 29 | + |
| 30 | + messages = [] |
| 31 | + submodule_statuses.each do |submodule_status| |
| 32 | + path = submodule_status.path |
| 33 | + if submodule_status.uninitialized? |
| 34 | + messages << "Submodule #{path} is uninitialized." |
| 35 | + elsif submodule_status.outdated? |
| 36 | + messages << "Submodule #{path} is out of date with the current index." |
| 37 | + elsif submodule_status.merge_conflict? |
| 38 | + messages << "Submodule #{path} has merge conflicts." |
| 39 | + end |
| 40 | + end |
| 41 | + |
| 42 | + return :pass if messages.empty? |
| 43 | + |
| 44 | + [:warn, messages.join("\n")] |
| 45 | + end |
| 46 | + |
| 47 | + private |
| 48 | + |
| 49 | + def parse_submodule_statuses(output) |
| 50 | + output.scan(SUBMODULE_STATUS_REGEX).map do |prefix, sha1, path, describe| |
| 51 | + SubmoduleStatus.new(prefix, sha1, path, describe) |
| 52 | + end |
| 53 | + end |
| 54 | + end |
| 55 | +end |
0 commit comments