Spaces:
Sleeping
Sleeping
File size: 1,425 Bytes
18b71c5 | 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 | import { NextFunction, Request, Response } from "express";
import { chatService } from "../services/chat.service";
import { AppError } from "../utils/appError";
export const chatController = {
createSession(request: Request, response: Response, next: NextFunction) {
try {
if (!request.authUserId) {
throw new AppError("Unauthorized.", 401);
}
const data = chatService.createSession(request.authUserId);
response.status(201).json({ success: true, data });
} catch (error) {
next(error);
}
},
getCurrent(request: Request, response: Response, next: NextFunction) {
try {
if (!request.authUserId) {
throw new AppError("Unauthorized.", 401);
}
const data = chatService.getCurrentSession(request.authUserId);
response.json({ success: true, data });
} catch (error) {
next(error);
}
},
async addMessage(request: Request, response: Response, next: NextFunction) {
try {
if (!request.authUserId) {
throw new AppError("Unauthorized.", 401);
}
if (typeof request.body.message !== "string" || !request.body.message.trim()) {
throw new AppError("Message is required.");
}
const data = await chatService.addMessage(request.authUserId, request.body.message);
response.status(201).json({ success: true, data });
} catch (error) {
next(error);
}
},
};
|