-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdbHelper.ts
More file actions
414 lines (358 loc) · 11.8 KB
/
Copy pathdbHelper.ts
File metadata and controls
414 lines (358 loc) · 11.8 KB
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
import { Collection, Db, ObjectId } from 'mongodb';
import { PlanDBScheme, ProjectDBScheme, WorkspaceDBScheme } from '@hawk.so/types';
import { WorkspaceWithTariffPlan } from '../types';
import HawkCatcher from '@hawk.so/nodejs';
import { CriticalError, NonCriticalError } from '../../../lib/workerErrors';
import { MS_IN_SEC } from '../../../lib/utils/consts';
import TimeMs from '../../../lib/utils/time';
const SEC_IN_DAY = TimeMs.DAY / TimeMs.SECOND;
const WORKSPACE_PROJECTION = {
_id: 1,
name: 1,
isBlocked: 1,
blockedDate: 1,
lastChargeDate: 1,
billingPeriodEventsCount: 1,
tariffPlanId: 1,
} as const;
type WorkspaceForLimiter = Pick<
WorkspaceDBScheme,
'_id' | 'name' | 'isBlocked' | 'blockedDate' | 'lastChargeDate' | 'billingPeriodEventsCount' | 'tariffPlanId'
>;
/**
* Class that implements methods used for interaction between limiter and db
*/
export class DbHelper {
/**
* Connection to events DB
*/
private eventsDbConnection: Db;
/**
* Collection with projects
*/
private projectsCollection: Collection<ProjectDBScheme>;
/**
* Collection with workspaces
*/
private workspacesCollection: Collection<WorkspaceDBScheme>;
/**
* Collection with tariff plans
*/
private plansCollection: Collection<PlanDBScheme>;
/**
* In-memory cache of tariff plans — avoids $lookup on the small plans collection per workspace
*/
private plans: PlanDBScheme[] = [];
/**
* Plan ids that were still missing after a cache refresh — don't trigger more refreshes for them
*/
private knownMissingPlanIds: Set<string> = new Set();
/**
* @param projects - projects collection
* @param workspaces - workspaces collection
* @param plans - plans collection
* @param eventsDbConnection - connection to events DB
*/
constructor(
projects: Collection<ProjectDBScheme>,
workspaces: Collection<WorkspaceDBScheme>,
plans: Collection<PlanDBScheme>,
eventsDbConnection: Db
) {
this.eventsDbConnection = eventsDbConnection;
this.projectsCollection = projects;
this.workspacesCollection = workspaces;
this.plansCollection = plans;
}
/**
* Fetches tariff plans from database and keeps them cached
*/
public async fetchPlans(): Promise<void> {
this.plans = await this.plansCollection.find({}).toArray();
this.knownMissingPlanIds.clear();
if (this.plans.length === 0) {
throw new CriticalError('Please add tariff plans to the database');
}
}
/**
* Method that yields all workspaces with their tariff plans
*/
public getWorkspacesWithTariffPlans(): AsyncGenerator<WorkspaceWithTariffPlan>;
/**
* Method that returns workspace with its tariff plan by its id
*
* @param id - id of the workspace to fetch
*/
public getWorkspacesWithTariffPlans(id: string): Promise<WorkspaceWithTariffPlan>;
/**
* @param id - id of the workspace to fetch
*/
public getWorkspacesWithTariffPlans(id?: string): AsyncGenerator<WorkspaceWithTariffPlan> | Promise<WorkspaceWithTariffPlan> {
if (id !== undefined) {
return this.getOneWorkspaceWithTariffPlan(id);
}
return this.yieldWorkspacesWithTariffPlans();
}
/**
* Updates workspaces data in Database
*
* @param workspacesToUpdate - array of workspaces to be updated
*/
public async updateWorkspacesEventsCountAndIsBlocked(workspacesToUpdate: WorkspaceWithTariffPlan[]): Promise<void> {
if (workspacesToUpdate.length === 0) {
return;
}
const operations = workspacesToUpdate.map(workspace => {
return {
updateOne: {
filter: {
_id: workspace._id,
},
update: {
$set: {
billingPeriodEventsCount: workspace.billingPeriodEventsCount,
isBlocked: workspace.isBlocked,
blockedDate: workspace.blockedDate,
},
},
},
};
});
await this.workspacesCollection.bulkWrite(operations);
}
/**
* Returns total event counts for last billing period
*
* @param project - project to check
* @param since - timestamp of the time from which we count the events
*/
public async getEventsCountByProject(
project: ProjectDBScheme,
since: number
): Promise<number> {
try {
const query = {
timestamp: {
$gt: since,
},
};
return await this.getRawEventsCountByProject(project, query);
} catch (e) {
HawkCatcher.send(e);
throw new CriticalError(e);
}
}
/**
* Calculates total events count for all provided projects since the specific date
*
* @param projects - projects to calculate for
* @param since - timestamp of the time from which we count the events
*/
public async getEventsCountByProjects(projects: ProjectDBScheme[], since: number): Promise<number> {
const sum = (array: number[]): number => array.reduce((acc, val) => acc + val, 0);
return Promise.all(projects.map(
project => this.getEventsCountByProject(project, since)
))
.then(sum);
}
/**
* Returns total event counts for last billing period using dailyEvents counters.
*
* Full days are summed from dailyEvents per-day counters (grouper
* increments `count` for originals and repetitions alike); only the
* partial day containing `since` is counted from the raw collections,
* since dailyEvents buckets have day granularity and lastChargeDate does not.
*
* @param project - project to check
* @param since - timestamp of the time from which we count the events
*/
public async getEventsCountByProjectUsingDailyEvents(
project: ProjectDBScheme,
since: number
): Promise<number> {
try {
const projectId = project._id.toString();
const dailyEventsCollection = this.eventsDbConnection.collection('dailyEvents:' + projectId);
const firstFullDayTimestamp = this.getFirstFullDailyEventsTimestamp(since);
const boundaryDayQuery = {
timestamp: {
$gt: since,
$lt: firstFullDayTimestamp,
},
};
const [boundaryDayCount, dailyCounters] = await Promise.all([
since < firstFullDayTimestamp
? this.getRawEventsCountByProject(project, boundaryDayQuery)
: 0,
dailyEventsCollection
.aggregate<{ count: number }>([
{ $match: { groupingTimestamp: { $gte: firstFullDayTimestamp } } },
{
$group: {
_id: null,
count: { $sum: '$count' },
},
},
])
.toArray(),
]);
const fullDaysCount = dailyCounters.length > 0 ? dailyCounters[0].count : 0;
return boundaryDayCount + fullDaysCount;
} catch (e) {
HawkCatcher.send(e);
throw new CriticalError(e);
}
}
/**
* Calculates total events count for all provided projects since the specific date
* using dailyEvents counters for full days.
*
* @param projects - projects to calculate for
* @param since - timestamp of the time from which we count the events
*/
public async getEventsCountByProjectsUsingDailyEvents(projects: ProjectDBScheme[], since: number): Promise<number> {
const sum = (array: number[]): number => array.reduce((acc, val) => acc + val, 0);
return Promise.all(projects.map(
project => this.getEventsCountByProjectUsingDailyEvents(project, since)
))
.then(sum);
}
/**
* Returns all projects from Database or projects of the specified workspace
*
* @param [workspaceId] - workspace ids to fetch projects that belongs that workspace
*/
public getProjects(workspaceId?: string): Promise<ProjectDBScheme[]> {
const query = workspaceId
? {
$or: [
{ workspaceId: workspaceId },
{ workspaceId: new ObjectId(workspaceId) },
],
}
: {};
return this.projectsCollection.find(query).toArray();
}
/**
* UTC midnight right after the given timestamp. Mirrors grouper's
* getMidnightByEventTimestamp, which fills the dailyEvents buckets.
*
* @param timestamp - unix timestamp in seconds
*/
private getNextUtcMidnight(timestamp: number): number {
const date = new Date(timestamp * MS_IN_SEC);
date.setUTCDate(date.getUTCDate() + 1);
date.setUTCHours(0, 0, 0, 0);
return date.getTime() / MS_IN_SEC;
}
/**
* Returns first dailyEvents bucket that can be safely used without counting
* events before the requested timestamp.
*
* @param timestamp - unix timestamp in seconds
*/
private getFirstFullDailyEventsTimestamp(timestamp: number): number {
const midnight = timestamp - (timestamp % SEC_IN_DAY);
return timestamp === midnight ? timestamp : this.getNextUtcMidnight(timestamp);
}
/**
* Counts raw original events and repetitions for the passed query.
*
* @param project - project to check
* @param query - MongoDB timestamp query
*/
private async getRawEventsCountByProject(project: ProjectDBScheme, query: Record<string, unknown>): Promise<number> {
const projectId = project._id.toString();
const repetitionsCollection = this.eventsDbConnection.collection('repetitions:' + projectId);
const eventsCollection = this.eventsDbConnection.collection('events:' + projectId);
const [repetitionsCount, originalEventCount] = await Promise.all([
repetitionsCollection.countDocuments(query),
eventsCollection.countDocuments(query),
]);
return repetitionsCount + originalEventCount;
}
/**
* Returns plan from cache, refetches once on miss
*
* @param planId - id of the plan to find
*/
private async resolvePlan(planId: WorkspaceDBScheme['tariffPlanId']): Promise<PlanDBScheme | null> {
/**
* Workspace may have no tariff plan assigned
*/
if (!planId) {
return null;
}
let plan = this.findPlanById(planId);
if (plan) {
return plan;
}
const planIdStr = planId.toString();
if (this.knownMissingPlanIds.has(planIdStr)) {
return null;
}
await this.fetchPlans();
plan = this.findPlanById(planId);
if (!plan) {
this.knownMissingPlanIds.add(planIdStr);
}
return plan ?? null;
}
/**
* @param planId - id of the plan to find
*/
private findPlanById(planId: WorkspaceDBScheme['tariffPlanId']): PlanDBScheme | undefined {
return this.plans.find((plan) => plan._id.toString() === planId.toString());
}
/**
* Returns a single workspace with its tariff plan by id
*
* @param id - workspace id
*/
private async getOneWorkspaceWithTariffPlan(id: string): Promise<WorkspaceWithTariffPlan> {
const workspace = await this.workspacesCollection
.find({ _id: new ObjectId(id) })
.project<WorkspaceForLimiter>(WORKSPACE_PROJECTION)
.next();
if (workspace === null) {
throw new NonCriticalError(`Workspace ${id} not found`, {
workspaceId: id,
});
}
const plan = await this.resolvePlan(workspace.tariffPlanId);
if (!plan) {
throw new NonCriticalError(`Tariff plan ${workspace.tariffPlanId?.toString()} not found for workspace ${id}`, {
workspaceId: id,
});
}
return {
...workspace,
tariffPlan: plan,
};
}
/**
* Yields all workspaces with their tariff plans one by one
*/
private async * yieldWorkspacesWithTariffPlans(): AsyncGenerator<WorkspaceWithTariffPlan> {
const cursor = this.workspacesCollection
.find({})
.project<WorkspaceForLimiter>(WORKSPACE_PROJECTION);
for await (const workspace of cursor) {
const plan = await this.resolvePlan(workspace.tariffPlanId);
if (!plan) {
HawkCatcher.send(
new Error(`[Limiter] Tariff plan not found for workspace`),
{
workspaceId: workspace._id.toString(),
tariffPlanId: workspace.tariffPlanId?.toString(),
}
);
continue;
}
yield {
...workspace,
tariffPlan: plan,
};
}
}
}