vagrant/plugins/kernel_v2/config/trigger.rb

124 lines
3.3 KiB
Ruby
Raw Normal View History

2018-03-08 22:20:21 +00:00
require "vagrant"
module VagrantPlugins
module Kernel_V2
class TriggerConfig < Vagrant.plugin("2", :config)
2018-03-08 23:31:58 +00:00
DEFAULT_ON_ERROR = :halt
2018-03-08 22:20:21 +00:00
2018-03-08 23:31:58 +00:00
# Name for the given Trigger. Defaults to nil.
#
# @return [String]
2018-03-08 22:20:21 +00:00
attr_accessor :name
2018-03-08 23:31:58 +00:00
# A string to print at the WARN level
#
# @return [String]
attr_accessor :info
# A string to print at the WARN level
#
# @return [String]
attr_accessor :warn
# Determines what how a Trigger should behave if it runs into an error.
# Defaults to :halt, otherwise can only be set to :continue.
#
# @return [Symbol]
attr_accessor :on_error
# If set, will not run trigger for the configured Vagrant commands.
#
# @return [String, Array]
attr_accessor :ignore
# If set, will only run trigger for guests that match keys for this parameter.
#
# @return [String, Array]
attr_accessor :only_on
2018-03-08 23:34:39 +00:00
# A local inline or file script to execute for the trigger
#
# @return [Hash]
2018-03-08 23:34:39 +00:00
attr_accessor :run
# A remote inline or file script to execute for the trigger
#
# @return [Hash]
2018-03-08 23:34:39 +00:00
attr_accessor :run_remote
2018-03-08 22:20:21 +00:00
def initialize
@logger = Log4r::Logger.new("vagrant::config::trigger")
# Internal state
@_commands = []
# Trigger config options
2018-03-08 22:20:21 +00:00
@name = UNSET_VALUE
2018-03-08 23:31:58 +00:00
@info = UNSET_VALUE
@warn = UNSET_VALUE
@on_error = UNSET_VALUE
@ignore = UNSET_VALUE
@only_on = UNSET_VALUE
2018-03-08 23:34:39 +00:00
@run = UNSET_VALUE
@run_remote = UNSET_VALUE
2018-03-08 22:20:21 +00:00
end
2018-03-08 23:31:58 +00:00
# @param [Array, Symbol] command Vagrant command to create trigger on
2018-03-08 22:20:21 +00:00
# @param [Block] block The defined after block
def before(*command, &block)
2018-03-08 22:20:21 +00:00
end
2018-03-08 23:31:58 +00:00
# @param [Array, Symbol] command Vagrant command to create trigger on
2018-03-08 22:20:21 +00:00
# @param [Block] block The defined after block
def after(*command, &block)
2018-03-08 23:31:58 +00:00
end
# Sets the internal Trigger state for which commands the Trigger will run on
#
# @param [Array, Symbol, Args] command Vagrant command to create trigger on
def parse_command_whitelist(*command)
2018-03-08 22:20:21 +00:00
end
#-------------------------------------------------------------------
# Internal methods, don't call these.
#-------------------------------------------------------------------
def finalize!
@name = nil if @name == UNSET_VALUE
2018-03-08 23:31:58 +00:00
@info = nil if @info == UNSET_VALUE
@warn = nil if @warn == UNSET_VALUE
@on_error = DEFAULT_ON_ERROR if @on_error == UNSET_VALUE
@ignore = nil if @ignore == UNSET_VALUE
2018-03-08 23:34:39 +00:00
@only_on = nil if @only_on == UNSET_VALUE
@run = nil if @run == UNSET_VALUE
@run_remote = nil if @run_remote == UNSET_VALUE
2018-03-08 22:20:21 +00:00
end
2018-03-08 23:31:58 +00:00
# Validate Trigger settings
2018-03-08 22:20:21 +00:00
def validate(machine)
2018-03-09 21:06:26 +00:00
errors = _detected_errors
if !@run.nil?
# validate proper keys
# WARN if invalid keys are used?
end
if !@run_remote.nil?
# validate proper keys
# WARN if invalid keys are used?
end
2018-03-09 21:06:26 +00:00
{"triggers" => errors}
2018-03-08 22:20:21 +00:00
end
# The String representation of this Trigger.
#
# @return [String]
def to_s
"Trigger"
end
end
end
end