class Card module Set class Event module Options def validate_conditions @opts.each do |key, val| next if key.in? %i[in before after around] validate_condition_name key validate_condition_value key, val end end def validate_condition_name condition return if Card::Set::Event::CONDITIONS.include? condition raise ArgumentError, "invalid condition key '#{condition}' in event '#{@event}'\n" \ "valid conditions are #{Card::Set::Event::CONDITIONS.to_a.join ', '}" end def validate_condition_value condition, val if condition == :when validate_when_value val else invalid = Array.wrap(val) - Array.wrap(valid_values(condition)) return if invalid.empty? raise ArgumentError, "invalid option#{'s' if invalid.size > 1} '#{invalid}' "\ "for condition '#{condition}' in event '#{@event}'" end end def validate_when_value val return if val.is_a?(Symbol) || val.is_a?(Proc) raise ArgumentError, "invalid value for condition 'when' in event '#{@event}'\n" \ "must be a symbol or a proc" end def valid_values condition Card::Set::Event::CONDITION_OPTIONS[condition] end def event_opts stage_or_opts, opts opts = normalize_opts stage_or_opts, opts process_stage_opts opts process_action_opts opts opts end def normalize_opts stage_or_opts, opts if stage_or_opts.is_a? Symbol opts[:in] = stage_or_opts else opts = stage_or_opts end opts end def process_action_opts opts opts[:on] = [:create, :update] if opts[:on] == :save end def process_stage_opts opts if opts[:after] || opts[:before] # ignore :in options elsif (in_opt = opts.delete :in) opts[:after] = callback_name in_opt, opts.delete(:after_subcards) end end def callback_name stage, after_subcards=false name = after_subcards ? "#{stage}_final_stage" : "#{stage}_stage" name.to_sym end end end end end