30 lines
673 B
Ruby
30 lines
673 B
Ruby
|
|
module DiscourseDonations
|
|
class Stripe
|
|
def initialize(secret_key, opts)
|
|
::Stripe.api_key = secret_key
|
|
@description = opts[:description]
|
|
@currency = opts[:currency]
|
|
end
|
|
|
|
def charge(email, opts)
|
|
customer = ::Stripe::Customer.create(
|
|
email: email,
|
|
source: opts[:stripeToken]
|
|
)
|
|
@charge = ::Stripe::Charge.create(
|
|
customer: customer.id,
|
|
amount: opts[:amount],
|
|
description: @description,
|
|
currency: @currency
|
|
)
|
|
@charge[:message] = @charge[:outcome][:seller_message] if @charge[:outcome]
|
|
@charge
|
|
end
|
|
|
|
def successful?
|
|
@charge[:paid]
|
|
end
|
|
end
|
|
end
|