yaml_validation.rb 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. #!/usr/bin/env ruby
  2. #
  3. #
  4. #
  5. require 'yaml'
  6. require 'tmpdir'
  7. class YamlValidate
  8. def self.yaml_file?(filename)
  9. return filename.end_with?('.yaml') || filename.end_with?('.yml')
  10. end
  11. def self.short_yaml_ext?(filename)
  12. return filename.end_with?(".yml")
  13. end
  14. def self.valid_yaml?(filename)
  15. YAML::load_file(filename)
  16. return true
  17. end
  18. end
  19. class GitCommit
  20. attr_accessor :oldrev, :newrev, :refname, :tmp
  21. def initialize(oldrev, newrev, refname)
  22. @oldrev = oldrev
  23. @newrev = newrev
  24. @refname = refname
  25. @tmp = Dir.mktmpdir(@newrev)
  26. end
  27. def get_file_changes()
  28. files = %x[/usr/bin/git diff --name-only #{@oldrev} #{@newrev} --diff-filter=ACM].split("\n")
  29. # if files is empty we will get a full checkout. This happens on
  30. # a git rm file. If there are no changes then we need to skip the archive
  31. return [] if files.empty?
  32. # We only want to take the files that changed. Archive will do that when passed
  33. # the filenames. It will export these to a tmp dir
  34. system("/usr/bin/git archive #{@newrev} #{files.join(" ")} | tar x -C #{@tmp}")
  35. return Dir.glob("#{@tmp}/**/*").delete_if { |file| File.directory?(file) }
  36. end
  37. end
  38. if __FILE__ == $0
  39. while data = STDIN.gets
  40. oldrev, newrev, refname = data.split
  41. gc = GitCommit.new(oldrev, newrev, refname)
  42. results = []
  43. gc.get_file_changes().each do |file|
  44. begin
  45. puts "++++++ Received: #{file}"
  46. #raise "Yaml file extensions must be .yaml not .yml" if YamlValidate.short_yaml_ext? file
  47. # skip readme, other files, etc
  48. next unless YamlValidate.yaml_file?(file)
  49. results << YamlValidate.valid_yaml?(file)
  50. rescue Exception => ex
  51. puts "\n#{ex.message}\n\n"
  52. results << false
  53. end
  54. end
  55. #puts "RESULTS\n#{results.inspect}\n"
  56. exit 1 if results.include?(false)
  57. end
  58. end