]> 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   return false if content.length == 0
20   return false unless content.start_with?("---\n")
21   begin
22     data = YAML.load(content)
23   rescue ArgumentError
24     # Parse error
25     return false
26   end
27   ['name', 'email'].each do |key|
28     return false unless data.include?(key)
29   end
30   true
31 end
32
33 def is_valid_subscription_file?(file)
34   IO.popen(['git', 'show', ":#{file}"]) do |f|
35     is_valid_subscription?(f.read)
36   end
37 end
38
39 modified = []
40 IO.popen(['git', 'diff-index', '--cached', '--name-status', against]) do |f|
41   f.readlines.each do |line|
42     status, file = line.strip.split("\t", 2)
43     # Has file been added or modified?
44     if ['A', 'M'].include?(status)
45       modified << file
46       if !is_valid_subscription_file?(file)
47         $stderr.puts "Désolé : #{file} n'a pas le bon format !"
48         exit 1
49       end
50     end
51   end
52 end
53