2025-08-25 13:37:14 -07:00
|
|
|
import { getAccountIdForRequest } from "../../services/loginService.ts";
|
|
|
|
|
import { getPersonalRooms } from "../../services/personalRoomsService.ts";
|
2025-08-24 21:41:20 -07:00
|
|
|
import type { RequestHandler } from "express";
|
2025-07-22 07:34:46 -07:00
|
|
|
|
|
|
|
|
export const apartmentController: RequestHandler = async (req, res) => {
|
|
|
|
|
const accountId = await getAccountIdForRequest(req);
|
|
|
|
|
const personalRooms = await getPersonalRooms(accountId, "Apartment");
|
|
|
|
|
const response: IApartmentResponse = {};
|
|
|
|
|
if (req.query.backdrop !== undefined) {
|
|
|
|
|
response.NewBackdropItem = personalRooms.Apartment.VideoWallBackdrop = req.query.backdrop as string;
|
|
|
|
|
}
|
|
|
|
|
if (req.query.soundscape !== undefined) {
|
|
|
|
|
response.NewSoundscapeItem = personalRooms.Apartment.Soundscape = req.query.soundscape as string;
|
|
|
|
|
}
|
|
|
|
|
await personalRooms.save();
|
|
|
|
|
res.json(response);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
interface IApartmentResponse {
|
|
|
|
|
NewBackdropItem?: string;
|
|
|
|
|
NewSoundscapeItem?: string;
|
|
|
|
|
}
|