forked from Disciplr-Org/Disciplr-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotificationPreferences.ts
More file actions
230 lines (215 loc) · 6.52 KB
/
Copy pathnotificationPreferences.ts
File metadata and controls
230 lines (215 loc) · 6.52 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
import { create } from "zustand";
import { persist } from "zustand/middleware";
import { BoundaryError } from "./boundaryErrors";
import {
getSession,
sessionKey,
type SessionSnapshot,
} from "./sessionBoundary";
import { parseServerPayload, validate } from "./validateMiddleware";
import { isValidQuietTime } from "../utils/quietHours";
export const VALID_FREQUENCIES = ["1", "2", "3", "4"] as const;
export type NotificationFrequency = (typeof VALID_FREQUENCIES)[number];
export const PREFERENCE_DEFAULTS = {
email: true,
push: false,
frequency: "1" as NotificationFrequency,
quietHours: "12:00",
};
export type PreferenceFields = {
email: boolean;
push: boolean;
frequency: string;
quietHours: string;
};
export type NotificationPreferencesState = PreferenceFields & {
ownerKey: string | null;
lastNonce: string | null;
setEmail: (value: boolean) => void;
setPush: (value: boolean) => void;
setFrequency: (value: string) => void;
setQuietHours: (value: string) => void;
reset: () => void;
applyFromServer: (payload: unknown, nonce: string) => void;
};
const ALLOWED_PARTIAL_KEYS = new Set([
"email",
"push",
"frequency",
"quietHours",
"ownerKey",
"lastNonce",
]);
function isFrequency(value: unknown): value is NotificationFrequency {
return (
typeof value === "string" &&
(VALID_FREQUENCIES as readonly string[]).includes(value)
);
}
export function sanitizePreferenceFields(
input: unknown,
): PreferenceFields | null {
if (!input || typeof input !== "object") return null;
const rec = input as Record<string, unknown>;
if (typeof rec.email !== "boolean") return null;
if (typeof rec.push !== "boolean") return null;
if (!isFrequency(rec.frequency)) return null;
if (typeof rec.quietHours !== "string" || !isValidQuietTime(rec.quietHours)) {
return null;
}
return {
email: rec.email,
push: rec.push,
frequency: rec.frequency,
quietHours: rec.quietHours,
};
}
function assertOwnerMatches(session: SessionSnapshot, ownerKey: string | null) {
if (!session.address) return;
const live = sessionKey(session);
if (ownerKey && ownerKey !== live) {
throw new BoundaryError(
"UNAUTHORIZED",
"Preference state is owned by a different wallet session.",
{ ownerKey, live },
);
}
}
function validatePrefsPartial({
current,
next,
session,
}: {
current: NotificationPreferencesState;
next: NotificationPreferencesState | Partial<NotificationPreferencesState>;
session: SessionSnapshot;
}): Partial<NotificationPreferencesState> {
const partial = next as Partial<NotificationPreferencesState>;
for (const key of Object.keys(partial)) {
if (!ALLOWED_PARTIAL_KEYS.has(key)) {
throw new BoundaryError(
"TAMPERED_INPUT",
`Unexpected preference field "${key}".`,
);
}
}
if ("email" in partial && typeof partial.email !== "boolean") {
throw new BoundaryError("TAMPERED_INPUT", "email must be a boolean.");
}
if ("push" in partial && typeof partial.push !== "boolean") {
throw new BoundaryError("TAMPERED_INPUT", "push must be a boolean.");
}
if ("frequency" in partial && !isFrequency(partial.frequency)) {
throw new BoundaryError(
"TAMPERED_INPUT",
"frequency must be one of 1, 2, 3, 4.",
);
}
if (
"quietHours" in partial &&
(typeof partial.quietHours !== "string" ||
!isValidQuietTime(partial.quietHours))
) {
throw new BoundaryError(
"TAMPERED_INPUT",
"quietHours must be a valid HH:MM time.",
);
}
assertOwnerMatches(session, current.ownerKey);
const liveKey = session.address ? sessionKey(session) : current.ownerKey;
return {
...partial,
ownerKey: liveKey ?? current.ownerKey,
};
}
export const useNotificationPreferences = create<NotificationPreferencesState>()(
persist(
validate(
(set, get) => ({
...PREFERENCE_DEFAULTS,
ownerKey: null,
lastNonce: null,
setEmail: (value) => set({ email: value }),
setPush: (value) => set({ push: value }),
setFrequency: (value) => set({ frequency: value }),
setQuietHours: (value) => set({ quietHours: value }),
reset: () =>
set({
...PREFERENCE_DEFAULTS,
ownerKey: getSession().address ? sessionKey() : get().ownerKey,
lastNonce: null,
}),
applyFromServer: (payload, nonce) => {
if (typeof nonce !== "string" || nonce.length === 0) {
throw new BoundaryError(
"TAMPERED_INPUT",
"Server apply requires a nonce.",
);
}
if (get().lastNonce === nonce) {
throw new BoundaryError(
"REPLAY",
"Preference payload nonce was already applied.",
);
}
const parsed = parseServerPayload(
payload,
sanitizePreferenceFields,
"notification-preferences",
);
const session = getSession();
if (!session.address || !session.network) {
throw new BoundaryError(
"DISCONNECTED_WALLET",
"Cannot apply server preferences without a connected wallet.",
);
}
set({
...parsed,
ownerKey: sessionKey(session),
lastNonce: nonce,
});
},
}),
{
name: "notification-preferences",
validate: validatePrefsPartial,
},
),
{
name: "notification-preferences",
partialize: (state) => ({
email: state.email,
push: state.push,
frequency: state.frequency,
quietHours: state.quietHours,
ownerKey: state.ownerKey,
lastNonce: state.lastNonce,
}),
merge: (persisted, current) => {
if (!persisted || typeof persisted !== "object") return current;
const rec = persisted as Record<string, unknown>;
const fields = sanitizePreferenceFields(rec);
if (!fields) return current;
const persistedOwner =
typeof rec.ownerKey === "string" ? rec.ownerKey : null;
const session = getSession();
if (session.address) {
const live = sessionKey(session);
if (persistedOwner && persistedOwner !== live) {
return current;
}
}
return {
...current,
...fields,
ownerKey: persistedOwner ?? current.ownerKey,
lastNonce:
typeof rec.lastNonce === "string"
? rec.lastNonce
: current.lastNonce,
};
},
},
),
);