-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrouters.ts
More file actions
421 lines (393 loc) · 16 KB
/
routers.ts
File metadata and controls
421 lines (393 loc) · 16 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
415
416
417
418
419
420
421
import { COOKIE_NAME } from "@shared/const";
import { getSessionCookieOptions } from "./_core/cookies";
import { systemRouter } from "./_core/systemRouter";
import { aiRouter } from "./aiRouter";
import { publicProcedure, protectedProcedure, router } from "./_core/trpc";
import {
getAppointments,
getAppointmentById,
createAppointment,
updateAppointment,
getAvailabilitySlots,
createAvailabilitySlot,
updateAvailabilitySlot,
getPortfolioImages,
createPortfolioImage,
updatePortfolioImage,
deletePortfolioImage,
getSiteContent,
getAllSiteContent,
upsertSiteContent,
createPayment,
getPaymentByAppointmentId,
getServices,
createService,
updateService,
getLoyaltyStamps,
addLoyaltyStamp,
getInventory,
updateInventory,
getVipWhitelist,
addToVipWhitelist,
getBlockedDates,
addBlockedDate,
getUserPhotos,
createUserPhoto,
getUserByOpenId,
updateUserSyncToken,
getAdvertisements,
getAllAdvertisements,
createAdvertisement,
updateAdvertisement,
trackAdEvent,
getAdPerformance,
getFinancialSettings,
updateFinancialSettings,
updateUserVip,
getDepositLogs,
createDepositLog,
updateDepositLog,
getDb,
} from "./db";
import { users } from "../drizzle/schema";
import { createGoogleCalendarEvent } from "./googleCalendar";
import { nanoid } from "nanoid";
export const appRouter = router({
system: systemRouter,
ai: aiRouter,
auth: router({
me: publicProcedure.query(opts => opts.ctx.user),
logout: publicProcedure.mutation(({ ctx }) => {
const cookieOptions = getSessionCookieOptions(ctx.req);
ctx.res.clearCookie(COOKIE_NAME, { ...cookieOptions, maxAge: -1 });
return {
success: true,
} as const;
}),
}),
// Appointments router
appointments: router({
list: publicProcedure.query(async () => {
return await getAppointments();
}),
getById: publicProcedure.input((val: unknown) => {
if (typeof val === "number") return val;
throw new Error("Invalid input");
}).query(async ({ input }) => {
return await getAppointmentById(input);
}),
create: publicProcedure.input((val: unknown) => val as any).mutation(async ({ input }) => {
return await createAppointment(input);
}),
update: protectedProcedure.input((val: unknown) => val as any).mutation(async ({ input, ctx }: any) => {
if (ctx.user?.role !== "admin") throw new Error("Unauthorized");
const { id, ...data } = input;
// If status is being updated to 'confirmed', sync to Google Calendar
if (data.status === 'confirmed') {
const apt = await getAppointmentById(id);
if (apt) await createGoogleCalendarEvent(apt);
}
// If status is being updated to 'completed', handle loyalty and inventory
if (data.status === 'completed') {
const apt = await getAppointmentById(id);
if (apt && apt.status !== 'completed') {
// 1. Add loyalty stamp
const user = await getUserByOpenId(apt.customerEmail); // Simplified lookup
if (user) await addLoyaltyStamp(user.id);
// 2. Deduct inventory based on service type
const items = await getInventory();
for (const item of items) {
let deduction = 0;
if (apt.notes?.includes("FULL SET") && item.itemName.toLowerCase().includes("tips")) deduction = 1;
if (item.itemName.toLowerCase().includes("monomer")) deduction = 1;
if (item.itemName.toLowerCase().includes("top coat")) deduction = 1;
if (deduction > 0 && item.quantity >= deduction) {
await updateInventory(item.id, { quantity: item.quantity - deduction });
}
}
}
}
return await updateAppointment(id, data);
}),
}),
// Availability router
availability: router({
list: publicProcedure.query(async () => {
return await getAvailabilitySlots();
}),
create: protectedProcedure.input((val: unknown) => val as any).mutation(async ({ input, ctx }: any) => {
if (ctx.user?.role !== "admin") throw new Error("Unauthorized");
return await createAvailabilitySlot(input);
}),
update: protectedProcedure.input((val: unknown) => val as any).mutation(async ({ input, ctx }: any) => {
if (ctx.user?.role !== "admin") throw new Error("Unauthorized");
const { id, ...data } = input;
return await updateAvailabilitySlot(id, data);
}),
}),
// Portfolio router
portfolio: router({
list: publicProcedure.query(async () => {
return await getPortfolioImages();
}),
create: protectedProcedure.input((val: unknown) => val as any).mutation(async ({ input, ctx }: any) => {
if (ctx.user?.role !== "admin") throw new Error("Unauthorized");
return await createPortfolioImage(input);
}),
update: protectedProcedure.input((val: unknown) => val as any).mutation(async ({ input, ctx }: any) => {
if (ctx.user?.role !== "admin") throw new Error("Unauthorized");
const { id, ...data } = input;
return await updatePortfolioImage(id, data);
}),
delete: protectedProcedure.input((val: unknown) => {
if (typeof val === "number") return val;
throw new Error("Invalid input");
}).mutation(async ({ input, ctx }: any) => {
if (ctx.user?.role !== "admin") throw new Error("Unauthorized");
return await deletePortfolioImage(input);
}),
}),
// Site content router
content: router({
get: publicProcedure.input((val: unknown) => {
if (typeof val === "string") return val;
throw new Error("Invalid input");
}).query(async ({ input }) => {
return await getSiteContent(input);
}),
getAll: publicProcedure.query(async () => {
return await getAllSiteContent();
}),
upsert: protectedProcedure.input((val: unknown) => val as any).mutation(async ({ input, ctx }: any) => {
if (ctx.user?.role !== "admin") throw new Error("Unauthorized");
const { key, value } = input;
return await upsertSiteContent(key, value);
}),
}),
// Payments router
payments: router({
create: publicProcedure.input((val: unknown) => val as any).mutation(async ({ input }) => {
return await createPayment(input);
}),
getByAppointmentId: publicProcedure.input((val: unknown) => {
if (typeof val === "number") return val;
throw new Error("Invalid input");
}).query(async ({ input }) => {
return await getPaymentByAppointmentId(input);
}),
}),
// Services router
services: router({
list: publicProcedure.query(async () => {
return await getServices();
}),
create: protectedProcedure.input((val: unknown) => val as any).mutation(async ({ input, ctx }: any) => {
if (ctx.user?.role !== "admin") throw new Error("Unauthorized");
return await createService(input);
}),
update: protectedProcedure.input((val: unknown) => val as any).mutation(async ({ input, ctx }: any) => {
if (ctx.user?.role !== "admin") throw new Error("Unauthorized");
const { id, ...data } = input;
return await updateService(id, data);
}),
}),
// Loyalty router
loyalty: router({
getStamps: protectedProcedure.query(async ({ ctx }) => {
return await getLoyaltyStamps(ctx.user.id);
}),
addStamp: protectedProcedure.input((val: unknown) => {
if (typeof val === "number") return val;
throw new Error("Invalid input");
}).mutation(async ({ input, ctx }: any) => {
if (ctx.user?.role !== "admin") throw new Error("Unauthorized");
return await addLoyaltyStamp(input);
}),
}),
// Rental router
rental: router({
listSpaces: protectedProcedure.query(async ({ ctx }: any) => {
if (ctx.user?.role !== "admin") throw new Error("Unauthorized");
return await getRentalSpaces();
}),
createSpace: protectedProcedure.input((val: unknown) => val as any).mutation(async ({ input, ctx }: any) => {
if (ctx.user?.role !== "admin") throw new Error("Unauthorized");
return await createRentalSpace(input);
}),
updateSpace: protectedProcedure.input((val: unknown) => val as any).mutation(async ({ input, ctx }: any) => {
if (ctx.user?.role !== "admin") throw new Error("Unauthorized");
const { id, ...data } = input;
return await updateRentalSpace(id, data);
}),
listBookings: protectedProcedure.query(async ({ ctx }: any) => {
if (ctx.user?.role !== "admin") throw new Error("Unauthorized");
return await getRentalBookings();
}),
createBooking: protectedProcedure.input((val: unknown) => val as any).mutation(async ({ input, ctx }: any) => {
// Non-admin users (other techs) can book, but we'll use protectedProcedure for now
// A more complex system would check for a 'tech' role
return await createRentalBooking(input);
}),
updateBooking: protectedProcedure.input((val: unknown) => val as any).mutation(async ({ input, ctx }: any) => {
if (ctx.user?.role !== "admin") throw new Error("Unauthorized");
const { id, ...data } = input;
return await updateRentalBooking(id, data);
}),
}),
// Inventory router
inventory: router({
list: protectedProcedure.query(async ({ ctx }: any) => {
if (ctx.user?.role !== "admin") throw new Error("Unauthorized");
return await getInventory();
}),
update: protectedProcedure.input((val: unknown) => val as any).mutation(async ({ input, ctx }: any) => {
if (ctx.user?.role !== "admin") throw new Error("Unauthorized");
const { id, quantity, restockThreshold } = input;
return await updateInventory(id, { quantity, restockThreshold });
}),
}),
// VIP & Blocked Dates router
admin: router({
getVipWhitelist: protectedProcedure.query(async ({ ctx }: any) => {
if (ctx.user?.role !== "admin") throw new Error("Unauthorized");
return await getVipWhitelist();
}),
addToVipWhitelist: protectedProcedure.input((val: unknown) => val as any).mutation(async ({ input, ctx }: any) => {
if (ctx.user?.role !== "admin") throw new Error("Unauthorized");
return await addToVipWhitelist(input.email, input.notes);
}),
getBlockedDates: publicProcedure.query(async () => {
return await getBlockedDates();
}),
addBlockedDate: protectedProcedure.input((val: unknown) => val as any).mutation(async ({ input, ctx }: any) => {
if (ctx.user?.role !== "admin") throw new Error("Unauthorized");
return await addBlockedDate(new Date(input.date), input.reason);
}),
updateVipScores: protectedProcedure.mutation(async ({ ctx }: any) => {
if (ctx.user?.role !== "admin") throw new Error("Unauthorized");
const appointments = await getAppointments();
const usersList = await getDb().then(db => db!.select().from(users));
const settings = await getFinancialSettings();
for (const user of usersList) {
const userApts = appointments.filter(a => a.customerEmail === user.email && a.status === 'completed');
const lifetimeSpend = userApts.reduce((sum, a: any) => sum + (a.price || 0), 0);
const visitFrequency = userApts.length;
const loyaltyPoints = user.vipScore;
const totalScore = loyaltyPoints + (lifetimeSpend / 10) + (visitFrequency * 5);
let tier: "none" | "silver" | "gold" | "vip" = "none";
if (settings) {
if (totalScore >= settings.vipVipThreshold) tier = "vip";
else if (totalScore >= settings.vipGoldThreshold) tier = "gold";
else if (totalScore >= settings.vipSilverThreshold) tier = "silver";
}
await updateUserVip(user.id, {
vipScore: Math.floor(totalScore),
vipTier: tier,
lifetimeSpend
});
}
return { success: true };
}),
getFinancials: protectedProcedure.query(async ({ ctx }: any) => {
if (ctx.user?.role !== "admin") throw new Error("Unauthorized");
const settings = await getFinancialSettings();
const bookings = await getRentalBookings();
const totalRentalIncome = bookings
.filter(b => b.status === 'paid')
.reduce((sum, b) => sum + b.totalCost, 0);
return {
...settings,
totalRentalIncome,
};
}),
updateFinancials: protectedProcedure.input((val: unknown) => val as any).mutation(async ({ input, ctx }: any) => {
if (ctx.user?.role !== "admin") throw new Error("Unauthorized");
return await updateFinancialSettings(input);
}),
getDepositLogs: protectedProcedure.query(async ({ ctx }: any) => {
if (ctx.user?.role !== "admin") throw new Error("Unauthorized");
return await getDepositLogs();
}),
verifyDeposit: protectedProcedure.input((val: unknown) => val as any).mutation(async ({ input, ctx }: any) => {
if (ctx.user?.role !== "admin") throw new Error("Unauthorized");
const { id, status, appointmentId } = input;
await updateDepositLog(id, { status, matchedAt: new Date() });
if (status === "matched") {
await updateAppointment(appointmentId, { status: "confirmed" });
}
return { success: true };
}),
triggerAutoVerify: protectedProcedure.input((val: unknown) => val as any).mutation(async ({ ctx }: any) => {
if (ctx.user?.role !== "admin") throw new Error("Unauthorized");
const logs = await getDepositLogs();
const pendingLogs = logs.filter(l => l.status === "pending");
const appointments = await getAppointments();
const pendingApts = appointments.filter(a => a.status === "pending");
for (const log of pendingLogs) {
const match = pendingApts.find(a =>
a.customerName.toLowerCase().includes(log.handle.toLowerCase()) &&
Math.abs(new Date(a.createdAt).getTime() - new Date(log.createdAt).getTime()) < 3600000
);
if (match) {
await updateDepositLog(log.id, { status: "matched", appointmentId: match.id, matchedAt: new Date() });
await updateAppointment(match.id, { status: "confirmed" });
}
}
return { success: true };
}),
}),
// Calendar Sync router
calendar: router({
getSyncToken: protectedProcedure.query(async ({ ctx }) => {
if ((ctx.user as any).calendarSyncToken) return (ctx.user as any).calendarSyncToken;
const token = nanoid(32);
await updateUserSyncToken(ctx.user.id, token);
return token;
}),
regenerateToken: protectedProcedure.mutation(async ({ ctx }) => {
const token = nanoid(32);
await updateUserSyncToken(ctx.user.id, token);
return token;
}),
}),
// User Photos router
photos: router({
list: protectedProcedure.query(async ({ ctx }) => {
return await getUserPhotos(ctx.user.id);
}),
upload: protectedProcedure.input((val: unknown) => val as any).mutation(async ({ input, ctx }) => {
return await createUserPhoto({
userId: ctx.user.id,
imageUrl: input.imageUrl,
imageKey: input.imageKey,
});
}),
}),
// Advertisements router
ads: router({
list: publicProcedure.query(async () => {
return await getAdvertisements();
}),
listAll: protectedProcedure.query(async ({ ctx }: any) => {
if (ctx.user?.role !== "admin") throw new Error("Unauthorized");
return await getAllAdvertisements();
}),
create: protectedProcedure.input((val: unknown) => val as any).mutation(async ({ input, ctx }: any) => {
if (ctx.user?.role !== "admin") throw new Error("Unauthorized");
return await createAdvertisement(input);
}),
update: protectedProcedure.input((val: unknown) => val as any).mutation(async ({ input, ctx }: any) => {
if (ctx.user?.role !== "admin") throw new Error("Unauthorized");
const { id, ...data } = input;
return await updateAdvertisement(id, data);
}),
track: publicProcedure.input((val: unknown) => val as any).mutation(async ({ input }) => {
return await trackAdEvent(input);
}),
performance: protectedProcedure.query(async ({ ctx }: any) => {
if (ctx.user?.role !== "admin") throw new Error("Unauthorized");
return await getAdPerformance();
}),
}),
});
export type AppRouter = typeof appRouter;