2019-07-30 21:29:24 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-06-12 20:03:43 +00:00
|
|
|
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
|
|
|
|
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
|
2019-02-01 19:40:24 +00:00
|
|
|
class BankAccount < ApplicationRecord
|
2019-07-30 21:29:24 +00:00
|
|
|
# :name, # str (readable bank name identifier, eg. "Wells Fargo *1234")
|
|
|
|
# :confirmation_token, # str (randomly generated private token for email confirmation)
|
|
|
|
# :account_number, # str (last digits only)
|
|
|
|
# :bank_name, # str
|
|
|
|
# :pending_verification, # bool (whether this bank account is still awaiting email confirmation)
|
|
|
|
# :status, # str
|
|
|
|
# :email, # str (contact email associated with the user who created this bank account)
|
|
|
|
# :deleted, # bool (soft delete flag)
|
|
|
|
# :stripe_bank_account_token, # str
|
|
|
|
# :stripe_bank_account_id, # str
|
|
|
|
# :nonprofit_id, :nonprofit
|
2019-08-06 12:23:53 +00:00
|
|
|
validates :stripe_bank_account_token, presence: true, uniqueness: true
|
|
|
|
validates :stripe_bank_account_id, presence: true, uniqueness: true
|
|
|
|
validates :nonprofit, presence: true
|
|
|
|
validates :email, presence: true, format: {with: Email::Regex}
|
|
|
|
validate :nonprofit_must_be_vetted, on: :create
|
|
|
|
validate :nonprofit_has_stripe_account
|
2019-07-30 21:29:24 +00:00
|
|
|
|
|
|
|
has_many :payouts
|
|
|
|
belongs_to :nonprofit
|
|
|
|
|
|
|
|
def nonprofit_must_be_vetted
|
|
|
|
errors.add(:nonprofit, 'must be vetted') unless nonprofit&.vetted
|
|
|
|
end
|
|
|
|
|
|
|
|
def nonprofit_has_stripe_account
|
|
|
|
errors.add(:nonprofit, 'must have a Stripe account id') if !nonprofit || nonprofit.stripe_account_id.blank?
|
|
|
|
end
|
|
|
|
|
|
|
|
# Manually cause an instance to become invalid
|
|
|
|
def invalidate!
|
|
|
|
@not_valid = true
|
|
|
|
end
|
2018-03-25 17:30:42 +00:00
|
|
|
end
|