1
1
const bcrypt = require ( "bcryptjs" ) ;
2
2
const jwt = require ( "jsonwebtoken" ) ;
3
3
const User = require ( "../models/user" ) ;
4
- // const {
5
- // invalidDataError,
6
- // authenticationError,
7
- // notFoundError,
8
- // defaultError,
9
- // conflictError,
10
- // } = require("../utils/errors");
11
4
const { JWT_SECRET } = require ( "../utils/config" ) ;
12
5
const BadRequestError = require ( "../errors/bad-request-err" ) ;
13
6
const UnauthorizedError = require ( "../errors/unauthorized-err" ) ;
@@ -22,22 +15,13 @@ const getCurrentUser = (req, res, next) => {
22
15
console . log ( err . name ) ;
23
16
if ( err . name === "CastError" ) {
24
17
next ( new BadRequestError ( "Bad Request! Invalid data passed" ) ) ;
25
- // return res
26
- // .status(invalidDataError)
27
- // .send({ message: "Bad Request! Invalid data passed" });
28
18
} else if ( err . name === "DocumentNotFoundError" ) {
29
19
next (
30
20
new NotFoundError ( " The request was sent to a non-existent address" )
31
21
) ;
32
- // return res
33
- // .status(notFoundError)
34
- // .send({ message: " The request was sent to a non-existent address" });
35
22
} else {
36
23
next ( err ) ;
37
24
}
38
- // return res
39
- // .status(defaultError)
40
- // .send({ message: "An error has occurred on the server" });
41
25
} ) ;
42
26
} ;
43
27
@@ -46,9 +30,6 @@ const createUser = (req, res, next) => {
46
30
47
31
if ( ! email ) {
48
32
next ( new BadRequestError ( "Email or Password is required!" ) ) ;
49
- // return res
50
- // .status(invalidDataError)
51
- // .send({ message: "Email or Password is required!" });
52
33
}
53
34
54
35
return User . findOne ( { email } )
@@ -72,20 +53,11 @@ const createUser = (req, res, next) => {
72
53
console . error ( err ) ;
73
54
if ( err . code === 11000 ) {
74
55
next ( new ConflictError ( "The email already exists!" ) ) ;
75
- // return res
76
- // .status(conflictError)
77
- // .send({ message: "The email already exists!" });
78
56
} else if ( err . name === "ValidationError" ) {
79
57
next ( new BadRequestError ( "Bad Request! Invalid data passed" ) ) ;
80
- // return res
81
- // .status(invalidDataError)
82
- // .send({ message: "Bad Request! Invalid data passed" });
83
58
} else {
84
59
next ( err ) ;
85
60
}
86
- // return res
87
- // .status(defaultError)
88
- // .send({ message: "An error has occurred on the server" });
89
61
} ) ;
90
62
} ;
91
63
@@ -102,27 +74,15 @@ const updateUser = (req, res, next) => {
102
74
console . log ( err . name ) ;
103
75
if ( err . name === "ValidationError" ) {
104
76
next ( new BadRequestError ( "Bad Request! Invalid data passed" ) ) ;
105
- // return res
106
- // .status(invalidDataError)
107
- // .send({ message: "Bad Request! Invalid data passed" });
108
77
} else if ( err . name === "CastError" ) {
109
78
next ( new BadRequestError ( "Bad Request! Invalid data passed" ) ) ;
110
- // return res
111
- // .status(invalidDataError)
112
- // .send({ message: "Bad Request! Invalid data passed" });
113
79
} else if ( err . name === "DocumentNotFoundError" ) {
114
80
next (
115
81
new NotFoundError ( " The request was sent to a non-existent address" )
116
82
) ;
117
- // return res
118
- // .status(notFoundError)
119
- // .send({ message: " The request was sent to a non-existent address" });
120
83
} else {
121
84
next ( err ) ;
122
85
}
123
- // return res
124
- // .status(defaultError)
125
- // .send({ message: "An error has occurred on the server" });
126
86
} ) ;
127
87
} ;
128
88
@@ -131,31 +91,22 @@ const login = (req, res, next) => {
131
91
132
92
if ( ! email || ! password ) {
133
93
next ( new BadRequestError ( "Email and password are required" ) ) ;
134
- // return res
135
- // .status(invalidDataError)
136
- // .send({ message: "Email and password are required" });
137
94
}
138
95
139
96
return User . findUserByCredentials ( email , password )
140
97
. then ( ( user ) => {
141
98
const token = jwt . sign ( { _id : user . _id } , JWT_SECRET , {
142
99
expiresIn : "7d" ,
143
100
} ) ;
144
- res . send ( { user , token } ) ;
101
+ res . send ( { token } ) ;
145
102
} )
146
103
. catch ( ( err ) => {
147
104
console . error ( err ) ;
148
105
if ( err . message === "Incorrect email or password" ) {
149
106
next ( new UnauthorizedError ( "Incorrect email or password!" ) ) ;
150
- // return res
151
- // .status(authenticationError)
152
- // .send({ message: "Incorrect email or password!" });
153
107
} else {
154
108
next ( err ) ;
155
109
}
156
- // return res
157
- // .status(defaultError)
158
- // .send({ message: "An error has occurred on the server" });
159
110
} ) ;
160
111
} ;
161
112
0 commit comments