Module: Familia::Features::ExternalIdentifier::ModelInstanceMethods
- Defined in:
- lib/familia/features/external_identifier.rb
Overview
Instance methods for external identifier management
Instance Method Summary collapse
-
#save(update_expiration: true) ⇒ Boolean
Override save to update extid_lookup mapping.
-
#save_if_not_exists(update_expiration: true) ⇒ Boolean
Override save_if_not_exists to update extid_lookup mapping.
Instance Method Details
#save(update_expiration: true) ⇒ Boolean
Override save to update extid_lookup mapping
This ensures the extid_lookup index is populated during save operations rather than during object initialization, preventing unwanted database writes when calling .new()
255 256 257 258 259 260 261 262 263 264 265 266 267 |
# File 'lib/familia/features/external_identifier.rb', line 255 def save(update_expiration: true) result = super # Update extid_lookup mapping after successful save if result && respond_to?(:extid) && respond_to?(:identifier) current_extid = extid # Triggers lazy generation if needed if current_extid && identifier self.class.extid_lookup[current_extid] = identifier end end result end |
#save_if_not_exists(update_expiration: true) ⇒ Boolean
Override save_if_not_exists to update extid_lookup mapping
This ensures the extid_lookup index is populated during create operations which use save_if_not_exists instead of save.
277 278 279 280 281 282 283 284 285 286 287 288 289 |
# File 'lib/familia/features/external_identifier.rb', line 277 def save_if_not_exists(update_expiration: true) result = super # Update extid_lookup mapping after successful save if result && respond_to?(:extid) && respond_to?(:identifier) current_extid = extid # Triggers lazy generation if needed if current_extid && identifier self.class.extid_lookup[current_extid] = identifier end end result end |