File size: 1,724 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
50
51
52
53
54
55
56
57
58
59
60
61
import { NextFunction, Request, Response } from "express";
import { profileService } from "../services/profile.service";
import { AppError } from "../utils/appError";

export const profileController = {
  getMe(request: Request, response: Response, next: NextFunction) {
    try {
      if (!request.authUserId) {
        throw new AppError("Unauthorized.", 401);
      }

      const data = profileService.getProfile(request.authUserId);
      response.json({ success: true, data });
    } catch (error) {
      next(error);
    }
  },

  saveMe(request: Request, response: Response, next: NextFunction) {
    try {
      if (!request.authUserId) {
        throw new AppError("Unauthorized.", 401);
      }

      const { age, educationLevel, stream, interests, careerIntent } = request.body;

      if (typeof age !== "number" || age <= 0) {
        throw new AppError("Age must be a valid number.");
      }

      if (typeof educationLevel !== "string" || !educationLevel.trim()) {
        throw new AppError("Education level is required.");
      }

      if (typeof stream !== "string" || !stream.trim()) {
        throw new AppError("Stream is required.");
      }

      if (!Array.isArray(interests) || !interests.length) {
        throw new AppError("At least one interest is required.");
      }

      if (!["confused", "exploring", "switching"].includes(careerIntent)) {
        throw new AppError("Career intent is invalid.");
      }

      const data = profileService.saveProfile(request.authUserId, {
        age,
        educationLevel,
        stream,
        interests,
        careerIntent,
      });

      response.json({ success: true, data });
    } catch (error) {
      next(error);
    }
  },
};