auth.ctrl.js
3.98 KB
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
186
187
//회원가입, 로그인 및 로그아웃에 관한 api
const User = require('../../models/user');
const Profile = require('../../models/profile');
const DoctorInfo = require('../../models/doctorInfo');
const Joi = require('joi');
const jwt = require('jsonwebtoken');
exports.register = async(ctx) => {
const {
userId,
password,
passwordCheck,
userNm,
userAge,
contact,
} = ctx.request.body;
const schema = Joi.object().keys({
userId : Joi.string().email().max(50).required(),
password : Joi.string().required(),
passwordCheck : Joi.string().required(),
})
const result = schema.validate(ctx.request.body);
if(result.error || password !== passwordCheck) {
ctx.status = 400;
return;
}
const existUser = await User.findByUserId(userId);
if(existUser) {
ctx.status = 409;
return;
}
const user = new User({
userId,
userTypeCd : 'NORMAL',
useYn : 'Y',
});
await user.setPassword(password);
await user.save();
const profile = new Profile({
userId,
userNm,
userAge,
contact,
});
await profile.save();
ctx.status = 201;
};
exports.doctorRegister = async ctx => {
const {
userId,
password,
passwordCheck,
info,
} = ctx.request.body;
const schema = Joi.object().keys({
userId : Joi.string().email().max(50).required(),
password : Joi.string().required(),
passwordCheck : Joi.string().required(),
})
const result = schema.validate(ctx.request.body);
if(result.error || password !== passwordCheck) {
ctx.status = 400;
return;
}
const existUser = await User.findByUserId(userId);
const existDoctorInfo = await DoctorInfo.findByDoctorId(userId);
if(existUser || existDoctorInfo) {
ctx.status = 409;
return;
}
const doctor = new User({
userId,
userTypeCd : 'DOCTOR',
useYn : 'W',
});
await doctor.setPassword(password);
doctor.save();
const doctorInfo = new DoctorInfo({
doctorId : userId,
info,
useYn : 'W',
});
doctorInfo.save();
ctx.status = 201;
}
exports.login = async(ctx) => {
const { userId, password } = ctx.request.body;
const schema = Joi.object().keys({
userId : Joi.string().email().max(50).required(),
password : Joi.string().required()
})
const result = schema.validate(ctx.request.body);
if(result.error) {
ctx.status = 400;
return;
}
const user = await User.findByUserId(userId);
if(!user || !user.userTypeCd) {
ctx.stauts = 401;
return;
}
const isPasswordTrue = await user.checkPassword(password);
if(!isPasswordTrue) {
ctx.status = 401;
return;
}
if(user.useYn !== 'Y') {
ctx.status = 403;
return;
}
const token = await user.generateToken();
ctx.cookies.set('access_token', token, {
httpOnly : true,
maxAge : 1000 * 60 * 60 * 24 * 30
});
ctx.status = 200;
ctx.body = {
userId,
token
};
};
exports.logout = async(ctx) => {
ctx.cookies.set('access_token', null, {
httpOnly : true,
maxAge : 0
});
ctx.status = 204;
};
exports.verifyToken = async(ctx) => {
const token = ctx.req.headers.authorization;
if(!token || !token.length) {
ctx.status = 400;
ctx.body = {
name : 'Token Not Exist',
message : 'Not Exist Token',
expiredAt : null,
};
return;
}
await jwt.verify(token, process.env.JWT_SECRET, (err, decoded) => {
if(err) {
ctx.status = 400;
ctx.body = err;
return;
}
});
ctx.status = 200;
ctx.body = {
name : 'Token Exist',
message : 'Token Work',
expiredAt : null,
};
};