Sha256: d92d59fab81e77b85d057628a2dc31f0f6f85a9e495e4ebdb0ff61d0b16bd88b

Contents?: true

Size: 1.31 KB

Versions: 3

Compression:

Stored size: 1.31 KB

Contents

module WashoutBuilder
  class EnvChecker

    attr_reader :whitelist, :blacklist
    attr_writer :whitelist, :blacklist

    def initialize(app)
      self.whitelist = get_valid_data(app.config.washout_builder[:whitelisted_envs])
      self.blacklist = get_valid_data(app.config.washout_builder[:blacklisted_envs])
    end

    def available_for_env?(env_name)
      if (whitelist.present? || blacklist.present?)
        if whitelist.find{|a| blacklist.include?(a) }.blank?
          if whitelist.include?('*') || (!valid_for_env?(blacklist, env_name) && valid_for_env?(whitelist, env_name))
            return true
          end
        end
      else
        return true
      end
      return false
    end


    private

    def valid_for_env?(list, env_name)
      try_find_suitable_env(list, env_name).present?
    end

    def get_valid_data(list)
      list.is_a?(Array) ? list : [list].compact
    end

    def try_find_suitable_env(list, env_name)
      return if list.blank?
      # The keys of the map can be strings or regular expressions that are
      # matched against the env name and returns the found value
      list.find do |env_pattern|
        if env_pattern.is_a? Regexp
          env_pattern.match env_name
        elsif env_pattern.is_a? String
          env_pattern == env_name
        end
      end
    end

  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
washout_builder-1.5.4 lib/washout_builder/env_checker.rb
washout_builder-1.5.3 lib/washout_builder/env_checker.rb
washout_builder-1.5.1 lib/washout_builder/env_checker.rb