Sha256: 1dc26a20820f317c1c2ad3f3592454fb56da3c2c6dc9e5a09670b2ae8d45265c
Contents?: true
Size: 1.99 KB
Versions: 4
Compression:
Stored size: 1.99 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, -> { order('hostgroup_ansible_roles.position ASC') }, :foreign_key => :hostgroup_id has_many :ansible_roles, -> { order('hostgroup_ansible_roles.position ASC') }, :through => :hostgroup_ansible_roles, :dependent => :destroy accepts_nested_attributes_for :hostgroup_ansible_roles, :allow_destroy => true 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.includes(:host_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 (inherited_ansible_roles + 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
4 entries across 4 versions & 1 rubygems