Skip to content

Commit

Permalink
chore: run webhook cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
dackers86 committed Aug 30, 2023
1 parent 2f91d8d commit 6fe1ffe
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 15 deletions.
38 changes: 26 additions & 12 deletions firestore-stripe-payments/functions/__tests__/helpers/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,34 +78,48 @@ export const waitForDocumentUpdate = (

export const waitForDocumentToExistInCollection = (
query: Query,
field: string | number,
field: string,
value: any,
timeout: number = 20_000
timeout: number = 120000
): Promise<DocumentData> => {
return new Promise((resolve, reject) => {
let timedOut = false;

let unsubscribe: () => void; // Declare unsubscribe here

const timer = setTimeout(() => {
timedOut = true;
reject(
new Error(
`Timeout waiting for firestore document to exist with field ${field} in collection`
)
);
if (unsubscribe) {
unsubscribe(); // Unsubscribe when timed out
}
}, timeout);

const unsubscribe = query.onSnapshot(async (snapshot) => {
const docs = snapshot.docChanges();
unsubscribe = query.onSnapshot(async (snapshot) => {
try {
const docs = snapshot.docChanges();

const record: DocumentData = docs.filter(
($) => $.doc.data()[field] === value
)[0];
const record: DocumentData = docs.filter(
($) => $.doc.data()[field] === value
)[0];

if (record) {
unsubscribe();
if (!timedOut) {
clearTimeout(timer);
resolve(record);
if (record) {
unsubscribe();
if (!timedOut) {
clearTimeout(timer);
resolve(record);
}
}
} catch (error) {
if (unsubscribe) {
unsubscribe(); // Unsubscribe on error
}
console.log('Error: ', error);
reject(error);
}
});
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,20 @@ export const clearWebhooks = async (id) => {
};

export const clearAllWebhooks = async () => {
console.log('Step 1 >>>>>');
const stripe = require('stripe')(process.env.STRIPE_API_KEY);

console.log('Step 2 >>>>>');
const webhooks = await stripe.webhookEndpoints.list();

console.log('Step 3 >>>>>');

/** Log how weekbhooks have been found */
console.log('Found webhooks: ', webhooks.data.length);

for await (const webhook of webhooks.data) {
if (webhook.url.includes('ngrok.io')) {
await stripe.webhookEndpoints.del(webhook.id);
}
console.log('Deleting webhook: ', webhook.id);
await stripe.webhookEndpoints.del(webhook.id);
}

return Promise.resolve();
Expand Down
3 changes: 3 additions & 0 deletions firestore-stripe-payments/functions/__tests__/run-script.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@ import {
} from './helpers/setupProxy';

(async () => {
console.log('Starting tests...');

/** Clear all webhooks with ngrok.io,
* useful for clearing any failed ci testing
*/
console.log('Clearing webhooks...');
await cleanupAllWebhooks();

const proxyId = await setupProxy();
Expand Down

0 comments on commit 6fe1ffe

Please sign in to comment.