Sha256: 17796b0100de1294f51b76f74877c2be259eb2c7ab2322d16d8a3595e1a4afe3

Contents?: true

Size: 1.6 KB

Versions: 14

Compression:

Stored size: 1.6 KB

Contents

class ForeignInputSet < ActiveRecord::Base
  include ForemanRemoteExecution::Exportable

  class CircularDependencyError < Foreman::Exception
  end

  attr_exportable :exclude, :include, :include_all, :template => ->(input_set) { input_set.template.name }

  belongs_to :template
  belongs_to :target_template, :class_name => 'Template'

  scoped_search :on => :target_template_id, :complete_value => true

  validates :target_template, :presence => true
  validate :check_circular_dependency

  def inputs(templates_stack = [])
    return [] unless target_template
    if templates_stack.include?(target_template)
      raise CircularDependencyError.new(N_("Circular dependency detected in foreign input set '%{template}' -> '%{target_template}'. Templates stack: %{templates_stack}"),
                                        :template => template.name, :target_template => target_template.name, :templates_stack => templates_stack.map(&:name).inspect)
    end
    inputs = target_template.template_inputs_with_foreign(templates_stack + [target_template])
    unless self.include_all?
      inputs = inputs.select { |input| included_names.include?(input.name) }
    end
    inputs = inputs.reject { |input| excluded_names.include?(input.name) }
    return inputs
  end

  def included_names
    comma_separated_names(self.include)
  end

  def excluded_names
    comma_separated_names(self.exclude)
  end

  private

  def comma_separated_names(value)
    value.to_s.split(',').map(&:strip)
  end

  def check_circular_dependency
    self.inputs
    true
  rescue CircularDependencyError => e
    self.errors.add :base, e.message
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
foreman_remote_execution-1.3.7 app/models/foreign_input_set.rb
foreman_remote_execution-1.3.6 app/models/foreign_input_set.rb
foreman_remote_execution-1.4.1 app/models/foreign_input_set.rb
foreman_remote_execution-1.3.5 app/models/foreign_input_set.rb
foreman_remote_execution-1.3.4 app/models/foreign_input_set.rb
foreman_remote_execution-1.3.3 app/models/foreign_input_set.rb
foreman_remote_execution-1.3.2 app/models/foreign_input_set.rb
foreman_remote_execution-1.3.1 app/models/foreign_input_set.rb
foreman_remote_execution-1.3.0 app/models/foreign_input_set.rb
foreman_remote_execution-1.2.2 app/models/foreign_input_set.rb
foreman_remote_execution-1.2.1 app/models/foreign_input_set.rb
foreman_remote_execution-1.2.0 app/models/foreign_input_set.rb
foreman_remote_execution-1.1.1 app/models/foreign_input_set.rb
foreman_remote_execution-1.1.0 app/models/foreign_input_set.rb