]> nos-oignons.net Git - gestion-adh.git/blob - bin/pre-commit-hook
Next step in pre-commit hook implementation
[gestion-adh.git] / bin / pre-commit-hook
1 #!/usr/bin/ruby1.9.1
2 #-*- coding: utf-8 -*-
3
4 require 'rubygems'
5 require 'bundler'
6 Bundler.setup
7
8 require 'safe_yaml'
9 SafeYAML::OPTIONS[:default_mode] = :safe
10
11 if system('git rev-parse --quiet --verify HEAD >/dev/null')
12   against = 'HEAD'
13 else
14   # Initial commit: diff against an empty tree object
15   against = '4b825dc642cb6eb9a060e54bf8d69288fbee4904'
16 end
17
18 def is_valid_subscription?(content)
19   content.length != 0 && YAML.load(content)
20 end
21
22 def is_valid_subscription_file?(file)
23   IO.popen(['git', 'show', ":#{file}"]) do |f|
24     is_valid_subscription?(f.read)
25   end
26 end
27
28 modified = []
29 IO.popen(['git', 'diff-index', '--cached', '--name-status', against]) do |f|
30   f.readlines.each do |line|
31     status, file = line.strip.split("\t", 2)
32     # Has file been added or modified?
33     if ['A', 'M'].include?(status)
34       modified << file
35       if !is_valid_subscription_file?(file)
36         $stderr.puts "Désolé : #{file} n'a pas le bon format !"
37         exit 1
38       end
39     end
40   end
41 end
42