Files
sure/app/models/subscription.rb
Juan José Mata 4e425ce4e5 Add option for FOSS contribution payments (#730)
* First commit

* Use subscription flow for monetary contributions

* Removed only part of the SPAN

* Localize Stripe payments message

* More localization of contribution strings

* Missed two billing to payment changes

* Fix tests

* Localization of "Open Demo" strings

* Fix grammar error

* Update for consistency

* Localize CTA

* More localilzation strings
2026-01-21 20:45:04 +01:00

39 lines
842 B
Ruby

class Subscription < ApplicationRecord
TRIAL_DAYS = 45
belongs_to :family
# https://docs.stripe.com/api/subscriptions/object
enum :status, {
incomplete: "incomplete",
incomplete_expired: "incomplete_expired",
trialing: "trialing", # We use this, but "offline" (no through Stripe's interface)
active: "active",
past_due: "past_due",
canceled: "canceled",
unpaid: "unpaid",
paused: "paused"
}
validates :stripe_id, presence: true, if: :active?
validates :trial_ends_at, presence: true, if: :trialing?
validates :family_id, uniqueness: true
class << self
def new_trial_ends_at
TRIAL_DAYS.days.from_now
end
end
def name
case interval
when "month"
"Monthly Contribution"
when "year"
"Annual Contribution"
else
"Open demo"
end
end
end