generated from ecomplus/application-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
webhook.js
522 lines (485 loc) · 23.1 KB
/
webhook.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
// read configured E-Com Plus app data
const getAppData = require('./../../lib/store-api/get-app-data')
// Auth GalaxPay
const GalaxpayAxios = require('./../../lib/galaxpay/create-access')
const { baseUri } = require('../../__env')
const {
checkItemsAndRecalculeteOrder,
updateValueSubscriptionGalaxpay,
getSubscriptionsByListMyIds,
updateTransactionGalaxpay,
cancellTransactionGalaxpay
} = require('../../lib/galaxpay/update-subscription')
const {
findOrderById,
getProductsById,
getOrderWithQueryString
} = require('./../../lib/store-api/request-api')
const {
getDocSubscription,
updateDocSubscription,
createItemsAndAmount
} = require('./../../lib/firestore/utils')
const ecomUtils = require('@ecomplus/utils')
const SKIP_TRIGGER_NAME = 'SkipTrigger'
const ECHO_SUCCESS = 'SUCCESS'
const ECHO_SKIP = 'SKIP'
const ECHO_API_ERROR = 'STORE_API_ERR'
exports.post = async ({ appSdk, admin }, req, res) => {
// receiving notification from Store API
const { storeId } = req
/**
* Treat E-Com Plus trigger body here
* Ref.: https://developers.e-com.plus/docs/api/#/store/triggers/
*/
const trigger = req.body
const resourceId = trigger.resource_id || trigger.inserted_id
const addItemsAndValueSubscriptionDoc = async (collectionSubscription, amount, items, value, subscriptionId) => {
const itemsAndAmount = createItemsAndAmount(amount, items)
const body = { itemsAndAmount }
if (value) {
body.value = value
}
await updateDocSubscription(collectionSubscription, body, subscriptionId)
}
appSdk.getAuth(storeId)
.then((auth) => {
// get app configured options
return getAppData({ appSdk, storeId, auth })
.then(async appData => {
if (
Array.isArray(appData.ignore_triggers) &&
appData.ignore_triggers.indexOf(trigger.resource) > -1
) {
// ignore current trigger
const err = new Error()
err.name = SKIP_TRIGGER_NAME
throw err
}
/* DO YOUR CUSTOM STUFF HERE */
const galaxpayAxios = new GalaxpayAxios(appData.galaxpay_id, appData.galaxpay_hash, storeId)
const collectionSubscription = admin.firestore().collection('subscriptions')
const collectionTransactions = admin.firestore().collection('transactions')
if (trigger.resource === 'orders' && trigger.body?.status === 'cancelled') {
console.log('>>> ', JSON.stringify(trigger.body))
galaxpayAxios.preparing
.then(async () => {
// Get Original Order
console.log('s: ', storeId, '> ', resourceId)
const order = await findOrderById(appSdk, storeId, resourceId, auth)
console.log('s: ', storeId, '> Cancell Subscription ', order._id)
getDocSubscription(order._id, collectionSubscription)
.then(({ status }) => {
const updatedAt = new Date().toISOString()
if (status !== 'cancelled') {
galaxpayAxios.axios.delete(`/subscriptions/${order._id}/myId`)
.then(() => {
console.log(`> ${order._id} Cancelled`)
res.send(ECHO_SUCCESS)
admin.firestore().collection('subscriptions').doc(order._id)
.set({
status: 'cancelled',
updatedAt
}, { merge: true })
.catch(console.error)
})
.catch((err) => {
const statusCode = err.response.status
// case error cancell GalaxPay, not cancelled in API
if (!order.subscription_order && statusCode !== 404) {
const body = {
status: 'open'
}
console.error(err)
console.log(`> Set order status to open: ${order._id}`)
appSdk.apiRequest(storeId, `orders/${order._id}.json`, 'PATCH', body, auth)
.then(() => {
res.send(ECHO_SUCCESS)
})
.catch((err) => {
res.status(500)
const { message } = err
res.send({
error: ECHO_API_ERROR,
message
})
})
} else if (statusCode === 404) {
console.log('>E-com webhook: Subscription canceled or finished in galaxPay')
admin.firestore().collection('subscriptions').doc(order._id)
.set({
status: 'cancelled',
description: 'Subscription canceled or finished in galaxPay',
updatedAt
}, { merge: true })
.catch(console.error)
} else {
console.error(err)
admin.firestore().collection('subscriptions').doc(order._id)
.set({
description: `GALAXPAY_TRANSACTION_ERR ${statusCode}`,
updatedAt
}, { merge: true })
.catch(console.error)
}
})
} else {
res.send(ECHO_SUCCESS)
}
})
.catch((err) => {
let status = 500
const { message } = err
if (message === 'Document does not exist Firestore') {
console.warn(`>> StoreApi webhook: Document does not exist Firestore, order #${resourceId}, not found`)
status = 404
}
res.status(status).send({
error: ECHO_API_ERROR,
message
})
})
})
} else if (
trigger.resource === 'orders' && trigger.body && trigger.body.status &&
trigger.body.status !== 'cancelled' && trigger.action !== 'create' &&
trigger.fields?.includes('items')
) {
console.log('>> ', JSON.stringify(trigger))
// When the original order is edited
try {
const docSubscription = await getDocSubscription(resourceId, collectionSubscription)
const order = await findOrderById(appSdk, storeId, resourceId, auth)
const { amount, items } = order
const shippingLine = order.shipping_lines[0]
const { plan } = docSubscription
// Calculates new value
const { value: newValue } = await checkItemsAndRecalculeteOrder(
{ ...amount },
[...items],
{ ...plan },
null,
{ ...shippingLine },
storeId,
appSdk,
auth
)
await galaxpayAxios.preparing
const resp = await updateValueSubscriptionGalaxpay(galaxpayAxios, resourceId, newValue)
if (resp) {
console.log('> Successful signature edit on Galax Pay')
addItemsAndValueSubscriptionDoc(
collectionSubscription,
amount,
items,
newValue,
resourceId
)
}
res.send(ECHO_SUCCESS)
} catch (err) {
const { message, response } = err
let status = response?.status || 500
if (message === 'Document does not exist Firestore' ||
message === 'StoreId property not found in document') {
console.warn(`>> StoreApi webhook: Document does not exist Firestore, order #${resourceId}, not found`)
status = 404
} else {
if (response && response.data) {
console.error('> Error editing subscription => ', JSON.stringify(response.data))
} else {
console.error('> Error editing subscription => ', err)
}
}
res.status(status).send({
error: ECHO_API_ERROR,
message
})
}
} else if (trigger.resource === 'applications') {
console.log('s: ', storeId, '> Edit Application')
const body = {
url: `${baseUri}/galaxpay/webhooks`,
events: ['subscription.addTransaction', 'transaction.updateStatus']
}
galaxpayAxios.preparing
.then(() => {
return galaxpayAxios.axios.put('/webhooks', body)
})
.then(({ response }) => {
console.log('> Success edit webhook')
res.send(ECHO_SUCCESS)
})
.catch((err) => {
console.error(err)
res.status(500)
const { message } = err
res.send({
error: ECHO_API_ERROR,
message
})
})
} else if (trigger.resource === 'products' && trigger.action === 'change') {
let query = 'status!=cancelled&transactions.type=recurrence'
query += '&transactions.app.intermediator.code=galaxpay_app'
query += `&items.product_id=${resourceId}`
try {
const { result } = await getOrderWithQueryString(appSdk, storeId, query, auth)
if (result && result.length) {
console.log('> Edit product ', resourceId, 's: ', storeId)
const galaxPaySubscriptions = await getSubscriptionsByListMyIds(
galaxpayAxios,
result.reduce((orderIds, order) => {
orderIds.push(order._id)
return orderIds
}, [])
)
if (galaxPaySubscriptions && galaxPaySubscriptions.length) {
console.log('>> body ', JSON.stringify(trigger.body))
let error
for (let i = 0; i < galaxPaySubscriptions.length; i++) {
const subscription = galaxPaySubscriptions[i]
try {
const order = await findOrderById(appSdk, storeId, subscription.myId, auth)
.catch(console.error)
const product = await getProductsById(appSdk, storeId, resourceId, auth)
.catch(console.error)
if (order && product) {
const items = [...order.items]
let docSubscription = await getDocSubscription(order._id, collectionSubscription)
const hasItems = docSubscription?.itemsAndAmount?.items
items.forEach(async (orderItem) => {
let dimensions = product?.dimensions
let weight = product?.weight
if (orderItem.product_id === product._id) {
if (orderItem.variation_id) {
const variation = product.variations.find(itemFind => itemFind.sku === orderItem.sku)
let quantity = orderItem.quantity
if (variation && variation.quantity < orderItem.quantity) {
quantity = variation.quantity
} else if (!variation) {
quantity = 0
}
if (variation.dimensions) {
dimensions = variation.dimensions
}
if (variation.weight) {
weight = variation.weight
}
const newItem = {
subscription_id: order._id,
product_id: product._id,
sku: variation.sku,
price: ecomUtils.price({ ...product, ...variation }),
quantity
}
// update item, price or quantity
checkItemsAndRecalculeteOrder(order.amount, order.items, docSubscription.plan, newItem)
} else {
const newItem = {
subscription_id: order._id,
product_id: product._id,
sku: product.sku,
price: ecomUtils.price(product),
quantity: product.quantity < orderItem.quantity ? product.quantity : orderItem.quantity
}
// update item, price or quantity
checkItemsAndRecalculeteOrder(order.amount, order.items, docSubscription.plan, newItem)
}
orderItem.dimensions = dimensions
orderItem.weight = weight
} else if (hasItems) {
// It is necessary to update the reading in firebase, as the item may have already been updated
docSubscription = await getDocSubscription(order._id, collectionSubscription)
const docItems = docSubscription?.itemsAndAmount?.items
let newItem = docItems?.find(item => item.sku === orderItem.sku)
if (!newItem) {
newItem = {
subscription_id: order._id,
product_id: product._id,
sku: orderItem.sku,
price: orderItem.price,
quantity: 0
}
}
checkItemsAndRecalculeteOrder(order.amount, order.items, docSubscription.plan, newItem)
}
})
// Calculates new value
const { value: newSubscriptionValue } = await checkItemsAndRecalculeteOrder(
order.amount,
order.items,
docSubscription.plan,
null,
order.shipping_lines[0],
storeId,
appSdk,
auth
)
if (
(newSubscriptionValue && newSubscriptionValue !== subscription.value) ||
(newSubscriptionValue && docSubscription.value === 0)
) {
await addItemsAndValueSubscriptionDoc(
collectionSubscription,
order.amount,
order.items,
newSubscriptionValue,
order._id
)
try {
await galaxpayAxios.preparing
await updateValueSubscriptionGalaxpay(
galaxpayAxios,
order._id,
newSubscriptionValue,
subscription.value
)
} catch (err) {
console.error(err)
// back firebase document
updateDocSubscription(
collectionSubscription,
docSubscription,
order._id
)
throw err
}
//
let queryString = `subscriptionGalaxPayIds=${subscription.galaxPayId}`
queryString += '&status=notSend,pendingBoleto,pendingPix&order=payday.desc'
try {
const { data: { Transactions } } = await galaxpayAxios.axios
.get(`/transactions?startAt=0&limit=100&${queryString}`)
let i = 0
while (i < Transactions?.length) {
const transaction = Transactions[i]
// console.log('>>Transaction ', transaction)
if (transaction.value !== newSubscriptionValue && transaction.galaxPayId !== docSubscription.transactionId) {
await updateTransactionGalaxpay(galaxpayAxios, transaction.galaxPayId, newSubscriptionValue)
.then(async () => {
const transactionDocId = `${storeId}-${transaction.galaxPayId}`
console.log('>> Update Doc Transaction ', transactionDocId)
const itemsAndAmount = createItemsAndAmount(order.amount, order.items)
await collectionTransactions.doc(transactionDocId)
.set(
{
itemsAndAmount,
updatedAt: new Date().toISOString()
},
{ merge: true }
)
})
.catch(error => {
if (error.response) {
const { status, data } = error.response
console.error('Error response: ', status, ' ', data && JSON.stringify(data))
} else {
console.error(error)
}
})
}
i += 1
}
} catch (err) {
console.error(err)
}
} else if (newSubscriptionValue === 0) {
console.log('>> Attempts to cancel transactions already created from the subscription: ',
order._id, ' new value is: ', newSubscriptionValue)
// signature without items, use a copy of the items from the original order and reset the quantity, to maintain the correct items
const itemsAndAmount = createItemsAndAmount(order.amount, items)
itemsAndAmount?.items?.forEach(item => {
item.quantity = 0
})
await updateDocSubscription(
collectionSubscription,
{
value: 0,
itemsAndAmount
},
order._id
)
let queryString = `subscriptionGalaxPayIds=${subscription.galaxPayId}`
queryString += '&status=notSend,pendingBoleto,pendingPix&order=payday.desc'
try {
const { data: { Transactions } } = await galaxpayAxios.axios
.get(`/transactions?startAt=0&limit=100&${queryString}`)
let i = 0
while (i < Transactions?.length) {
const transaction = Transactions[i]
if (transaction.value !== newSubscriptionValue && transaction.galaxPayId !== docSubscription.transactionId) {
await cancellTransactionGalaxpay(galaxpayAxios, transaction.galaxPayId)
.catch(error => {
if (error.response) {
const { status, data } = error.response
console.error('Error response: ', status, ' ', data && JSON.stringify(data))
} else {
console.error(error)
}
})
}
i += 1
}
} catch (err) {
console.error(err)
}
}
}
} catch (err) {
console.error(`Error trying to update signature #${subscription.myId}`)
if (err.response) {
const { status, data } = err.response
console.log('Error: ', status, ' ', data && JSON.stringify(data))
}
error = err
}
} //
if (!error) {
res.send(ECHO_SUCCESS)
} else {
throw error
}
} else {
res.send(ECHO_SUCCESS)
}
} else {
res.send(ECHO_SUCCESS)
}
} catch (err) {
console.error(err)
res.status(500)
const { message } = err
return res.send({
error: ECHO_API_ERROR,
message
})
}
} else {
return res.send(ECHO_SKIP)
}
})
})
.catch(err => {
if (err.name === SKIP_TRIGGER_NAME) {
// trigger ignored by app configuration
res.send(ECHO_SKIP)
} else if (err.appWithoutAuth === true) {
const msg = `Webhook for ${storeId} unhandled with no authentication found`
const error = new Error(msg)
error.trigger = JSON.stringify(trigger)
console.error(error)
res.status(412).send(msg)
} else {
console.error(err)
// request to Store API with error response
// return error status code
res.status(500)
const { message } = err
res.send({
error: ECHO_API_ERROR,
message
})
}
})
}