inspec/bin/vulcano
Dominik Richter 34bc6a387c feature: add configurable profile_id field
Signed-off-by: Dominik Richter <dominik@vulcanosec.com>
2015-06-25 17:45:46 +02:00

45 lines
1.2 KiB
Ruby
Executable file

#!/usr/bin/env ruby
# Copyright 2015 Dominik Richter. All rights reserved.
require 'thor'
require 'json'
require_relative '../lib/vulcano'
require_relative '../lib/verify'
class VulcanoCLI < Thor
desc "json PATH", "read all tests in PATH and generate a JSON-profile"
option :output, aliases: :o, type: :string
option :print, aliases: :p, type: :boolean
option :id, type: :string
def json(*paths)
paths.each do |path|
Vulcano::Profiles.new.valid_folder? path unless options[:print]
vc = Vulcano::Profiles.new({ quiet: options[:print], id: options[:id] })
vc.add_folder(path)
if options[:print]
puts JSON.pretty_generate( vc.profiles )
else
dst = options[:output] || File.join( path, '.vulcano.json' )
if File::exist? dst
puts "----> updating #{dst}"
else
puts "----> creating #{dst}"
end
fdst = File::expand_path(dst)
File::write(fdst, JSON.dump(vc.profiles))
end
end
end
desc "check PATH", "check all tests in PATH"
def check(*paths)
paths.each do |path|
puts "#{path}"
Vulcano::Profiles.new.valid_folder? path
puts
end
end
end
VulcanoCLI.start(ARGV)