-
Notifications
You must be signed in to change notification settings - Fork 0
/
pubsub.js
executable file
·343 lines (286 loc) · 10.3 KB
/
pubsub.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
"use strict";
const PubSub = require('google-pubsub-wrapper');
const pubsubList = {};
module.exports = function (app, options)
{
const name = options.serviceName;
if (!pubsubList[name])
{
pubsubList[name] = Pubsub.call(
{}, app, options);
}
else if (options.type)
{
pubsubList[name] = Pubsub.call(pubsubList[name], app, options);
}
return pubsubList[name];
}
/**
* Creates the Pubsub
*
* @param {object} app - Loopback app object.
* @param {object} options - Configuration options.
* @param {string} options.serviceName - Name of pubsub, used to access correct pubsub when reading.
* @param {string} options.type - Pubsub type. May be server/client. Inclusion triggers init.
* @param {string} options.projectId - Google Cloud Project Id. Required for server/client.
* @param {object[]} [options.modelsToSubscribe] - Models to subscribe to
* @param {object[]} [options.modelsToBroadcast] - Models to broadcast
* @param {function[]} [options.filters] - Array of functions taking modelNames, method, instance and ctx. Return false to block publishing on server
* @param {function} options.eventFn - Function to call when any event is triggered.
*/
function Pubsub(app, options)
{
const self = this;
if (options)
{
self.pubsub = PubSub.init(options.projectId);
if (!options.serviceName) throw new Error('options.serviceName is required');
if (!self.serviceName) self.serviceName = options.serviceName;
if (!process.env.NODE_ENV) throw new Error('process.env.NODE_ENV is required');
if (!self.env) self.env = process.env.NODE_ENV;
if (options.filters && !self.filters)
{
if (getType(options.filters) !== 'Array') throw new Error('options.filters must be an array of functions');
self.filters = options.filters;
}
if (!self.type) self.type = options.type;
if (options.type === 'client') clientSide(self, options).then(function ()
{
if (options.done) options.done();
});
else if (options.type === 'server') serverSide(self, app, options);
else if (options.type)
{
throw new Error('Type "' + options.type + '"" is not valid. Valid options: client/server');
}
}
return self;
}
/* Model Hook helpers */
function shouldPublish(self, modelName, methodName, instance, ctx)
{
if (!self.filters || !self.filters.length) return true;
return self.filters.every(fn =>
{
//Silently skip improper filters
if (getType(fn) !== 'Function') return true;
return fn(modelName, methodName, instance, ctx);
});
}
function beforeSaveHook(self, app)
{
return function (ctx, next)
{
if (ctx.data) ctx.hookState.updateData = JSON.parse(JSON.stringify(ctx.data));
else if (ctx.instance) ctx.hookState.updateData = JSON.parse(JSON.stringify(ctx.instance));
next();
}
}
function afterSaveHook(self, app)
{
return function (ctx, next)
{
const modelName = getModelName(ctx);
if (!modelName) return next();
const methodName = ctx.isNewInstance ? 'create' : 'update';
const topicName = modelName;
const updateData = ctx.hookState.updateData;
const dataBeforeUpdate = ctx.hookState.dataBeforeUpdate || ctx.hookState.orderBeforeUpdate;
const context = app.loopback.getCurrentContext();
const accessToken = context && context.get('accessToken');
let userId = null;
if (accessToken) userId = accessToken.userId;
const reqId = context && context.get('reqId');
if (ctx.instance && ctx.instance.id && shouldPublish(self, modelName, methodName, ctx.instance, ctx))
{
const instance = JSON.parse(JSON.stringify(ctx.instance));
console.log(`[${reqId}][PubSub] publish: ${modelName}/${instance.id}/${methodName}`);
return self.pubsub.emit(
{
modelName: modelName,
methodName: methodName,
modelId: instance.id,
data: instance,
updateData: updateData,
userId: userId,
dataBeforeUpdate: dataBeforeUpdate,
orderBeforeUpdate: dataBeforeUpdate,
reqId,
},
{
topicName: topicName,
env: self.env,
groupName: self.serviceName
});
}
if (!ctx.where) return next();
const Model = app.models[modelName];
if (!Model) return next();
Model.find(
{
where: ctx.where
}).then(models =>
{
if (!models || models.length < 1) return;
const data = JSON.parse(JSON.stringify(models)).filter(m =>
{
return shouldPublish(self, modelName, methodName, m, ctx);
}).map(m =>
{
return {
modelName: modelName,
methodName: methodName,
modelId: m.id,
data: m,
userId: userId,
updateData: updateData,
dataBeforeUpdate: dataBeforeUpdate,
orderBeforeUpdate: dataBeforeUpdate,
reqId,
}
});
if (data && data.length > 0) return Promise.all(data.map(function (d)
{
if (d) console.log(`[${reqId}][PubSub] publish: ${d.modelName}/${d.modelId}/${d.methodName}`);
return self.pubsub.emit(d,
{
topicName: topicName,
env: self.env,
groupName: self.serviceName
})
}));
}).then(function (res)
{
next();
}).catch(next);
}
}
//Returns a function that watches model deletions and publishes them
function beforeDeleteHook(self, app)
{
return function (ctx, next)
{
const modelName = getModelName(ctx);
if (!modelName) return next();
const Model = app.models[modelName];
const methodName = 'delete';
const topicName = modelName;
const context = app.loopback.getCurrentContext();
const accessToken = context && context.get('accessToken');
let userId = null;
if (accessToken) userId = accessToken.userId;
const reqId = context && context.get('reqId');
Model.find(
{
where: ctx.where
}).then(models =>
{
if (!models || models.length < 1) return;
const data = JSON.parse(JSON.stringify(models)).filter(m =>
{
return shouldPublish(self, modelName, methodName, m, ctx);
}).map(m =>
{
return {
modelName: modelName,
methodName: methodName,
modelId: m.id,
data: m,
userId: userId,
reqId,
}
});
if (data && data.length > 0) return Promise.all(data.map(function (d)
{
if (d) console.log(`[${reqId}][PubSub] publish: ${d.modelName}/${d.modelId}/${d.methodName}`);
return self.pubsub.emit(d,
{
topicName: topicName,
env: self.env,
groupName: self.serviceName
})
}));
}).then(function (res)
{
next();
}).catch(next);
}
}
/* General helpers */
function getModelName(ctx)
{
return ctx.Model && ctx.Model.definition && ctx.Model.definition.name;
}
function getType(val)
{
return Object.prototype.toString.call(val).slice(8, -1);
}
/* Pubsub starters */
function clientSide(self, options)
{
if (!options.projectId)
{
return Promise.reject(new Error('Google Project Id is required for pubsub client'));
}
if (!options.modelsToSubscribe || options.modelsToSubscribe.length < 1)
{
return Promise.reject(new Error('modelsToSubscribe is required for pubsub client'));
}
if (!options.eventFn)
{
return Promise.reject(new Error('eventFn is required for pubsub client'));
}
console.log(`[PubSub][client] Listening to ${options.modelsToSubscribe.length} models: ${options.modelsToSubscribe.join(", ")}`);
return options.modelsToSubscribe.reduce((prev, modelName) =>
{
return prev.then(() =>
{
return self.pubsub.subscribe(
{
topicName: modelName,
env: self.env,
groupName: self.serviceName,
callback: function (d)
{
//loopback context is not available here
//so no features relying on it (such as context filter) works here
const tab = '==============';
if (d) console.log(`${tab}[PubSub] handleRemoteMessage: [${d.reqId}]${d.modelName}/${d.modelId}/${d.methodName}`);
if (d) return options.eventFn(
d.modelName,
d.methodName,
d.modelId,
d.data,
d.updateData,
d.userId,
d.dataBeforeUpdate
)
}
});
});
}, Promise.resolve());
}
function serverSide(self, app, options)
{
if (!app)
{
throw new Error('app is required for pubsub server');
}
if (!options.projectId)
{
throw new Error('Google Project Id is required for pubsub server');
}
if (!options.modelsToBroadcast || options.modelsToBroadcast.length < 1)
{
throw new Error('modelsToBroadcast is required for pubsub server');
}
console.log(`[PubSub][server] Broadcasting ${options.modelsToBroadcast.length} models: ${options.modelsToBroadcast.join(", ")}`);
options.modelsToBroadcast.forEach(m =>
{
const Model = app.models[m];
if (!m || !Model) return;
Model.observe('before save', beforeSaveHook(self, app));
Model.observe('after save', afterSaveHook(self, app));
Model.observe('before delete', beforeDeleteHook(self, app));
});
}