Created
June 12, 2012 01:12
-
-
Save mccun934/2913771 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/ruby | |
# Manifest cat - prints useful information about manifest ZIP import | |
# | |
# yum -y install unzip rubygem-json | |
# | |
require 'rubygems' | |
require 'json' | |
if ARGV.size == 0 | |
puts "Usage: #{$0} manifest.zip" | |
exit 1 | |
end | |
manifest=ARGV[0] | |
unless File.exist? manifest | |
puts "Unable to read file #{manifest}" | |
exit 2 | |
end | |
tmpdir=`mktemp -d`.chomp | |
`unzip #{manifest} -d #{tmpdir}` | |
`unzip #{tmpdir}/consumer_export.zip -d #{tmpdir}` | |
# Grab Consumer Data | |
File.open("#{tmpdir}/export/consumer.json", 'r') do |file_json| | |
c = JSON.parse(file_json.readlines.to_s) | |
puts "Consumer UUID: #{c['uuid']}" | |
end | |
# Grab Meta data about the export | |
File.open("#{tmpdir}/export/meta.json", 'r') do |file_json| | |
m = JSON.parse(file_json.readlines.to_s) | |
puts "Export Version: #{m['version']}" | |
puts "Creation Date: #{m['created']}" | |
end | |
# Grab the products | |
Dir.glob("#{tmpdir}/export/products/*.json").each do |file| | |
File.open(file, 'r') do |file_json| | |
p = JSON.parse(file_json.readlines.to_s) | |
puts "Product: #{p['name']} (#{p['id']})" | |
me = "No" | |
p['attributes'].each { |a| me = "Yes" if a['name'] == 'multi-entitlement' and a['value'].downcase == 'yes' } rescue me = "No" | |
puts " Multi-entitlement: #{me}" | |
end | |
end | |
# Grab the entitlements | |
Dir.glob("#{tmpdir}/export/entitlements/*.json").each do |file| | |
File.open(file, 'r') do |file_json| | |
e = JSON.parse(file_json.readlines.to_s) | |
puts "Entitlement (#{e['pool']['id']}):" | |
puts " Product: #{e['pool']['productName']} (#{e['pool']['productId']})" | |
puts " Pool Id: #{e['pool']['id']}" | |
puts " Quantity: #{e['pool']['quantity']}" | |
puts " Contract: #{e['pool']['contractNumber']}" | |
puts " Account: #{e['pool']['accountNumber']}" | |
puts " Ends: #{e['pool']['endDate']}" | |
end | |
end | |
# Grab the consumer types | |
Dir.glob("#{tmpdir}/export/consumer_types/*.json").each do |file| | |
File.open(file, 'r') do |file_json| | |
c = JSON.parse(file_json.readlines.to_s) | |
puts "Consumer Type: #{c['label']} (#{c['id']})" | |
end | |
end | |
`rm -rf #{tmpdir}` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment