App-Open-Source-per-iPhone-.../.github/osia_validate_categories.rb

35 lines
644 B
Ruby
Raw Normal View History

2016-05-16 19:29:04 +02:00
require_relative 'osia_helper'
2016-05-16 19:22:27 +02:00
2016-05-16 19:29:04 +02:00
j = get_json
2016-05-16 19:22:27 +02:00
c = j['categories']
a = j['projects']
def failed(cat, app)
puts "‼️ #{cat} is not a valid category for #{app}"
exit 1
end
def verify(cat, allowed, app)
failed(cat, app) unless allowed.include? cat
end
allowed_categories = c.sort_by { |h| h['title']}.map { |x| x['id']}
a.each do |a|
cat = a['category']
if cat.nil?
# failed(cat, a)
puts "missing category for #{a}"
exit 1
end
if cat.class == String
verify(cat, allowed_categories, a)
elsif cat.class == Array
cat.each { |c| verify(c, allowed_categories, a) }
end
end
puts 'categories validated ✅'