mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
e6b805b885
exit with non zero code when no invoicess were processed GitOrigin-RevId: df449964fc830f689d972d9ad3ed6b352c1b7c5c
102 lines
2.9 KiB
JavaScript
102 lines
2.9 KiB
JavaScript
const RecurlyWrapper = require('../../app/src/Features/Subscription/RecurlyWrapper')
|
|
const async = require('async')
|
|
const minimist = require('minimist')
|
|
|
|
const slowCallback = (callback, error, data) =>
|
|
setTimeout(() => callback(error, data), 80)
|
|
|
|
const handleAPIError = (source, id, error, callback) => {
|
|
console.warn(`Errors in ${source} with id=${id}`, error)
|
|
if (typeof error === 'string' && error.match(/429$/)) {
|
|
return setTimeout(callback, 1000 * 60 * 5)
|
|
}
|
|
slowCallback(callback)
|
|
}
|
|
|
|
const attemptInvoiceCollection = (invoice, callback) => {
|
|
isAccountUsingPaypal(invoice, (error, isPaypal) => {
|
|
if (error || !isPaypal) {
|
|
return callback(error)
|
|
}
|
|
const accountId = invoice.account.url.match(/accounts\/(.*)/)[1]
|
|
if (USERS_COLLECTED.indexOf(accountId) > -1) {
|
|
console.warn(`Skipping duplicate user ${accountId}`)
|
|
return callback()
|
|
}
|
|
INVOICES_COLLECTED.push(invoice.invoice_number)
|
|
USERS_COLLECTED.push(accountId)
|
|
if (DRY_RUN) {
|
|
return callback()
|
|
}
|
|
RecurlyWrapper.attemptInvoiceCollection(
|
|
invoice.invoice_number,
|
|
(error, response) => {
|
|
if (error) {
|
|
return handleAPIError(
|
|
'attemptInvoiceCollection',
|
|
invoice.invoice_number,
|
|
error,
|
|
callback
|
|
)
|
|
}
|
|
INVOICES_COLLECTED_SUCCESS.push(invoice.invoice_number)
|
|
slowCallback(callback, null)
|
|
}
|
|
)
|
|
})
|
|
}
|
|
|
|
const isAccountUsingPaypal = (invoice, callback) => {
|
|
const accountId = invoice.account.url.match(/accounts\/(.*)/)[1]
|
|
RecurlyWrapper.getBillingInfo(accountId, (error, response) => {
|
|
if (error) {
|
|
return handleAPIError('billing info', accountId, error, callback)
|
|
}
|
|
if (response.billing_info.paypal_billing_agreement_id) {
|
|
return slowCallback(callback, null, true)
|
|
}
|
|
slowCallback(callback, null, false)
|
|
})
|
|
}
|
|
|
|
const attemptInvoicesCollection = callback => {
|
|
RecurlyWrapper.getPaginatedEndpoint(
|
|
'invoices',
|
|
{ state: 'past_due' },
|
|
(error, invoices) => {
|
|
console.log('invoices', invoices.length)
|
|
if (error) {
|
|
return callback(error)
|
|
}
|
|
async.eachSeries(invoices, attemptInvoiceCollection, callback)
|
|
}
|
|
)
|
|
}
|
|
|
|
const argv = minimist(process.argv.slice(2))
|
|
const DRY_RUN = argv.n !== undefined
|
|
const INVOICES_COLLECTED = []
|
|
const INVOICES_COLLECTED_SUCCESS = []
|
|
const USERS_COLLECTED = []
|
|
attemptInvoicesCollection(error => {
|
|
if (error) {
|
|
throw error
|
|
}
|
|
console.log(
|
|
`DONE (DRY_RUN=${DRY_RUN}). ${INVOICES_COLLECTED.length} invoices collection attempts for ${USERS_COLLECTED.length} users. ${INVOICES_COLLECTED_SUCCESS.length} successful collections`
|
|
)
|
|
console.dir(
|
|
{
|
|
INVOICES_COLLECTED,
|
|
INVOICES_COLLECTED_SUCCESS,
|
|
USERS_COLLECTED,
|
|
},
|
|
{ maxArrayLength: null }
|
|
)
|
|
|
|
if (INVOICES_COLLECTED_SUCCESS === 0) {
|
|
process.exit(1)
|
|
} else {
|
|
process.exit()
|
|
}
|
|
})
|