Sha256: d82b962b05e01a19c278a02e95c7ee5cc3fa49bed2d6065c620ca8a496a52690
Contents?: true
Size: 1.49 KB
Versions: 4
Compression:
Stored size: 1.49 KB
Contents
# frozen_string_literal: true require "paper_trail/attribute_serializers/cast_attribute_serializer" module PaperTrail module AttributeSerializers # Serialize or deserialize the `version.object` column. class ObjectAttribute def initialize(model_class) @model_class = model_class # ActiveRecord since 7.0 has a built-in encryption mechanism @encrypted_attributes = if PaperTrail.active_record_gte_7_0? @model_class.encrypted_attributes&.map(&:to_s) end end def serialize(attributes) alter(attributes, :serialize) end def deserialize(attributes) alter(attributes, :deserialize) end private # Modifies `attributes` in place. # TODO: Return a new hash instead. def alter(attributes, serialization_method) # Don't serialize non-encrypted before values before inserting into columns of type # `JSON` on `PostgreSQL` databases. attributes_to_serialize = object_col_is_json? ? attributes.slice(*@encrypted_attributes) : attributes return attributes if attributes_to_serialize.blank? serializer = CastAttributeSerializer.new(@model_class) attributes_to_serialize.each do |key, value| attributes[key] = serializer.send(serialization_method, key, value) end attributes end def object_col_is_json? @model_class.paper_trail.version_class.object_col_is_json? end end end end
Version data entries
4 entries across 4 versions & 1 rubygems