mirror of
https://github.com/we-promise/sure.git
synced 2026-04-09 23:34:50 +00:00
* Initial plan * Fix: Only apply active rules during sync Co-authored-by: jjmata <187772+jjmata@users.noreply.github.com> * FIX test --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: jjmata <187772+jjmata@users.noreply.github.com> Co-authored-by: sokie <sokysrm@gmail.com>
32 lines
856 B
Ruby
32 lines
856 B
Ruby
class Family::Syncer
|
|
attr_reader :family
|
|
|
|
def initialize(family)
|
|
@family = family
|
|
end
|
|
|
|
def perform_sync(sync)
|
|
# We don't rely on this value to guard the app, but keep it eventually consistent
|
|
family.sync_trial_status!
|
|
|
|
Rails.logger.info("Applying rules for family #{family.id}")
|
|
family.rules.where(active: true).each do |rule|
|
|
rule.apply_later
|
|
end
|
|
|
|
# Schedule child syncs
|
|
child_syncables.each do |syncable|
|
|
syncable.sync_later(parent_sync: sync, window_start_date: sync.window_start_date, window_end_date: sync.window_end_date)
|
|
end
|
|
end
|
|
|
|
def perform_post_sync
|
|
family.auto_match_transfers!
|
|
end
|
|
|
|
private
|
|
def child_syncables
|
|
family.plaid_items + family.simplefin_items.active + family.lunchflow_items.active + family.enable_banking_items.active + family.accounts.manual
|
|
end
|
|
end
|