inspec/lib/vulcano/targets/zip.rb
Dominik Richter 07cb7efe36 lint targets
Signed-off-by: Dominik Richter <dominik.richter@gmail.com>
2015-09-22 02:15:42 +02:00

44 lines
1,003 B
Ruby

# encoding: utf-8
require 'zip'
require 'vulcano/targets/dir'
module Vulcano::Targets
class ZipHelper
def content(input, _filter)
content = []
::Zip::InputStream.open(input) do |io|
while (entry = io.get_next_entry)
h = {
content: io.read,
ref: File.join(input, entry.name),
}
content.push(h)
end
end
content
end
def structure(input)
files = []
::Zip::InputStream.open(input) do |io|
while (entry = io.get_next_entry)
files.push(entry.name)
end
end
files
end
def resolve(path)
files = structure(path)
helper = DirsHelper.get_handler(files)
if helper.nil?
fail "Don't know how to handle folder #{path}"
end
# get all file contents
# @TODO
_file_handler = Vulcano::Targets.modules['file']
test_files = helper.get_filenames(files)
content(path, test_files)
end
end
end