157 lines
5.0 KiB
Ruby
157 lines
5.0 KiB
Ruby
require "vagrant"
|
|
require 'pry'
|
|
|
|
require File.expand_path("../vm_trigger", __FILE__)
|
|
|
|
module VagrantPlugins
|
|
module Kernel_V2
|
|
class TriggerConfig < Vagrant.plugin("2", :config)
|
|
|
|
def initialize
|
|
@logger = Log4r::Logger.new("vagrant::config::trigger")
|
|
|
|
# Internal State
|
|
@_before_triggers = [] # An array of VagrantConfigTrigger objects
|
|
@_after_triggers = [] # An array of VagrantConfigTrigger objects
|
|
end
|
|
|
|
#-------------------------------------------------------------------
|
|
# Trigger before/after functions
|
|
#-------------------------------------------------------------------
|
|
#
|
|
# Commands are expected to be ether:
|
|
# - splat
|
|
# + config.trigger.before :up, :destroy, :halt do |trigger|....
|
|
# - array
|
|
# + config.trigger.before [:up, :destroy, :halt] do |trigger|....
|
|
#
|
|
# Config is expected to be given as a block, or the last parameter as a hash
|
|
#
|
|
# - block
|
|
# + config.trigger.before :up, :destroy, :halt do |trigger|
|
|
# trigger.option = "option"
|
|
# end
|
|
# - hash
|
|
# + config.trigger.before :up, :destroy, :halt, options: "option"
|
|
|
|
# Reads in and parses Vagrant command whitelist and settings for a defined
|
|
# trigger
|
|
#
|
|
# @param [Symbol] command Vagrant command to create trigger on
|
|
# @param [Block] block The defined before block
|
|
def before(*command, &block)
|
|
command.flatten!
|
|
blk = block
|
|
|
|
if !block_given? && command.last.is_a?(Hash)
|
|
# We were given a hash rather than a block,
|
|
# so the last element should be the "config block"
|
|
# and the rest are commands for the trigger
|
|
blk = command.pop
|
|
else
|
|
# No config block given at all, validation step should throw error?
|
|
end
|
|
|
|
command.each do |cmd|
|
|
trigger = create_trigger(cmd, blk)
|
|
@_before_triggers << trigger
|
|
end
|
|
end
|
|
|
|
# Reads in and parses Vagrant command whitelist and settings for a defined
|
|
# trigger
|
|
#
|
|
# @param [Symbol] command Vagrant command to create trigger on
|
|
# @param [Block] block The defined after block
|
|
def after(*command, &block)
|
|
command.flatten!
|
|
blk = block
|
|
if !block_given? && command.last.is_a?(Hash)
|
|
# We were given a hash rather than a block,
|
|
# so the last element should be the "config block"
|
|
# and the rest are commands for the trigger
|
|
blk = command.pop
|
|
else
|
|
# No config block given at all, validation step should throw error?
|
|
end
|
|
|
|
command.each do |cmd|
|
|
trigger = create_trigger(cmd, blk)
|
|
@_after_triggers << trigger
|
|
end
|
|
end
|
|
|
|
#-------------------------------------------------------------------
|
|
# Internal methods, don't call these.
|
|
#-------------------------------------------------------------------
|
|
|
|
# Creates a new trigger config. If a block is given, parse that block
|
|
# by calling it with the created trigger. Otherwise set the options if it's
|
|
# a hash.
|
|
#
|
|
# @param [Symbol] command Vagrant command to create trigger on
|
|
# @param [Block] block The defined config block
|
|
# @return [VagrantConfigTrigger]
|
|
def create_trigger(command, block)
|
|
trigger = VagrantConfigTrigger.new(command)
|
|
if block.is_a?(Hash)
|
|
trigger.set_options(block)
|
|
else
|
|
block.call(trigger, VagrantConfigTrigger)
|
|
end
|
|
return trigger
|
|
end
|
|
|
|
# Solve the mystery of disappearing state??
|
|
def merge(other)
|
|
super.tap do |result|
|
|
other_defined_before_triggers = other.instance_variable_get(:@_before_triggers)
|
|
other_defined_after_triggers = other.instance_variable_get(:@_after_triggers)
|
|
|
|
#overrides???
|
|
|
|
result.instance_variable_set(:@_before_triggers, other_defined_before_triggers)
|
|
result.instance_variable_set(:@_after_triggers, other_defined_after_triggers)
|
|
end
|
|
end
|
|
|
|
def finalize!
|
|
# read through configured settings blocks and set their values
|
|
# and then set up action hooks here?
|
|
if !@_before_triggers.empty?
|
|
@_before_triggers.map { |t| t.finalize! }
|
|
end
|
|
|
|
if !@_after_triggers.empty?
|
|
@_after_triggers.map { |t| t.finalize! }
|
|
end
|
|
end
|
|
|
|
# Validate Trigger settings
|
|
# TODO: Validate not called if there are guests defined in vagrantfile
|
|
def validate(machine)
|
|
binding.pry
|
|
errors = _detected_errors
|
|
@_before_triggers.each do |bt|
|
|
error = bt.validate(machine)
|
|
errors.concat error if !error.empty?
|
|
end
|
|
|
|
@_after_triggers.each do |at|
|
|
error = at.validate(machine)
|
|
errors.concat error if !error.empty?
|
|
end
|
|
|
|
{"trigger" => errors}
|
|
end
|
|
|
|
# The String representation of this Trigger.
|
|
#
|
|
# @return [String]
|
|
def to_s
|
|
"trigger"
|
|
end
|
|
end
|
|
end
|
|
end
|