/api/user/subscriptions/subscription (GET)
Account information like email addresses is generated with faker-js it is not real user information.
await global.api.user.subscriptions.Subscription.get(req)Returns object
{
"subscriptionid": "sub_1LEOneHHqepMFuCXA0tDU5iZ",
"object": "subscription",
"stripeObject": {
"id": "sub_1LEOneHHqepMFuCXA0tDU5iZ",
"object": "subscription",
"application": null,
"application_fee_percent": null,
"automatic_tax": {
"enabled": false
},
"billing_cycle_anchor": 1656124362,
"billing_thresholds": null,
"cancel_at": null,
"cancel_at_period_end": false,
"canceled_at": null,
"collection_method": "charge_automatically",
"created": 1656124362,
"current_period_end": 1658716362,
"current_period_start": 1656124362,
"customer": "cus_LwHMJeX6EcJdRp",
"days_until_due": null,
"default_payment_method": "pm_1LEOnbHHqepMFuCXggt79Zsf",
"default_source": null,
"default_tax_rates": [],
"description": null,
"discount": null,
"ended_at": null,
"items": {
"object": "list",
"data": [
{
"id": "si_LwHMMOab7taKW6",
"object": "subscription_item",
"billing_thresholds": null,
"created": 1656124363,
"metadata": {},
"plan": {
"id": "price_1LEOnaHHqepMFuCXhdyJ2uAu",
"object": "plan",
"active": true,
"aggregate_usage": null,
"amount": 1000,
"amount_decimal": "1000",
"billing_scheme": "per_unit",
"created": 1656124358,
"currency": "usd",
"interval": "month",
"interval_count": 1,
"livemode": false,
"metadata": {},
"nickname": null,
"product": "prod_LwHManPvxKjQ8m",
"tiers_mode": null,
"transform_usage": null,
"trial_period_days": null,
"usage_type": "licensed"
},
"price": {
"id": "price_1LEOnaHHqepMFuCXhdyJ2uAu",
"object": "price",
"active": true,
"billing_scheme": "per_unit",
"created": 1656124358,
"currency": "usd",
"custom_unit_amount": null,
"livemode": false,
"lookup_key": null,
"metadata": {},
"nickname": null,
"product": "prod_LwHManPvxKjQ8m",
"recurring": {
"aggregate_usage": null,
"interval": "month",
"interval_count": 1,
"trial_period_days": null,
"usage_type": "licensed"
},
"tax_behavior": "inclusive",
"tiers_mode": null,
"transform_quantity": null,
"type": "recurring",
"unit_amount": 1000,
"unit_amount_decimal": "1000"
},
"quantity": 1,
"subscription": "sub_1LEOneHHqepMFuCXA0tDU5iZ",
"tax_rates": []
}
],
"has_more": false,
"total_count": 1,
"url": "/v1/subscription_items?subscription=sub_1LEOneHHqepMFuCXA0tDU5iZ"
},
"latest_invoice": "in_1LEOneHHqepMFuCXy3e75qnh",
"livemode": false,
"metadata": {},
"next_pending_invoice_item_invoice": null,
"pause_collection": null,
"payment_settings": {
"payment_method_options": null,
"payment_method_types": null,
"save_default_payment_method": "off"
},
"pending_invoice_item_interval": null,
"pending_setup_intent": null,
"pending_update": null,
"plan": {
"id": "price_1LEOnaHHqepMFuCXhdyJ2uAu",
"object": "plan",
"active": true,
"aggregate_usage": null,
"amount": 1000,
"amount_decimal": "1000",
"billing_scheme": "per_unit",
"created": 1656124358,
"currency": "usd",
"interval": "month",
"interval_count": 1,
"livemode": false,
"metadata": {},
"nickname": null,
"product": "prod_LwHManPvxKjQ8m",
"tiers_mode": null,
"transform_usage": null,
"trial_period_days": null,
"usage_type": "licensed"
},
"quantity": 1,
"schedule": null,
"start_date": 1656124362,
"status": "active",
"test_clock": null,
"transfer_data": null,
"trial_end": null,
"trial_start": null
},
"customerid": "cus_LwHMJeX6EcJdRp",
"accountid": "acct_9d5ee650417a04b8",
"paymentmethodid": null,
"productid": null,
"priceids": [
"price_1LEOnaHHqepMFuCXhdyJ2uAu"
],
"couponid": null,
"appid": "tests_1656124358",
"createdAt": "2022-06-25T02:32:45.402Z",
"updatedAt": "2022-06-25T02:32:48.658Z"
}
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-account | ineligible accessing account |
invalid-subscriptionid | missing querystring subscriptionid |
invalid querystring subscriptionid |
NodeJS source (view on github)
const dashboard = require('@layeredapps/dashboard')
const subscriptions = require('../../../../../index.js')
module.exports = {
get: async (req) => {
if (!req.query || !req.query.subscriptionid) {
throw new Error('invalid-subscriptionid')
}
let subscription = await dashboard.StorageCache.get(req.query.subscriptionid)
if (!subscription) {
const subscriptionInfo = await subscriptions.Storage.Subscription.findOne({
where: {
subscriptionid: req.query.subscriptionid,
appid: req.appid || global.appid
}
})
if (!subscriptionInfo) {
throw new Error('invalid-subscriptionid')
}
if (subscriptionInfo.dataValues.accountid !== req.account.accountid) {
throw new Error('invalid-account')
}
subscription = {}
for (const field of subscriptionInfo._options.attributes) {
subscription[field] = subscriptionInfo.get(field)
}
await dashboard.StorageCache.set(req.query.subscriptionid, subscription)
}
return subscription
}
}
Test source (view on github)
/* eslint-env mocha */
const assert = require('assert')
const TestHelper = require('../../../../../test-helper.js')
const TestStripeAccounts = require('../../../../../test-stripe-accounts.js')
const DashboardTestHelper = require('@layeredapps/dashboard/test-helper.js')
describe('/api/user/subscriptions/subscription', function () {
before(TestHelper.disableMetrics)
after(TestHelper.enableMetrics)
let cachedResponses
async function bundledData (retryNumber) {
if (retryNumber > 0) {
cachedResponses = {}
}
if (cachedResponses && cachedResponses.finished) {
return
}
cachedResponses = {}
await TestHelper.setupBefore()
await DashboardTestHelper.setupBeforeEach()
await TestHelper.setupBeforeEach()
const administrator = await TestStripeAccounts.createOwnerWithPrice()
const user = await TestStripeAccounts.createUserWithPaidSubscription(administrator.price)
const user2 = await TestHelper.createUser()
// invalid account
const req = TestHelper.createRequest(`/api/user/subscriptions/subscription?subscriptionid=${user.subscription.subscriptionid}`)
req.account = user2.account
req.session = user2.session
try {
await req.get()
} catch (error) {
cachedResponses.invalidAccount = error.message
}
// response
const req2 = TestHelper.createRequest(`/api/user/subscriptions/subscription?subscriptionid=${user.subscription.subscriptionid}`)
req2.account = user.account
req2.session = user.session
req2.filename = __filename
req2.saveResponse = true
cachedResponses.result = await req2.get()
cachedResponses.finished = true
}
describe('exceptions', () => {
describe('invalid-subscriptionid', () => {
it('missing querystring subscriptionid', async function () {
await bundledData(this.test.currentRetry())
const user = await TestHelper.createUser()
const req = TestHelper.createRequest('/api/user/subscriptions/subscription?')
req.account = user.account
req.session = user.session
let errorMessage
try {
await req.get()
} catch (error) {
errorMessage = error.message
}
assert.strictEqual(errorMessage, 'invalid-subscriptionid')
})
it('invalid querystring subscriptionid', async function () {
await bundledData(this.test.currentRetry())
const user = await TestHelper.createUser()
const req = TestHelper.createRequest('/api/user/subscriptions/subscription?subscriptionid=invalid')
req.account = user.account
req.session = user.session
let errorMessage
try {
await req.get()
} catch (error) {
errorMessage = error.message
}
assert.strictEqual(errorMessage, 'invalid-subscriptionid')
})
})
describe('invalid-account', () => {
it('ineligible accessing account', async function () {
await bundledData(this.test.currentRetry())
const errorMessage = cachedResponses.invalidAccount
assert.strictEqual(errorMessage, 'invalid-account')
})
})
})
describe('returns', () => {
it('object', async () => {
const subscriptionNow = cachedResponses.result
assert.strictEqual(subscriptionNow.object, 'subscription')
})
})
})