Skip to content

Commit 1732708

Browse files
jawshooahsds
authored andcommitted
Add SubmoduleStatus post-commit hook
1 parent 0e104d4 commit 1732708

File tree

2 files changed

+61
-0
lines changed

2 files changed

+61
-0
lines changed

config/default.yml

+6
Original file line numberDiff line numberDiff line change
@@ -456,6 +456,12 @@ PostCommit:
456456
description: 'Generating tags file from source'
457457
required_executable: 'ctags'
458458

459+
SubmoduleStatus:
460+
enabled: false
461+
description: 'Checking submodule status'
462+
required_executable: 'git'
463+
flags: ['submodule', 'status']
464+
459465
# Hooks that run after `git merge` executes successfully (no merge conflicts).
460466
PostMerge:
461467
ALL:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
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

Comments
 (0)