-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdate.ts
More file actions
132 lines (113 loc) · 3.79 KB
/
Copy pathupdate.ts
File metadata and controls
132 lines (113 loc) · 3.79 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
import { onDocumentUpdated } from "firebase-functions/v2/firestore";
import * as admin from "firebase-admin";
import * as logger from "firebase-functions/logger";
import { normalizeError } from "../common/error";
const LOCATION = "asia-northeast3";
const BATCH_SIZE = 200;
export const syncTodoNotificationCategory = onDocumentUpdated({
maxInstances: 1,
document: "users/{userId}/todoLists/{todoId}",
region: LOCATION
},
async (event) => {
const beforeData = event.data?.before.data();
const afterData = event.data?.after.data();
const userId = event.params.userId;
const todoId = event.params.todoId;
const beforeCategory = typeof beforeData?.category === "string" ? beforeData.category.trim() : "";
const afterCategory = typeof afterData?.category === "string" ? afterData.category.trim() : "";
if (!beforeCategory || !afterCategory || beforeCategory == afterCategory) {
return;
}
try {
await Promise.all([
updateNotifications(userId, todoId, afterCategory),
updateNotificationTasks(userId, todoId, afterCategory)
]);
} catch (error) {
logger.error("todo 카테고리 변경 후 알림 데이터 동기화 실패", {
userId,
todoId,
beforeCategory,
afterCategory,
error: normalizeError(error)
});
throw error;
}
}
);
async function updateNotifications(
userId: string,
todoId: string,
todoCategory: string
): Promise<void> {
await updateNotificationBatch(userId, todoId, todoCategory)
}
async function updateNotificationTasks(
userId: string,
todoId: string,
todoCategory: string
): Promise<void> {
await updateNotificationTaskBatch(userId, todoId, todoCategory)
}
async function updateNotificationBatch(
userId: string,
todoId: string,
todoCategory: string,
lastDocument?:
FirebaseFirestore.QueryDocumentSnapshot<FirebaseFirestore.DocumentData>
): Promise<void> {
let query = admin.firestore()
.collection(`users/${userId}/notifications`)
.where("todoId", "==", todoId)
.orderBy(admin.firestore.FieldPath.documentId())
.limit(BATCH_SIZE);
if (lastDocument) {
query = query.startAfter(lastDocument);
}
const snapshot = await query.get();
if (snapshot.empty) { return; }
const batch = admin.firestore().batch();
snapshot.docs.forEach((document) => {
batch.update(document.ref, { todoCategory });
});
await batch.commit();
if (snapshot.size < BATCH_SIZE) { return; }
await updateNotificationBatch(
userId,
todoId,
todoCategory,
snapshot.docs[snapshot.docs.length - 1]
);
}
async function updateNotificationTaskBatch(
userId: string,
todoId: string,
todoCategory: string,
lastDocument?:
FirebaseFirestore.QueryDocumentSnapshot<FirebaseFirestore.DocumentData>
): Promise<void> {
let query = admin.firestore()
.collection("notificationTasks")
.where("userId", "==", userId)
.where("todoId", "==", todoId)
.orderBy(admin.firestore.FieldPath.documentId())
.limit(BATCH_SIZE);
if (lastDocument) {
query = query.startAfter(lastDocument);
}
const snapshot = await query.get();
if (snapshot.empty) { return; }
const batch = admin.firestore().batch();
snapshot.docs.forEach((document) => {
batch.update(document.ref, { todoCategory });
});
await batch.commit();
if (snapshot.size < BATCH_SIZE) { return; }
await updateNotificationTaskBatch(
userId,
todoId,
todoCategory,
snapshot.docs[snapshot.docs.length - 1]
);
}