|
| 1 | +const _ = require('lodash'); |
| 2 | +const Bluebird = require('bluebird'); |
| 3 | + |
| 4 | +const { APP_TYPE } = require('../constants'); |
| 5 | +const { getModel } = require('../model'); |
| 6 | +// const { JOB, QUEUE } = require('../constants'); |
| 7 | +// const { publishJob } = require('../queues'); |
| 8 | +const getAppDefinitions = require('./get-app-definitions'); |
| 9 | + |
| 10 | +// TODO: Introduce and test in future PR |
| 11 | +// const scheduleBackfill = async appId => { |
| 12 | +// await publishJob( |
| 13 | +// QUEUE.APP_PROCESSING, |
| 14 | +// JOB.BACKFILL_APP, |
| 15 | +// { |
| 16 | +// id: appId, |
| 17 | +// }, |
| 18 | +// { |
| 19 | +// jobId: `backfill-app-${appId}`, |
| 20 | +// removeOnComplete: false, |
| 21 | +// }, |
| 22 | +// ); |
| 23 | +// }; |
| 24 | + |
| 25 | +const transformMappings = mappings => |
| 26 | + mappings.map(m => ({ |
| 27 | + ...m, |
| 28 | + type: APP_TYPE[m.type.toUpperCase()], |
| 29 | + })); |
| 30 | + |
| 31 | +const createApp = async definition => { |
| 32 | + const App = getModel('App'); |
| 33 | + const app = { |
| 34 | + ..._.omit(definition, 'id', 'mappings'), |
| 35 | + _id: definition.id, |
| 36 | + mappings: transformMappings(definition.mappings), |
| 37 | + }; |
| 38 | + |
| 39 | + await App.create(app); |
| 40 | + // await scheduleBackfill(definition.id); |
| 41 | +}; |
| 42 | + |
| 43 | +const compareMappings = (currentMappings, definitionMappings) => { |
| 44 | + const newMappings = _.differenceWith( |
| 45 | + definitionMappings, |
| 46 | + currentMappings, |
| 47 | + _.isEqual, |
| 48 | + ); |
| 49 | + |
| 50 | + const mappingsModified = newMappings.length > 0; |
| 51 | + |
| 52 | + return mappingsModified; |
| 53 | +}; |
| 54 | + |
| 55 | +const updateApp = async (app, definition) => { |
| 56 | + const metadata = _.omit(definition, 'id', 'mappings'); |
| 57 | + |
| 58 | + Object.keys(metadata).forEach(metadataKey => { |
| 59 | + app.set(metadataKey, metadata[metadataKey]); |
| 60 | + }); |
| 61 | + |
| 62 | + const currentMappings = app.mappings.map(m => |
| 63 | + _.pickBy( |
| 64 | + _.pick( |
| 65 | + m, |
| 66 | + 'affiliateAddress', |
| 67 | + 'feeRecipientAddress', |
| 68 | + 'takerAddress', |
| 69 | + 'type', |
| 70 | + ), |
| 71 | + value => value !== undefined, |
| 72 | + ), |
| 73 | + ); |
| 74 | + |
| 75 | + const nextMappings = transformMappings(definition.mappings); |
| 76 | + const mappingsModified = compareMappings(currentMappings, nextMappings); |
| 77 | + |
| 78 | + if (mappingsModified) { |
| 79 | + app.set('mappings', nextMappings); |
| 80 | + } |
| 81 | + |
| 82 | + if (app.isModified()) { |
| 83 | + await app.save(); |
| 84 | + } |
| 85 | + |
| 86 | + // if (mappingsModified) { |
| 87 | + // await scheduleBackfill(definition.id); |
| 88 | + // } |
| 89 | +}; |
| 90 | + |
| 91 | +/** |
| 92 | + * Sync current app definitions with MongoDB making sure that any differences |
| 93 | + * in metadata or mappings are reflected in MongoDB. |
| 94 | + * |
| 95 | + * Any changes to definition mappings will trigger an attributions backfill |
| 96 | + * for the app in which the mappings changed. |
| 97 | + * |
| 98 | + * NOTE: Removal of apps or mappings must be handled manually. The sync process |
| 99 | + * is not currently built to automate this since it's unlikely to occur. |
| 100 | + */ |
| 101 | +const syncAppDefinitions = async () => { |
| 102 | + const App = getModel('App'); |
| 103 | + const definitions = getAppDefinitions(); |
| 104 | + |
| 105 | + await Bluebird.each(definitions, async definition => { |
| 106 | + const app = await App.findById(definition.id); |
| 107 | + |
| 108 | + if (app === null) { |
| 109 | + await createApp(definition); |
| 110 | + } else { |
| 111 | + await updateApp(app, definition); |
| 112 | + } |
| 113 | + }); |
| 114 | +}; |
| 115 | + |
| 116 | +module.exports = syncAppDefinitions; |
0 commit comments