houdini/lib/stripe_account.rb
2020-06-15 10:26:57 -05:00

53 lines
1.7 KiB
Ruby

# frozen_string_literal: true
# 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
module StripeAccount
# Returns the stripe account ID string
def self.find_or_create(nonprofit_id)
ParamValidation.new({ nonprofit_id: nonprofit_id }, nonprofit_id: { required: true, is_integer: true })
begin
np = Nonprofit.find(nonprofit_id)
rescue StandardError => e
raise ParamValidation::ValidationError.new("#{nonprofit_id} is not a valid nonprofit", key: :nonprofit_id)
end
if !np['stripe_account_id']
return create(np)
else
return np['stripe_account_id']
end
end
# np should be a hash with string keys
def self.create(np)
ParamValidation.new({ np: np }, np: { required: true, is_a: Nonprofit })
params = {
managed: true,
email: np['email'].present? ? np['email'] : np.roles.nonprofit_admins.order('created_at ASC').first.user.email,
business_name: np['name'],
legal_entity: {
type: 'company',
address: {
city: np['city'],
state: np['state_code'],
postal_code: np['zip_code'],
country: 'US'
},
business_name: np['name']
},
product_description: 'Nonprofit donations',
transfer_schedule: { interval: 'manual' }
}
if np['website'] && np['website'] =~ URI::DEFAULT_PARSER.make_regexp
params[:business_url] = np['website']
end
acct = Stripe::Account.create(params)
Qx.update(:nonprofits).set(stripe_account_id: acct.id).where(id: np['id']).execute
StripeAccountCreateJob.perform_later(Nonprofit.find(np['id']))
acct.id
end
end