class method self.pack_uuid_namespace

Ruby on Rails 7.0.10

Since v7.0.10 Private

Available in: v7.0.10 v7.1.6 v7.2.3 v8.0.4 v8.1.2

Signature

self.pack_uuid_namespace(namespace)

No documentation comment.

Parameters

namespace req
Source
# File activesupport/lib/active_support/core_ext/digest/uuid.rb, line 58
    def self.pack_uuid_namespace(namespace)
      if [DNS_NAMESPACE, OID_NAMESPACE, URL_NAMESPACE, X500_NAMESPACE].include?(namespace)
        namespace
      elsif use_rfc4122_namespaced_uuids == true
        match_data = namespace.match(/\A(\h{8})-(\h{4})-(\h{4})-(\h{4})-(\h{4})(\h{8})\z/)

        raise ArgumentError, "Only UUIDs are valid namespace identifiers" unless match_data.present?

        match_data.captures.map { |s| s.to_i(16) }.pack("NnnnnN")
      else
        ActiveSupport::Deprecation.warn <<~WARNING.squish
          Providing a namespace ID that is not one of the constants defined on Digest::UUID generates an incorrect UUID value according to RFC 4122.
          To enable the correct behavior, set the Rails.application.config.active_support.use_rfc4122_namespaced_uuids configuration option to true.
        WARNING

        namespace
      end
    end

Defined in activesupport/lib/active_support/core_ext/digest/uuid.rb line 58 · View on GitHub · Improve this page · Find usages on GitHub

Defined in Digest::UUID

Type at least 2 characters to search.

↑↓ navigate · open · esc close