/api/user/subscriptions/payment-method (GET)
await global.api.user.subscriptions.PaymentMethod.get(req) Located in Stripe Subscriptions module API
Returns object
Exceptions
These exceptions are thrown (NodeJS) or returned as JSON (HTTP) if you provide incorrect data or do not meet the requirements:
Exception | Circumstances |
---|---|
invalid querystring paymentmethodid | |
invalid-paymentmethodid | missing querystring paymentmethodid |
invalid-account | ineligible accessing account |
NodeJS source (edit on github)
If you see a problem with the source submit a pull request on Github.
const subscriptions = require('../../../../../index.js')
const stripeCache = require('../../../../stripe-cache.js')
module.exports = {
get: async (req) => {
if (!req.query || !req.query.paymentmethodid) {
throw new Error('invalid-paymentmethodid')
}
const exists = await subscriptions.StorageList.exists(`${req.appid}/paymentMethods`, req.query.paymentmethodid)
if (!exists) {
throw new Error('invalid-paymentmethodid')
}
const owned = await subscriptions.StorageList.exists(`${req.appid}/account/paymentMethods/${req.account.accountid}`, req.query.paymentmethodid)
if (!owned) {
throw new Error('invalid-account')
}
let paymentMethod
try {
paymentMethod = await stripeCache.retrieve(req.query.paymentmethodid, 'paymentMethods', req.stripeKey)
} catch (error) {
}
if (!paymentMethod) {
throw new Error('invalid-paymentmethodid')
}
return paymentMethod
}
}
Test source (edit on github)
Tests perform real HTTP requests against a running Dashboard server.
/* eslint-env mocha */
const assert = require('assert')
const TestHelper = require('../../../../../test-helper.js')
const TestStripeAccounts = require('../../../../../test-stripe-accounts.js')
describe('/api/user/subscriptions/payment-method', () => {
describe('exceptions', () => {
describe('invalid-paymentmethodid', () => {
it('missing querystring paymentmethodid', async () => {
const user = await TestHelper.createUser()
const req = TestHelper.createRequest('/api/user/subscriptions/payment-method')
req.account = user.account
req.session = user.session
let errorMessage
try {
await req.get()
} catch (error) {
errorMessage = error.message
}
assert.strictEqual(errorMessage, 'invalid-paymentmethodid')
})
it('invalid querystring paymentmethodid', async () => {
const user = await TestHelper.createUser()
const req = TestHelper.createRequest('/api/user/subscriptions/payment-method?paymentmethodid=invalid')
req.account = user.account
req.session = user.session
let errorMessage
try {
await req.get()
} catch (error) {
errorMessage = error.message
}
assert.strictEqual(errorMessage, 'invalid-paymentmethodid')
})
})
describe('invalid-account', () => {
it('ineligible accessing account', async () => {
const user = await TestStripeAccounts.createUserWithPaymentMethod()
const user2 = await TestHelper.createUser()
await TestHelper.createCustomer(user2, {
email: user.profile.contactEmail,
description: user.profile.firstName,
country: 'US'
})
const req = TestHelper.createRequest(`/api/user/subscriptions/payment-method?paymentmethodid=${user.paymentMethod.id}`)
req.account = user2.account
req.session = user2.session
let errorMessage
try {
await req.get()
} catch (error) {
errorMessage = error.message
}
assert.strictEqual(errorMessage, 'invalid-account')
})
})
})
describe('returns', () => {
it('object', async () => {
const user = await TestStripeAccounts.createUserWithPaymentMethod()
const req = TestHelper.createRequest(`/api/user/subscriptions/payment-method?paymentmethodid=${user.paymentMethod.id}`)
req.account = user.account
req.session = user.session
req.filename = __filename
req.saveResponse = true
const paymentMethod = await req.get()
assert.strictEqual(paymentMethod.id, user.paymentMethod.id)
})
})
})