Module: ForemanRemoteExecution::HostExtensions
- Defined in:
- app/models/concerns/foreman_remote_execution/host_extensions.rb
Class Method Summary collapse
Instance Method Summary collapse
- #becomes(*args) ⇒ Object
- #clear_host_parameters_cache! ⇒ Object
- #drop_execution_interface_cache ⇒ Object
-
#execution_interface ⇒ Object
rubocop:enable Naming/MemoizedInstanceVariableName.
- #execution_status(options = {}) ⇒ Object
- #execution_status_label(options = {}) ⇒ Object
-
#host_params_hash ⇒ Object
rubocop:disable Naming/MemoizedInstanceVariableName.
- #reload(*args) ⇒ Object
- #remote_execution_proxies(provider, authorized = true) ⇒ Object
- #remote_execution_ssh_keys ⇒ Object
- #set_execution_interface(identifier) ⇒ Object
Class Method Details
.prepended(base) ⇒ Object
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
# File 'app/models/concerns/foreman_remote_execution/host_extensions.rb', line 3 def self.prepended(base) base.instance_eval do has_many :targeting_hosts, :dependent => :destroy, :foreign_key => 'host_id' has_many :template_invocations, :dependent => :destroy, :foreign_key => 'host_id' has_one :execution_status_object, :class_name => 'HostStatus::ExecutionStatus', :foreign_key => 'host_id', :dependent => :destroy has_many :run_host_job_tasks, :through => :template_invocations scoped_search :relation => :run_host_job_tasks, :on => :result, :rename => 'job_invocation.result', :ext_method => :search_by_job_invocation, :only_explicit => true, :complete_value => TemplateInvocation::TaskResultMap::REVERSE_MAP scoped_search :relation => :template_invocations, :on => :job_invocation_id, :rename => 'job_invocation.id', :only_explicit => true, :ext_method => :search_by_job_invocation scoped_search :relation => :execution_status_object, :on => :status, :rename => :execution_status, :complete_value => { :ok => HostStatus::ExecutionStatus::OK, :error => HostStatus::ExecutionStatus::ERROR } def search_by_job_invocation(key, operator, value) if key == 'job_invocation.result' operator = operator == '=' ? 'IN' : 'NOT IN' value = TemplateInvocation::TaskResultMap.status_to_task_result(value) end mapping = { 'job_invocation.id' => %(#{TemplateInvocation.table_name}.job_invocation_id #{operator} ?), 'job_invocation.result' => %(#{ForemanTasks::Task.table_name}.result #{operator} (?)), } { :conditions => sanitize_sql_for_conditions([mapping[key], value_to_sql(operator, value)]), :joins => { :template_invocations => [:run_host_job_task] }, } end end end |
Instance Method Details
#becomes(*args) ⇒ Object
98 99 100 101 102 |
# File 'app/models/concerns/foreman_remote_execution/host_extensions.rb', line 98 def becomes(*args) became = super(*args) became.drop_execution_interface_cache if became.respond_to? :drop_execution_interface_cache became end |
#clear_host_parameters_cache! ⇒ Object
109 110 111 112 |
# File 'app/models/concerns/foreman_remote_execution/host_extensions.rb', line 109 def clear_host_parameters_cache! super @cached_rex_host_params_hash = nil end |
#drop_execution_interface_cache ⇒ Object
94 95 96 |
# File 'app/models/concerns/foreman_remote_execution/host_extensions.rb', line 94 def drop_execution_interface_cache @execution_interface = nil end |
#execution_interface ⇒ Object
rubocop:enable Naming/MemoizedInstanceVariableName
53 54 55 |
# File 'app/models/concerns/foreman_remote_execution/host_extensions.rb', line 53 def execution_interface get_interface_by_flag(:execution) end |
#execution_status(options = {}) ⇒ Object
39 40 41 |
# File 'app/models/concerns/foreman_remote_execution/host_extensions.rb', line 39 def execution_status( = {}) @execution_status ||= get_status(HostStatus::ExecutionStatus).to_status() end |
#execution_status_label(options = {}) ⇒ Object
43 44 45 |
# File 'app/models/concerns/foreman_remote_execution/host_extensions.rb', line 43 def execution_status_label( = {}) @execution_status_label ||= get_status(HostStatus::ExecutionStatus).to_label() end |
#host_params_hash ⇒ Object
rubocop:disable Naming/MemoizedInstanceVariableName
48 49 50 |
# File 'app/models/concerns/foreman_remote_execution/host_extensions.rb', line 48 def host_params_hash @cached_rex_host_params_hash ||= extend_host_params_hash(super) end |
#reload(*args) ⇒ Object
104 105 106 107 |
# File 'app/models/concerns/foreman_remote_execution/host_extensions.rb', line 104 def reload(*args) drop_execution_interface_cache super(*args) end |
#remote_execution_proxies(provider, authorized = true) ⇒ Object
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
# File 'app/models/concerns/foreman_remote_execution/host_extensions.rb', line 68 def remote_execution_proxies(provider, = true) proxies = {} proxies[:subnet] = [] proxies[:subnet] += execution_interface.subnet6.remote_execution_proxies.with_features(provider) if execution_interface&.subnet6 proxies[:subnet] += execution_interface.subnet.remote_execution_proxies.with_features(provider) if execution_interface&.subnet proxies[:subnet].uniq! proxies[:fallback] = smart_proxies.with_features(provider) if Setting[:remote_execution_fallback_proxy] if Setting[:remote_execution_global_proxy] proxy_scope = if User.current.present? ::SmartProxy.with_taxonomy_scope_override(location, organization) else ::SmartProxy.unscoped end proxy_scope = proxy_scope. if proxies[:global] = proxy_scope.with_features(provider) end proxies end |
#remote_execution_ssh_keys ⇒ Object
90 91 92 |
# File 'app/models/concerns/foreman_remote_execution/host_extensions.rb', line 90 def remote_execution_ssh_keys remote_execution_proxies('SSH', false).values.flatten.uniq.map { |proxy| proxy.pubkey }.compact.uniq end |
#set_execution_interface(identifier) ⇒ Object
57 58 59 60 61 62 63 64 65 66 |
# File 'app/models/concerns/foreman_remote_execution/host_extensions.rb', line 57 def set_execution_interface(identifier) if interfaces.find_by(identifier: identifier).nil? msg = (N_("Interface with the '%s' identifier was specified as a remote execution interface, however the interface was not found on the host. If the interface exists, it needs to be created in Foreman during the registration.") % identifier) raise ActiveRecord::RecordNotFound, msg end # Only one interface at time can be used for REX, all other must be set to false interfaces.each { |int| int.execution = (int.identifier == identifier) } interfaces.each(&:save!) end |