-
-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP Add task to migration subscription to new prices
- Loading branch information
Showing
1 changed file
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
namespace :subscriptions do | ||
desc 'Migrate Stripe subscription to new price' | ||
task migrate_price: :environment do | ||
old_price, new_price = *load_prices | ||
|
||
scope = Stripe::Subscription.list(price: old_price.id) | ||
count = scope.data.size | ||
|
||
scope.auto_paging_each.with_index do |subscription, index| | ||
item = subscription.items.first | ||
Stripe::Subscription.update( | ||
subscription.id, | ||
items: [{ id: item.id, price: new_price.id }], | ||
proration_behavior: 'none' | ||
) | ||
|
||
erase_line | ||
print "Migrated subscriptions #{index + 1}/#{count}" | ||
end | ||
|
||
erase_line | ||
puts "Migrating all subscriptions completed." | ||
end | ||
|
||
def load_prices | ||
old_price = AlaveteliPro::Price.retrieve(ENV['OLD_PRICE']) if ENV['OLD_PRICE'] | ||
Check warning on line 26 in lib/tasks/subscriptions.rake GitHub Actions / build
Check warning on line 26 in lib/tasks/subscriptions.rake GitHub Actions / build
|
||
new_price = AlaveteliPro::Price.retrieve(ENV['NEW_PRICE']) if ENV['NEW_PRICE'] | ||
Check warning on line 27 in lib/tasks/subscriptions.rake GitHub Actions / build
Check warning on line 27 in lib/tasks/subscriptions.rake GitHub Actions / build
|
||
|
||
if !old_price | ||
puts "ERROR: Can't find OLD_PRICE" | ||
exit 1 | ||
elsif !new_price | ||
puts "ERROR: Can't find NEW_PRICE" | ||
exit 1 | ||
elsif old_price.recurring != new_price.recurring | ||
puts "ERROR: Price interval and interval_count need to match" | ||
exit 1 | ||
end | ||
|
||
[old_price, new_price] | ||
end | ||
|
||
def erase_line | ||
# https://en.wikipedia.org/wiki/ANSI_escape_code#Escape_sequences | ||
print "\e[1G\e[K" | ||
end | ||
end |