12
13
14
15
16
17
18
19
|
# File 'app/models/redhat_access/concerns/host_managed_extensions.rb', line 12
def search_by_plan_id(key, operator, value)
insights_plan_runner = ForemanAnsible::InsightsPlanRunner.new(Organization.current, value.to_i)
hostname_rules_relation = insights_plan_runner.hostname_rules(insights_plan_runner.playbook)
hostnames = hostname_rules_relation.keys.map{|h| h.downcase}
hostnames.map! { |hname| hname.split('.').first } if Setting[:use_shortname_for_vms]
conditions = hostnames.empty? ? ' 0 = 1' : sanitize_sql_array([' hosts.name IN (?)', hostnames])
{ :conditions => conditions }
end
|