]> nos-oignons.net Git - gestion-adh.git/blob - bin/pre-commit-hook
713cb6fa33c1b98a7e615f6aa6e71b4eebec9c18
[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 &&
20     content.start_with?("---\n") &&
21     YAML.load(content)
22 end
23
24 def is_valid_subscription_file?(file)
25   IO.popen(['git', 'show', ":#{file}"]) do |f|
26     is_valid_subscription?(f.read)
27   end
28 end
29
30 modified = []
31 IO.popen(['git', 'diff-index', '--cached', '--name-status', against]) do |f|
32   f.readlines.each do |line|
33     status, file = line.strip.split("\t", 2)
34     # Has file been added or modified?
35     if ['A', 'M'].include?(status)
36       modified << file
37       if !is_valid_subscription_file?(file)
38         $stderr.puts "Désolé : #{file} n'a pas le bon format !"
39         exit 1
40       end
41     end
42   end
43 end
44