1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/lib/tasks/fablab/stripe.rake
2021-06-21 10:45:13 +02:00

94 lines
3.6 KiB
Ruby

# frozen_string_literal: true
# Stripe relative tasks
namespace :fablab do
namespace :stripe do
desc 'find any invoices with incoherent total between stripe and DB'
task :find_incoherent_invoices, [:start_date] => :environment do |_task, args|
puts 'DEPRECATION WARNING: Will not work for invoices created from version 4.1.0 and above'
date = Date.parse('2017-05-01')
if args.start_date
begin
date = Date.parse(args.start_date)
rescue ArgumentError => e
raise e
end
end
Invoice.where('created_at > ? AND stp_invoice_id IS NOT NULL', date).each do |invoice|
stp_invoice = Stripe::Invoice.retrieve(invoice.stp_invoice_id, api_key: Setting.get('stripe_secret_key'))
next if invoice.amount_paid == stp_invoice.total
puts "Id: #{invoice.id}, reference: #{invoice.reference}, stripe id: #{stp_invoice.id}, " \
"invoice total: #{invoice.amount_paid / 100.0}, stripe invoice total: #{stp_invoice.total / 100.0}, " \
"date: #{invoice.created_at}"
end
end
desc 'sync all objects to the stripe API'
task sync_objects: :environment do
puts 'We create all non-existing objects on stripe. This may take a while, please wait...'
SyncObjectsOnStripeWorker.new.perform
puts 'Done'
end
desc 'sync coupons to the stripe database'
task sync_coupons: :environment do
puts 'We create all non-existing coupons on stripe. This may take a while, please wait...'
Coupon.all.each do |c|
Stripe::Coupon.retrieve(c.code, api_key: Setting.get('stripe_secret_key'))
rescue Stripe::InvalidRequestError
Stripe::Service.new.create_coupon(c.id)
end
puts 'Done'
end
desc 'set stp_product_id to all plans/machines/trainings/spaces'
task set_product_id: :environment do
w = StripeWorker.new
Plan.all.each do |p|
w.perform(:create_or_update_stp_product, Plan.name, p.id)
end
Machine.all.each do |m|
w.perform(:create_or_update_stp_product, Machine.name, m.id)
end
Training.all.each do |t|
w.perform(:create_or_update_stp_product, Training.name, t.id)
end
Space.all.each do |s|
w.perform(:create_or_update_stp_product, Space.name, s.id)
end
end
desc 'set stripe as the default payment gateway'
task set_gateway: :environment do
if Setting.find_by(name: 'stripe_public_key').try(:value) && Setting.find_by(name: 'stripe_secret_key').try(:value)
Setting.set('payment_gateway', 'stripe') unless Setting.find_by(name: 'payment_gateway').try(:value)
end
end
# in test, we may reach a point when the maximum number of payment methods attachable to a customer is reached.
# Use this task to reset them all and be able to run the test suite again.
desc 'remove cards payment methods from all customers'
task reset_cards: :environment do
unless Rails.env.test?
print "You're about to detach all payment cards from all customers. This was only made for test mode. Are you sure? (y/n) "
confirm = STDIN.gets.chomp
next unless confirm == 'y'
end
User.all.each do |user|
stp_customer = user.payment_gateway_object.gateway_object.retrieve
cards = Stripe::PaymentMethod.list({ customer: stp_customer, type: 'card' }, { api_key: Setting.get('stripe_secret_key') })
cards.each do |card|
pm = Stripe::PaymentMethod.retrieve(card.id, api_key: Setting.get('stripe_secret_key'))
pm.detach
end
end
end
def print_on_line(str)
print "#{str}\r"
$stdout.flush
end
end
end