user.model.ts 989 Bytes
Newer Older
Yoon, Daeki's avatar
Yoon, Daeki committed
1
import { model, Schema, Types } from "mongoose";
Yoon, Daeki's avatar
Yoon, Daeki committed
2
3
4
5
6
7

export interface IUser {
  email: string;
  name?: string;
  password: string;
  role?: Types.ObjectId;
Kim, MinGyu's avatar
Kim, MinGyu committed
8
  fileInfo?: Types.ObjectId;
Yoon, Daeki's avatar
Yoon, Daeki committed
9
10
11
12
13
14
15
}

const validateEmail = (email: string) => {
  const re = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/;
  return re.test(email);
};

16
17
18
19
20
21
22
23
24
const schema = new Schema<IUser>(
  {
    email: {
      type: String, //mongoose type인 String으로 일반적인 string과는 겉으로는 대문자 차이
      rquired: true,
      unique: true,
      validate: [validateEmail, "이메일을 입력해주세요"],
    },
    name: { type: String },
Kim, MinGyu's avatar
Kim, MinGyu committed
25
    fileInfo: { type: Schema.Types.ObjectId, ref: "FileInfo" },
26
27
    password: { type: String, required: true, select: false },
    role: { type: Schema.Types.ObjectId, ref: "Role" },
Yoon, Daeki's avatar
Yoon, Daeki committed
28
  },
29
30
31
32
33
34
35
36
37
  {
    toJSON: {
      versionKey: false,
      transform(doc, ret, options) {
        delete ret.password;
      },
    },
  }
);
Yoon, Daeki's avatar
Yoon, Daeki committed
38
39

export default model<IUser>("User", schema);