Sha256: bd88a81798a4cef95829c2699c5129994c233d9fb7953974070d6d42b6f38df2

Contents?: true

Size: 1.69 KB

Versions: 7

Compression:

Stored size: 1.69 KB

Contents

# frozen_string_literal: true

module ActionPolicy
  module Ext
    # Adds #_policy_cache_key method to Object,
    # which just call #policy_cache_key or #cache_key
    # or #object_id (if `use_object_id` parameter is set to true).
    #
    # For other core classes returns string representation.
    #
    # Raises ArgumentError otherwise.
    module PolicyCacheKey # :nodoc: all
      module ObjectExt
        def _policy_cache_key(use_object_id: false)
          return policy_cache_key if respond_to?(:policy_cache_key)
          return cache_key_with_version if respond_to?(:cache_key_with_version)
          return cache_key if respond_to?(:cache_key)

          return object_id.to_s if use_object_id == true

          raise ArgumentError, "object is not cacheable"
        end
      end

      refine Object do
        ::RubyNext::Core.import_methods(ObjectExt, binding)
      end

      refine NilClass do
        def _policy_cache_key(*) = ""
      end

      refine TrueClass do
        def _policy_cache_key(*) = "t"
      end

      refine FalseClass do
        def _policy_cache_key(*) = "f"
      end

      refine String do
        def _policy_cache_key(*) = self
      end

      refine Symbol do
        def _policy_cache_key(*) = to_s
      end

      if RUBY_PLATFORM.match?(/java/i)
        refine Integer do
          def _policy_cache_key(*) = to_s
        end

        refine Float do
          def _policy_cache_key(*) = to_s
        end
      else
        refine Numeric do
          def _policy_cache_key(*) = to_s
        end
      end

      refine Time do
        def _policy_cache_key(*) = to_s
      end

      refine Module do
        def _policy_cache_key(*) = name
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
action_policy-0.6.7 lib/.rbnext/3.1/action_policy/ext/policy_cache_key.rb
action_policy-0.6.6 lib/.rbnext/3.1/action_policy/ext/policy_cache_key.rb
action_policy-0.6.5 lib/.rbnext/3.1/action_policy/ext/policy_cache_key.rb
action_policy-0.6.4 lib/.rbnext/3.1/action_policy/ext/policy_cache_key.rb
action_policy-0.6.3 lib/.rbnext/3.1/action_policy/ext/policy_cache_key.rb
action_policy-0.6.2 lib/.rbnext/3.1/action_policy/ext/policy_cache_key.rb
action_policy-0.6.1 lib/.rbnext/3.1/action_policy/ext/policy_cache_key.rb