user.model.ts 926 Bytes
Newer Older
1
import { model, Schema, Types, version } from "mongoose";
Yoon, Daeki's avatar
Yoon, Daeki committed
2
3
4
5
6
7
8
9
10
11
12
13
14

export interface IUser {
  email: string;
  name?: string;
  password: string;
  role?: Types.ObjectId;
}

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

15
16
17
18
19
const schema = new Schema<IUser>(
  {
    email: {
      type: String, //mongoose type인 String으로 일반적인 string과는 겉으로는 대문자 차이
      rquired: true,
Kim, MinGyu's avatar
Kim, MinGyu committed
20
      unique: true,
21
22
23
24
25
      validate: [validateEmail, "이메일을 입력해주세요"],
    },
    name: { type: String },
    password: { type: String, required: true, select: false },
    role: { type: Schema.Types.ObjectId, ref: "Role" },
Yoon, Daeki's avatar
Yoon, Daeki committed
26
27
  },

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
export default model<IUser>("User", schema);