Sha256: f43938525b740da06684cbee63d9ac07d7d64753c8a42c4dbad76309c4ca90a1

Contents?: true

Size: 1.7 KB

Versions: 14

Compression:

Stored size: 1.7 KB

Contents

# frozen_string_literal: true

module Awspec::Type
  class AlbListener < ResourceBase
    def resource_via_client
      @resource_via_client ||= find_alb_listener(@display_name)
    end

    def id
      @id ||= resource_via_client.listener_arn if resource_via_client
    end

    def has_rule?(rule_id = nil, priority = nil, conditions = nil, actions = nil)
      rules = select_rule_by_alb_listener_id(id)
      ret = rules.select do |rule|
        conditions = [conditions] if conditions.is_a?(Hash)
        actions = [actions] if actions.is_a?(Hash)
        next false if !rule_id.nil? && rule.rule_arn != rule_id
        next false if !priority.nil? && rule.priority != priority

        unless conditions.nil?
          next false unless conditions.map do |condition|
            rule_conds = rule.conditions.select { |rule_cond| rule_cond[:field] == condition[:field] }
            next if rule_conds.empty?
            next unless rule_conds.reject { |rule_cond| condition[:values] == rule_cond[:values] }.empty?

            condition
          end.compact.size == conditions.size
        end
        unless actions.nil?
          actions = actions.map do |action|
            if action.key?(:target_group_name)
              target_group = find_alb_target_group(action[:target_group_name])
              action[:target_group_arn] = target_group.target_group_arn
              action.delete(:target_group_name)
            end
            action
          end
          next false if rule.actions.map(&:to_h).sort_by(&:to_s) != actions.sort_by(&:to_s)
        end
        true
      end
      ret.single_resource("rule_id = #{rule_id}, priority = #{priority}, \
conditions = #{conditions}, actions = #{actions}")
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
awspec-1.32.0 lib/awspec/type/alb_listener.rb
awspec-1.31.0 lib/awspec/type/alb_listener.rb
awspec-1.30.0 lib/awspec/type/alb_listener.rb
awspec-1.29.3 lib/awspec/type/alb_listener.rb
awspec-1.29.2 lib/awspec/type/alb_listener.rb
awspec-1.29.1 lib/awspec/type/alb_listener.rb
awspec-1.29.0 lib/awspec/type/alb_listener.rb
awspec-1.28.2 lib/awspec/type/alb_listener.rb
awspec-1.28.1 lib/awspec/type/alb_listener.rb
awspec-1.28.0 lib/awspec/type/alb_listener.rb
awspec-1.27.1 lib/awspec/type/alb_listener.rb
awspec-1.27.0 lib/awspec/type/alb_listener.rb
awspec-1.26.0 lib/awspec/type/alb_listener.rb
awspec-1.25.2 lib/awspec/type/alb_listener.rb