Module: Upkeep::Dependencies
- Defined in:
- lib/upkeep/dependencies.rb
Defined Under Namespace
Classes: ActiveRecordAttribute, ActiveRecordCollection, ActiveRecordQuery, Base, CookieValue, CurrentAttribute, Identity, RequestValue, Restored, SessionValue, Unknown, WardenUser
Class Method Summary
collapse
Class Method Details
.canonical_identity(value) ⇒ Object
473
474
475
476
477
478
479
480
|
# File 'lib/upkeep/dependencies.rb', line 473
def canonical_identity(value)
case value
when nil, true, false, Numeric, String, Symbol
value
else
model_identity(value) || private_fingerprint(value)
end
end
|
.from_h(snapshot) ⇒ Object
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
|
# File 'lib/upkeep/dependencies.rb', line 412
def from_h(snapshot)
snapshot = symbolize_keys(snapshot)
source = snapshot.fetch(:source)
key = symbolize_keys(snapshot.fetch(:key))
metadata = symbolize_keys(snapshot.fetch(:metadata))
case source.to_sym
when :active_record_attribute
ActiveRecordAttribute.new(
table: key.fetch(:table),
id: key.fetch(:id),
attribute: key.fetch(:attribute),
model: metadata[:model]
)
when :active_record_collection, :active_record_query
dependency_class = source.to_sym == :active_record_query ? ActiveRecordQuery : ActiveRecordCollection
dependency_class.new(
primary_table: metadata.fetch(:primary_table),
table_columns: metadata.fetch(:table_columns),
coverage: metadata.fetch(:coverage),
sql: metadata.fetch(:sql),
predicates: metadata.fetch(:predicates)
)
else
if snapshot.fetch(:visibility).to_sym == :identity_bound
Identity.new(
source: source,
key: key.fetch(:key),
value: key.fetch(:value),
metadata: metadata
)
else
Restored.new(
source: source,
key: key,
metadata: metadata,
visibility: snapshot.fetch(:visibility),
precision: snapshot.fetch(:precision)
)
end
end
end
|
.identity_absent_for?(dependency, name) ⇒ Boolean
491
492
493
494
495
496
497
|
# File 'lib/upkeep/dependencies.rb', line 491
def identity_absent_for?(dependency, name)
absent_by_name = metadata_value(dependency, :identity_absent_by_name) || {}
absent_by_name = absent_by_name.transform_keys(&:to_s) if absent_by_name.respond_to?(:transform_keys)
return absent_by_name.fetch(name.to_s) if absent_by_name.key?(name.to_s)
!partitioning_identity?(dependency)
end
|
503
504
505
506
507
508
509
510
511
|
# File 'lib/upkeep/dependencies.rb', line 503
def metadata_value(dependency, key)
return unless dependency.respond_to?(:metadata)
if dependency.metadata.key?(key)
dependency.metadata.fetch(key)
elsif dependency.metadata.key?(key.to_s)
dependency.metadata.fetch(key.to_s)
end
end
|
.model_identity(value) ⇒ Object
455
456
457
458
459
460
461
|
# File 'lib/upkeep/dependencies.rb', line 455
def model_identity(value)
return nil unless value
if value.respond_to?(:id) && value.class.respond_to?(:name)
{ model: value.class.name, id: value.id }
end
end
|
463
464
465
466
467
468
469
470
471
|
# File 'lib/upkeep/dependencies.rb', line 463
def model_metadata(value)
return {} unless value
{
model: value.class.name,
table: value.class.respond_to?(:table_name) ? value.class.table_name : nil,
id: value.respond_to?(:id) ? value.id : nil
}.compact
end
|
.nil_identity?(dependency) ⇒ Boolean
499
500
501
|
# File 'lib/upkeep/dependencies.rb', line 499
def nil_identity?(dependency)
dependency.respond_to?(:nil_identity?) && dependency.nil_identity?
end
|
.partitioning_identity?(dependency) ⇒ Boolean
482
483
484
485
486
487
488
489
|
# File 'lib/upkeep/dependencies.rb', line 482
def partitioning_identity?(dependency)
return false unless dependency.identity?
flag = metadata_value(dependency, :partitioning_identity)
return flag if [true, false].include?(flag)
!nil_identity?(dependency)
end
|
.private_fingerprint(value) ⇒ Object
513
514
515
|
# File 'lib/upkeep/dependencies.rb', line 513
def private_fingerprint(value)
Digest::SHA256.hexdigest(JSON.generate(private_fingerprint_payload(value)))[0, 16]
end
|
.private_fingerprint_payload(value) ⇒ Object
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
|
# File 'lib/upkeep/dependencies.rb', line 517
def private_fingerprint_payload(value)
case value
when nil, true, false, Numeric, String
[value.class.name, value]
when Symbol
["Symbol", value.to_s]
when Array
["Array", value.map { |item| private_fingerprint_payload(item) }]
when Hash
entries = value.keys.sort_by { |key| JSON.generate(private_fingerprint_payload(key)) }.map do |key|
[private_fingerprint_payload(key), private_fingerprint_payload(value.fetch(key))]
end
["Hash", entries]
else
identity = model_identity(value)
identity ? ["Model", identity] : ["Object", value.class.name, value.inspect]
end
end
|
.symbolize_keys(value) ⇒ Object
536
537
538
539
540
541
542
543
544
545
546
547
548
|
# File 'lib/upkeep/dependencies.rb', line 536
def symbolize_keys(value)
case value
when Hash
value.each_with_object({}) do |(key, nested_value), result|
normalized_key = key.respond_to?(:to_sym) ? key.to_sym : key
result[normalized_key] = symbolize_keys(nested_value)
end
when Array
value.map { |nested_value| symbolize_keys(nested_value) }
else
value
end
end
|