mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 05:09:38 +02:00
Transaction rules engine V1 (#1900)
* Domain model sketch
* Scaffold out rules domain
* Migrations
* Remove existing data enrichment for clean slate
* Sketch out business logic and basic tests
* Simplify rule scope building and action executions
* Get generator working again
* Basic implementation + tests
* Remove manual merchant management (rules will replace)
* Revert "Remove manual merchant management (rules will replace)"
This reverts commit 83dcbd9ff0
.
* Family and Provider merchants model
* Fix brakeman warnings
* Fix notification loader
* Update notification position
* Add Rule action and condition registries
* Rule form with compound conditions and tests
* Split out notification types, add CTA type
* Rules form builder and Stimulus controller
* Clean up rule registry domain
* Clean up rules stimulus controller
* CTA message for rule when user changes transaction category
* Fix tests
* Lint updates
* Centralize notifications in Notifiable concern
* Implement category rule prompts with auto backoff and option to disable
* Fix layout bug caused by merge conflict
* Initialize rule with correct action for category CTA
* Add rule deletions, get rules working
* Complete dynamic rule form, split Stimulus controllers by resource
* Fix failing tests
* Change test password to avoid chromium conflicts
* Update integration tests
* Centralize all test password references
* Add re-apply rule action
* Rule confirm modal
* Run migrations
* Trigger rule notification after inline category updates
* Clean up rule styles
* Basic attribute locking for rules
* Apply attribute locks on user edits
* Log data enrichments, only apply rules to unlocked attributes
* Fix merge errors
* Additional merge conflict fixes
* Form UI improvements, ignore attribute locks on manual rule application
* Batch AI auto-categorization of transactions
* Auto merchant detection, ai enrichment in batches
* Fix Plaid merchant assignments
* Plaid category matching
* Cleanup 1
* Test cleanup
* Remove stale route
* Fix desktop chat UI issues
* Fix mobile nav styling issues
This commit is contained in:
parent
8edd7ecef0
commit
297a695d0f
152 changed files with 4502 additions and 612 deletions
33
db/migrate/20250416235317_add_rules_engine.rb
Normal file
33
db/migrate/20250416235317_add_rules_engine.rb
Normal file
|
@ -0,0 +1,33 @@
|
|||
class AddRulesEngine < ActiveRecord::Migration[7.2]
|
||||
def change
|
||||
create_table :rules, id: :uuid do |t|
|
||||
t.references :family, null: false, foreign_key: true, type: :uuid
|
||||
|
||||
t.string :resource_type, null: false
|
||||
t.date :effective_date
|
||||
t.boolean :active, null: false, default: false
|
||||
t.timestamps
|
||||
end
|
||||
|
||||
create_table :rule_conditions, id: :uuid do |t|
|
||||
t.references :rule, foreign_key: true, type: :uuid
|
||||
t.references :parent, foreign_key: { to_table: :rule_conditions }, type: :uuid
|
||||
|
||||
t.string :condition_type, null: false
|
||||
t.string :operator, null: false
|
||||
t.string :value
|
||||
t.timestamps
|
||||
end
|
||||
|
||||
create_table :rule_actions, id: :uuid do |t|
|
||||
t.references :rule, null: false, foreign_key: true, type: :uuid
|
||||
|
||||
t.string :action_type, null: false
|
||||
t.string :value
|
||||
t.timestamps
|
||||
end
|
||||
|
||||
add_column :users, :rule_prompts_disabled, :boolean, default: false
|
||||
add_column :users, :rule_prompt_dismissed_at, :datetime
|
||||
end
|
||||
end
|
33
db/migrate/20250416235420_add_data_enrichments.rb
Normal file
33
db/migrate/20250416235420_add_data_enrichments.rb
Normal file
|
@ -0,0 +1,33 @@
|
|||
class AddDataEnrichments < ActiveRecord::Migration[7.2]
|
||||
def change
|
||||
create_table :data_enrichments, id: :uuid do |t|
|
||||
t.references :enrichable, polymorphic: true, null: false, type: :uuid
|
||||
t.string :source
|
||||
t.string :attribute_name
|
||||
t.jsonb :value
|
||||
t.jsonb :metadata
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
|
||||
add_index :data_enrichments, [ :enrichable_id, :enrichable_type, :source, :attribute_name ], unique: true
|
||||
|
||||
# Entries
|
||||
add_column :entries, :locked_attributes, :jsonb, default: {}
|
||||
add_column :transactions, :locked_attributes, :jsonb, default: {}
|
||||
add_column :trades, :locked_attributes, :jsonb, default: {}
|
||||
add_column :valuations, :locked_attributes, :jsonb, default: {}
|
||||
|
||||
# Accounts
|
||||
add_column :accounts, :locked_attributes, :jsonb, default: {}
|
||||
add_column :depositories, :locked_attributes, :jsonb, default: {}
|
||||
add_column :investments, :locked_attributes, :jsonb, default: {}
|
||||
add_column :cryptos, :locked_attributes, :jsonb, default: {}
|
||||
add_column :properties, :locked_attributes, :jsonb, default: {}
|
||||
add_column :vehicles, :locked_attributes, :jsonb, default: {}
|
||||
add_column :other_assets, :locked_attributes, :jsonb, default: {}
|
||||
add_column :credit_cards, :locked_attributes, :jsonb, default: {}
|
||||
add_column :loans, :locked_attributes, :jsonb, default: {}
|
||||
add_column :other_liabilities, :locked_attributes, :jsonb, default: {}
|
||||
end
|
||||
end
|
|
@ -0,0 +1,34 @@
|
|||
class MerchantAndCategoryEnrichment < ActiveRecord::Migration[7.2]
|
||||
def change
|
||||
change_column_null :merchants, :family_id, true
|
||||
change_column_null :merchants, :color, true
|
||||
change_column_default :merchants, :color, from: "#e99537", to: nil
|
||||
remove_column :merchants, :enriched_at, :datetime
|
||||
rename_column :merchants, :icon_url, :logo_url
|
||||
|
||||
add_column :merchants, :website_url, :string
|
||||
add_column :merchants, :type, :string
|
||||
add_index :merchants, :type
|
||||
|
||||
reversible do |dir|
|
||||
dir.up do
|
||||
# All of our existing merchants are family-generated right now
|
||||
Merchant.update_all(type: "FamilyMerchant")
|
||||
end
|
||||
end
|
||||
|
||||
change_column_null :merchants, :type, false
|
||||
|
||||
add_column :merchants, :source, :string
|
||||
add_column :merchants, :provider_merchant_id, :string
|
||||
|
||||
add_index :merchants, [ :family_id, :name ], unique: true, where: "type = 'FamilyMerchant'"
|
||||
add_index :merchants, [ :source, :name ], unique: true, where: "type = 'ProviderMerchant'"
|
||||
|
||||
add_column :transactions, :plaid_category, :string
|
||||
add_column :transactions, :plaid_category_detailed, :string
|
||||
|
||||
remove_column :entries, :enriched_name, :string
|
||||
remove_column :entries, :enriched_at, :datetime
|
||||
end
|
||||
end
|
84
db/schema.rb
generated
84
db/schema.rb
generated
|
@ -10,7 +10,7 @@
|
|||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema[7.2].define(version: 2025_04_13_141446) do
|
||||
ActiveRecord::Schema[7.2].define(version: 2025_04_16_235758) do
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "pgcrypto"
|
||||
enable_extension "plpgsql"
|
||||
|
@ -36,6 +36,7 @@ ActiveRecord::Schema[7.2].define(version: 2025_04_13_141446) do
|
|||
t.boolean "scheduled_for_deletion", default: false
|
||||
t.datetime "last_synced_at"
|
||||
t.decimal "cash_balance", precision: 19, scale: 4, default: "0.0"
|
||||
t.jsonb "locked_attributes", default: {}
|
||||
t.index ["accountable_id", "accountable_type"], name: "index_accounts_on_accountable_id_and_accountable_type"
|
||||
t.index ["accountable_type"], name: "index_accounts_on_accountable_type"
|
||||
t.index ["family_id", "accountable_type"], name: "index_accounts_on_family_id_and_accountable_type"
|
||||
|
@ -156,16 +157,32 @@ ActiveRecord::Schema[7.2].define(version: 2025_04_13_141446) do
|
|||
t.decimal "apr", precision: 10, scale: 2
|
||||
t.date "expiration_date"
|
||||
t.decimal "annual_fee", precision: 10, scale: 2
|
||||
t.jsonb "locked_attributes", default: {}
|
||||
end
|
||||
|
||||
create_table "cryptos", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t|
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.jsonb "locked_attributes", default: {}
|
||||
end
|
||||
|
||||
create_table "data_enrichments", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t|
|
||||
t.string "enrichable_type", null: false
|
||||
t.uuid "enrichable_id", null: false
|
||||
t.string "source"
|
||||
t.string "attribute_name"
|
||||
t.jsonb "value"
|
||||
t.jsonb "metadata"
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.index ["enrichable_id", "enrichable_type", "source", "attribute_name"], name: "idx_on_enrichable_id_enrichable_type_source_attribu_5be5f63e08", unique: true
|
||||
t.index ["enrichable_type", "enrichable_id"], name: "index_data_enrichments_on_enrichable"
|
||||
end
|
||||
|
||||
create_table "depositories", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t|
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.jsonb "locked_attributes", default: {}
|
||||
end
|
||||
|
||||
create_table "entries", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t|
|
||||
|
@ -182,8 +199,7 @@ ActiveRecord::Schema[7.2].define(version: 2025_04_13_141446) do
|
|||
t.text "notes"
|
||||
t.boolean "excluded", default: false
|
||||
t.string "plaid_id"
|
||||
t.datetime "enriched_at"
|
||||
t.string "enriched_name"
|
||||
t.jsonb "locked_attributes", default: {}
|
||||
t.index ["account_id"], name: "index_entries_on_account_id"
|
||||
t.index ["import_id"], name: "index_entries_on_import_id"
|
||||
end
|
||||
|
@ -324,6 +340,7 @@ ActiveRecord::Schema[7.2].define(version: 2025_04_13_141446) do
|
|||
create_table "investments", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t|
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.jsonb "locked_attributes", default: {}
|
||||
end
|
||||
|
||||
create_table "invitations", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t|
|
||||
|
@ -357,17 +374,24 @@ ActiveRecord::Schema[7.2].define(version: 2025_04_13_141446) do
|
|||
t.decimal "interest_rate", precision: 10, scale: 3
|
||||
t.integer "term_months"
|
||||
t.decimal "initial_balance", precision: 19, scale: 4
|
||||
t.jsonb "locked_attributes", default: {}
|
||||
end
|
||||
|
||||
create_table "merchants", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t|
|
||||
t.string "name", null: false
|
||||
t.string "color", default: "#e99537", null: false
|
||||
t.uuid "family_id", null: false
|
||||
t.string "color"
|
||||
t.uuid "family_id"
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.string "icon_url"
|
||||
t.datetime "enriched_at"
|
||||
t.string "logo_url"
|
||||
t.string "website_url"
|
||||
t.string "type", null: false
|
||||
t.string "source"
|
||||
t.string "provider_merchant_id"
|
||||
t.index ["family_id", "name"], name: "index_merchants_on_family_id_and_name", unique: true, where: "((type)::text = 'FamilyMerchant'::text)"
|
||||
t.index ["family_id"], name: "index_merchants_on_family_id"
|
||||
t.index ["source", "name"], name: "index_merchants_on_source_and_name", unique: true, where: "((type)::text = 'ProviderMerchant'::text)"
|
||||
t.index ["type"], name: "index_merchants_on_type"
|
||||
end
|
||||
|
||||
create_table "messages", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t|
|
||||
|
@ -387,11 +411,13 @@ ActiveRecord::Schema[7.2].define(version: 2025_04_13_141446) do
|
|||
create_table "other_assets", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t|
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.jsonb "locked_attributes", default: {}
|
||||
end
|
||||
|
||||
create_table "other_liabilities", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t|
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.jsonb "locked_attributes", default: {}
|
||||
end
|
||||
|
||||
create_table "plaid_accounts", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t|
|
||||
|
@ -435,6 +461,7 @@ ActiveRecord::Schema[7.2].define(version: 2025_04_13_141446) do
|
|||
t.integer "year_built"
|
||||
t.integer "area_value"
|
||||
t.string "area_unit"
|
||||
t.jsonb "locked_attributes", default: {}
|
||||
end
|
||||
|
||||
create_table "rejected_transfers", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t|
|
||||
|
@ -447,6 +474,37 @@ ActiveRecord::Schema[7.2].define(version: 2025_04_13_141446) do
|
|||
t.index ["outflow_transaction_id"], name: "index_rejected_transfers_on_outflow_transaction_id"
|
||||
end
|
||||
|
||||
create_table "rule_actions", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t|
|
||||
t.uuid "rule_id", null: false
|
||||
t.string "action_type", null: false
|
||||
t.string "value"
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.index ["rule_id"], name: "index_rule_actions_on_rule_id"
|
||||
end
|
||||
|
||||
create_table "rule_conditions", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t|
|
||||
t.uuid "rule_id"
|
||||
t.uuid "parent_id"
|
||||
t.string "condition_type", null: false
|
||||
t.string "operator", null: false
|
||||
t.string "value"
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.index ["parent_id"], name: "index_rule_conditions_on_parent_id"
|
||||
t.index ["rule_id"], name: "index_rule_conditions_on_rule_id"
|
||||
end
|
||||
|
||||
create_table "rules", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t|
|
||||
t.uuid "family_id", null: false
|
||||
t.string "resource_type", null: false
|
||||
t.date "effective_date"
|
||||
t.boolean "active", default: false, null: false
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.index ["family_id"], name: "index_rules_on_family_id"
|
||||
end
|
||||
|
||||
create_table "securities", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t|
|
||||
t.string "ticker", null: false
|
||||
t.string "name"
|
||||
|
@ -570,6 +628,7 @@ ActiveRecord::Schema[7.2].define(version: 2025_04_13_141446) do
|
|||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.string "currency"
|
||||
t.jsonb "locked_attributes", default: {}
|
||||
t.index ["security_id"], name: "index_trades_on_security_id"
|
||||
end
|
||||
|
||||
|
@ -578,6 +637,9 @@ ActiveRecord::Schema[7.2].define(version: 2025_04_13_141446) do
|
|||
t.datetime "updated_at", null: false
|
||||
t.uuid "category_id"
|
||||
t.uuid "merchant_id"
|
||||
t.jsonb "locked_attributes", default: {}
|
||||
t.string "plaid_category"
|
||||
t.string "plaid_category_detailed"
|
||||
t.index ["category_id"], name: "index_transactions_on_category_id"
|
||||
t.index ["merchant_id"], name: "index_transactions_on_merchant_id"
|
||||
end
|
||||
|
@ -615,6 +677,8 @@ ActiveRecord::Schema[7.2].define(version: 2025_04_13_141446) do
|
|||
t.boolean "show_ai_sidebar", default: true
|
||||
t.boolean "ai_enabled", default: false, null: false
|
||||
t.string "theme", default: "system"
|
||||
t.boolean "rule_prompts_disabled", default: false
|
||||
t.datetime "rule_prompt_dismissed_at"
|
||||
t.index ["email"], name: "index_users_on_email", unique: true
|
||||
t.index ["family_id"], name: "index_users_on_family_id"
|
||||
t.index ["last_viewed_chat_id"], name: "index_users_on_last_viewed_chat_id"
|
||||
|
@ -624,6 +688,7 @@ ActiveRecord::Schema[7.2].define(version: 2025_04_13_141446) do
|
|||
create_table "valuations", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t|
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.jsonb "locked_attributes", default: {}
|
||||
end
|
||||
|
||||
create_table "vehicles", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t|
|
||||
|
@ -634,6 +699,7 @@ ActiveRecord::Schema[7.2].define(version: 2025_04_13_141446) do
|
|||
t.string "mileage_unit"
|
||||
t.string "make"
|
||||
t.string "model"
|
||||
t.jsonb "locked_attributes", default: {}
|
||||
end
|
||||
|
||||
add_foreign_key "accounts", "families"
|
||||
|
@ -664,6 +730,10 @@ ActiveRecord::Schema[7.2].define(version: 2025_04_13_141446) do
|
|||
add_foreign_key "plaid_items", "families"
|
||||
add_foreign_key "rejected_transfers", "transactions", column: "inflow_transaction_id"
|
||||
add_foreign_key "rejected_transfers", "transactions", column: "outflow_transaction_id"
|
||||
add_foreign_key "rule_actions", "rules"
|
||||
add_foreign_key "rule_conditions", "rule_conditions", column: "parent_id"
|
||||
add_foreign_key "rule_conditions", "rules"
|
||||
add_foreign_key "rules", "families"
|
||||
add_foreign_key "security_prices", "securities"
|
||||
add_foreign_key "sessions", "impersonation_sessions", column: "active_impersonator_session_id"
|
||||
add_foreign_key "sessions", "users"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue