user.db.ts 2.04 KB
Newer Older
1
import bcrypt from "bcryptjs";
2
import { ObjectId } from "mongoose";
Yoon, Daeki's avatar
Yoon, Daeki committed
3
import { IUser, Role, Post, User } from "../models";
Yoon, Daeki's avatar
Yoon, Daeki committed
4
5

export const createUser = async (user: IUser) => {
6
7
  // 비밀번호 암호화
  const hash = await bcrypt.hash(user.password, 10);
Yoon, Daeki's avatar
Yoon, Daeki committed
8
9
10
11
12
13
14
15
  // 사용자 역할 추가: 기본값은 "user"
  let userRole = null;
  if (user.role) {
    userRole = await Role.findById(user.role);
  } else {
    userRole = await Role.findOne({ name: "user" });
  }
  const newUser = new User({
Lee Soobeom's avatar
Lee Soobeom committed
16
17
    email: user.email,
    password: hash,
Yoon, Daeki's avatar
Yoon, Daeki committed
18
19
    role: userRole,
    isNew: true,
Lee Soobeom's avatar
Lee Soobeom committed
20
  });
Yoon, Daeki's avatar
Yoon, Daeki committed
21
22
  const retUser = await newUser.save();
  return retUser;
Yoon, Daeki's avatar
Yoon, Daeki committed
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
};

export const findUserByEmail = async (
  email: string,
  includePassword: boolean = false
) => {
  let user;
  if (includePassword) {
    user = await User.findOne({ email }).select("+password");
  } else {
    user = await User.findOne({ email });
  }
  return user;
};

Lee Soobeom's avatar
Lee Soobeom committed
38
39
40
41
export const findUserByPostId = async (postId: string) => {
  const post = await Post.findOne({ _id: postId }).populate("user");
  return post?.user;
};
Yoon, Daeki's avatar
Yoon, Daeki committed
42
43
44
45
export const getProfile = async (userId: string) => {
  const profile = await User.findById(userId);
  return profile; //이름 수정
};
Lee Soobeom's avatar
Lee Soobeom committed
46

Yoon, Daeki's avatar
Yoon, Daeki committed
47
48
49
50
51
52
53
54
55
56
57
58
59
export const getUsers = async () => {
  const users = await User.find({});
  return users;
};

export const isUser = async (email: string) => {
  const user = await User.findOne({ email });
  if (user) {
    return true;
  } else {
    return false;
  }
};
Kim, MinGyu's avatar
Kim, MinGyu committed
60

Yoon, Daeki's avatar
Yoon, Daeki committed
61
62
63
64
65
66
67
export const isValidUserId = async (userId: string) => {
  const user = await User.findById(userId);
  if (user) {
    return true;
  } else {
    return false;
  }
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
};

export const postPicture = (
  userId: ObjectId,
  originalfilename: string | null,
  newfilename: string,
  picturepath: string
) => {
  User.findByIdAndUpdate(
    userId,
    {
      originalfilename: originalfilename,
      newfilename: newfilename,
      picturepath: picturepath,
    },
    function (err: any, docs: any) {
      if (err) {
        console.log(err);
      } else {
        console.log("Updated User : ", docs);
      }
    }
  );
};