92 lines
2.8 KiB
Ruby
92 lines
2.8 KiB
Ruby
require "fileutils"
|
|
|
|
require "log4r"
|
|
|
|
module VagrantPlugins
|
|
module HyperV
|
|
module Action
|
|
class Import
|
|
def initialize(app, env)
|
|
@app = app
|
|
@logger = Log4r::Logger.new("vagrant::hyperv::import")
|
|
end
|
|
|
|
def call(env)
|
|
vm_dir = env[:machine].box.directory.join("Virtual Machines")
|
|
hd_dir = env[:machine].box.directory.join("Virtual Hard Disks")
|
|
|
|
if !vm_dir.directory? || !hd_dir.directory?
|
|
raise Errors::BoxInvalid
|
|
end
|
|
|
|
config_path = nil
|
|
vm_dir.each_child do |f|
|
|
if f.extname.downcase == ".xml"
|
|
config_path = f
|
|
break
|
|
end
|
|
end
|
|
|
|
image_path = nil
|
|
image_ext = nil
|
|
hd_dir.each_child do |f|
|
|
if %w{.vhd .vhdx}.include?(f.extname.downcase)
|
|
image_path = f
|
|
image_ext = f.extname.downcase
|
|
break
|
|
end
|
|
end
|
|
|
|
if !config_path || !image_path
|
|
raise Errors::BoxInvalid
|
|
end
|
|
|
|
env[:ui].output("Importing a Hyper-V instance")
|
|
|
|
switches = env[:machine].provider.driver.execute("get_switches.ps1", {})
|
|
raise Errors::NoSwitches if switches.empty?
|
|
|
|
switch = switches[0]["Name"]
|
|
if switches.length > 1
|
|
env[:ui].detail(I18n.t("vagrant_hyperv.choose_switch") + "\n ")
|
|
switches.each_index do |i|
|
|
switch = switches[i]
|
|
env[:ui].detail("#{i+1}) #{switch["Name"]}")
|
|
end
|
|
env[:ui].detail(" ")
|
|
|
|
switch = nil
|
|
while !switch
|
|
switch = env[:ui].ask("What switch would you like to use? ")
|
|
next if !switch
|
|
switch = switch.to_i - 1
|
|
switch = nil if switch < 0 || switch >= switches.length
|
|
end
|
|
switch = switches[switch]["Name"]
|
|
end
|
|
|
|
env[:ui].detail("Cloning virtual hard drive...")
|
|
source_path = image_path.to_s
|
|
dest_path = env[:machine].data_dir.join("disk#{image_ext}").to_s
|
|
FileUtils.cp(source_path, dest_path)
|
|
image_path = dest_path
|
|
|
|
# We have to normalize the paths to be Windows paths since
|
|
# we're executing PowerShell.
|
|
options = {
|
|
vm_xml_config: config_path.to_s.gsub("/", "\\"),
|
|
image_path: image_path.to_s.gsub("/", "\\")
|
|
}
|
|
options[:switchname] = switch if switch
|
|
|
|
env[:ui].detail("Creating and registering the VM...")
|
|
server = env[:machine].provider.driver.import(options)
|
|
env[:ui].detail("Successfully imported a VM with name: #{server['name']}")
|
|
env[:machine].id = server["id"]
|
|
@app.call(env)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|