Sha256: 1303096ca3dad6d8327576ba7f996df70886ba1efb74c1144021a16676c1b626
Contents?: true
Size: 1.79 KB
Versions: 3
Compression:
Stored size: 1.79 KB
Contents
# frozen_string_literal: true module ForemanAnsible # Relations to make Hostgroup 'have' ansible roles module HostgroupExtensions extend ActiveSupport::Concern included do has_many :hostgroup_ansible_roles, :foreign_key => :hostgroup_id has_many :ansible_roles, :through => :hostgroup_ansible_roles, :dependent => :destroy audit_associations :ansible_roles def inherited_ansible_roles ancestors.reduce([]) do |roles, hostgroup| roles + hostgroup.ansible_roles end.uniq end def inherited_and_own_ansible_roles path.reduce([]) do |roles, hostgroup| roles + hostgroup.ansible_roles end.uniq end def host_ansible_roles hosts.all.includes(:ansible_roles).flat_map(&:ansible_roles) end # includes also roles of all assigned hosts, useful to determine if # at least one host in this hostgroup has some ansible role assigned # either directly or through hostgroup def all_ansible_roles (ansible_roles + inherited_ansible_roles + host_ansible_roles).uniq end end end end class Hostgroup apipie :class do property :all_ansible_roles, array_of: 'AnsibleRole', desc: 'Returns all ansible roles assigned to the host group, both its own and inherited from parent host groups' property :ansible_roles, array_of: 'AnsibleRole', desc: 'Returns ansible roles directly assigned to the host group' property :inherited_ansible_roles, array_of: 'AnsibleRole', desc: 'Returns only the inherited ansible roles assigned to the host group\'s parents' end # Methods to be allowed in any template with safemode enabled class Jail < Safemode::Jail allow :all_ansible_roles, :ansible_roles, :inherited_ansible_roles end end
Version data entries
3 entries across 3 versions & 1 rubygems