Spaces:
Running
Running
File size: 4,261 Bytes
c01955c | 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 | import Interview from "../models/interviews.models.js";
import { expressRepre } from "@vashuthegreat/vexpress";
import ApiError from "../utils/ApiError.js";
import asyncHandler from "../utils/asyncHandler.js";
import ApiResponse from "../utils/ApiResponse.js";
// import { Query } from "mongoose";
import { Request, Response } from "express";
import logger from "../logger/create.logger.js";
export const createInterview = expressRepre(
{
summary: "schedule an interview",
body: {
companyName: "VTech",
topic: "AIML",
job_Role: "AI Engineer",
time: "2026-01-14 10:00:00",
status: "pending"
},
response: "interview scheduled"
},
asyncHandler(async (req:Request, res:Response) => {
const { companyName, topic, job_Role, time, status } = req.body;
const user_id = req.user?._id;
logger.info(`Scheduling interview for user ${user_id} at ${companyName}`);
if (!companyName || !topic || !job_Role || !time || !status) {
throw new ApiError(400, "All fields are required");
}
const interview = await Interview.findOne({
user_id,
companyName,
topic,
job_Role,
time
});
if (interview) {
logger.info("Interview already exists");
return res
.status(200)
.json(new ApiResponse(200, interview, "Interview already exists"));
}
const newInterview = await Interview.create({
user_id,
companyName,
topic,
job_Role,
time,
status
});
logger.info(`Interview created successfully: ${newInterview._id}`);
return res
.status(201)
.json(new ApiResponse(201, newInterview, "Interview created successfully"));
})
);
export const updateInterviewStatus = expressRepre(
{
summary: "update interview status",
body: {
id: "69671fa2d697bab6f0176ccc",
status: "live"
},
response: "interview updated"
},
asyncHandler(async (req, res) => {
const { id, status } = req.body;
logger.info(`Updating interview ${id} status to ${status}`);
if (!id || !status) {
throw new ApiError(400, "All fields are required");
}
const interview = await Interview.findByIdAndUpdate(
id,
{ status },
{ new: true }
);
if (!interview) {
throw new ApiError(404, "Interview not found");
}
res
.status(200)
.json(new ApiResponse(200, interview, "Interview updated successfully"));
})
);
export const getUserInterviews = expressRepre(
{
summary: "get user Interviews",
response: "interview fetched"
},
asyncHandler(async (req, res) => {
const user = req.user;
if (!user) {
throw new ApiError(400, "user required");
}
logger.info(`Fetching interviews for user: ${user._id}`);
const interview = await Interview.find(
{user_id:user?._id}
);
if (!interview) {
throw new ApiError(404, "Interviews not found");
}
res
.status(200)
.json(new ApiResponse(200, interview, "Interview fetched successfully"));
})
);
export const getInterviewById = expressRepre(
{
summary: "get interview by id",
query: {
id: "69671fa2d697bab6f0176ccc",
},
response: "interview "
},
asyncHandler(async (req, res) => {
const { id } = req.query;
logger.info(`Fetching interview by id: ${id}`);
if (!id ) {
throw new ApiError(400, "All fields are required");
}
const interview = await Interview.findById(id
);
if (!interview) {
throw new ApiError(404, "Interview not found");
}
res
.status(200)
.json(new ApiResponse(200, interview, "Interview fetched successfully"));
})
);
export const deleteInterview = expressRepre(
{
summary: "delete an interview",
params: {
id: "69671fa2d697bab6f0176ccc"
},
response: "interview deleted"
},
asyncHandler(async (req, res) => {
const { id } = req.params;
const user_id = req.user?._id;
logger.info(`Deleting interview ${id} for user ${user_id}`);
const interview = await Interview.findOneAndDelete({ _id: id, user_id });
if (!interview) {
throw new ApiError(404, "Interview not found or unauthorized");
}
res
.status(200)
.json(new ApiResponse(200, null, "Interview deleted successfully"));
})
);
|