-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresolver.js
424 lines (370 loc) · 10.4 KB
/
resolver.js
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
import bcrypt from 'bcrypt';
import dotenv from 'dotenv';
import jwt from 'jsonwebtoken';
import mongoose from 'mongoose';
import confirmation from './templates/confirmation.js';
import resetPassword from './templates/resetPassword.js';
import transporter from './nodemailer/transporter.js';
import { ApolloError } from 'apollo-server-core';
// Read the .env file
if (process.env.NODE_ENV !== 'production') {
dotenv.config();
}
// User Modal
const User = mongoose.model('User');
const Quote = mongoose.model('Quote');
// Resolvers
const resolvers = {
Query: {
users: async () => await User.find({}),
user: async (_, { _id }) => await User.findOne({ _id }),
quotes: async (_, { page = 1, pageSize = 10 }) => {
const offset = parseInt(page - 1) * pageSize;
const quotes = await Quote.find({})
.sort({ createdAt: -1 })
.skip(parseInt(offset))
.limit(parseInt(pageSize))
.populate('by', '_id firstName lastName profileImage');
return quotes;
},
quote: async (_, { _id }) =>
await Quote.findById(_id).populate(
'by',
'_id firstName lastName profileImage'
),
myProfile: async (_, __, { userID }) => {
if (!userID) throw new Error('You are not authenticated !');
return await User.findOne({ _id: userID });
},
fetchUsers: async (_, { query }) => {
if (!query) throw new Error('Query not found !');
return await User.find({
$or: [
{ firstName: { $regex: query, $options: 'i' } },
{ lastName: { $regex: query, $options: 'i' } },
{ email: { $regex: query, $options: 'i' } },
],
}).limit(10);
},
},
User: {
quotes: async (parent) => await Quote.find({ by: parent._id }),
},
Mutation: {
signUpUser: async (_, { newUser }) => {
try {
const user = await User.findOne({ email: newUser.email });
// Check if user already exists
if (user) throw new Error('User already exists!');
// Hash the password
const hashedPassword = await bcrypt.hash(newUser?.password, 10);
// Create new user
const newUSerData = await new User({
...newUser,
profileImage: `https://robohash.org/${newUser.firstName.toLowerCase()}?size=300x300`,
password: hashedPassword,
});
// Save the user
const savedUser = await newUSerData.save();
// Create token
const token = jwt.sign(
{ email: newUser.email },
process.env.JWT_SECRET_KEY,
{ expiresIn: '15m' }
);
// Define the email
var mailConfigs = {
from: process.env.SMTP_MAIL,
to: newUser.email,
subject: 'Threads Lite: Email Confirmation',
html: confirmation({
name: newUser.firstName,
link: process.env.CLIENT_URL + '/verify/' + token,
}),
};
// Send the email.
await transporter.sendMail(mailConfigs, (error, info) => {
if (error) {
console.log(error);
} else {
console.log(
'Confirmation email sent successfully: ' +
info.response
);
}
});
return savedUser;
} catch (error) {
console.error('Failed to sign up user');
throw new ApolloError(error);
}
},
signInUser: async (_, { userSignIn }) => {
try {
const user = await User.findOne({ email: userSignIn.email });
// Check if user exists and is verified
if (!user || !user.verified) {
throw new Error(
!user
? 'User does not exists!'
: 'User is not verified!'
);
}
// Compare password
const passMatch = await bcrypt.compare(
userSignIn.password,
user.password
);
// Check if password matches
if (!passMatch) {
throw new Error('Either email or password is incorrect!');
}
// Create token
const token = jwt.sign(
{ userID: user._id },
process.env.JWT_SECRET_KEY
);
// Return the token
return { token };
} catch (error) {
console.error('Failed to sign in user');
throw new ApolloError(error);
}
},
updateUser: async (_, { firstName, lastName, bio }, { userID }) => {
try {
// Check if user is authenticated
if (!userID) {
throw new Error('You are not authenticated');
}
// Check for empty fields
if (!firstName || !bio) {
throw new Error('Please fill all the fields');
}
// Find and update the user
const updatedUser = await User.findByIdAndUpdate(
userID,
{
firstName,
lastName,
bio,
},
{ new: true } // Return the updated document
);
// Check if user exists
if (!updatedUser) {
throw new Error('User does not exist');
}
// Return success message
return 'User updated successfully!';
} catch (error) {
console.error('Failed to update user');
throw new ApolloError(error);
}
},
deleteUserWithQuotes: async (_, { _id }, { userID }) => {
try {
// Check if user is authenticated
if (!userID) {
throw new Error('You are not authenticated');
}
// Find and delete the user
const deletedUser = await User.findByIdAndDelete(_id);
// Check if user exists
if (!deletedUser) {
throw new Error('User does not exist!');
}
// Delete all quotes by the user
await Quote.deleteMany({ by: _id });
// Optionally, you may return the deleted user object or a success message
return {
message: 'User deleted successfully!',
deletedUser,
};
} catch (error) {
console.error('Failed to delete user');
throw new ApolloError(error);
}
},
verifyUser: async (_, { token }) => {
try {
// Check if token is present
if (!token) {
throw new Error('Token not found!');
}
// Verify the token
const { email } = jwt.verify(token, process.env.JWT_SECRET_KEY);
// Find the user verification
const userVerification = await User.findOne({ email });
// Check if user verification exists
if (!userVerification) {
throw new Error('User does not exist!');
}
// Check if user is already verified
const verified = await User.findOne({ email, verified: true });
if (verified) {
throw new Error('User is already verified!');
}
// Update the user to verified and remove the auto-expiration.
await User.findOneAndUpdate(
{ email },
{
verified: true,
$unset: { createdAt: 1 },
}
);
// Optionally, you may return the updated user object or a new token
return 'User verified successfully!';
} catch (error) {
console.error('Failed to verify user');
throw new ApolloError(error);
}
},
resetPassword: async (_, { email }) => {
try {
if (!email) {
throw new Error('Email not found!');
}
// Find the user
const user = await User.findOne({ email });
// Check if user exists
if (!user) throw new Error('User does not exist!');
// Don't send the email if the user is not verified
if (!user.verified) {
throw new Error('User is not verified!');
}
// Create token
const token = jwt.sign(
{ email: user.email },
process.env.JWT_SECRET_KEY,
{ expiresIn: '15m' }
);
// Define the email
var mailConfigs = {
from: process.env.SMTP_MAIL,
to: user.email,
subject: 'Threads Lite: Password Reset',
html: resetPassword({
name: user.firstName,
link: process.env.CLIENT_URL + '/reset/' + token,
}),
};
// Send the email
await transporter.sendMail(mailConfigs, (error, info) => {
if (error) {
console.log(error);
} else {
console.log(
'Password reset email sent successfully: ' +
info.response
);
}
});
return 'Password reset link sent successfully, Please check your email.';
} catch (error) {
console.error('Failed to reset password');
throw new ApolloError(error);
}
},
setNewPassword: async (_, { token, password }) => {
try {
if (!token) {
throw new Error('Token not found!');
}
// Verify the token
const { email } = jwt.verify(token, process.env.JWT_SECRET_KEY);
// Find the user
const user = await User.findOne({ email });
// Check if user exists
if (!user) {
throw new Error('User does not exist!');
}
// Hash the password
const hashedPassword = await bcrypt.hash(password, 10);
// Update the user password
await User.findOneAndUpdate(
{ email },
{
password: hashedPassword,
}
);
// Return success message.
return 'Password updated successfully!';
} catch (error) {
console.error('Failed to set new password');
throw new ApolloError(error);
}
},
createQuote: async (_, { name }, { userID }) => {
try {
// Check if user is authenticated
if (!userID) {
throw new Error('You are not authenticated');
}
// Create new quote
const newQuote = new Quote({
name,
by: userID,
createdAt: new Date().toISOString(),
updatedAt: new Date().toISOString(),
});
// Save the new quote
await newQuote.save();
// Return the created quote
return 'Thread Posted Successfully';
} catch (error) {
// Handle specific errors if needed
console.error('Failed to create quote');
throw new ApolloError(error);
}
},
updateQuote: async (_, { _id, name }, { userID }) => {
try {
// Check if user is authenticated
if (!userID) {
throw new Error('You are not authenticated');
}
// Find and update the quote
const updatedQuote = await Quote.findByIdAndUpdate(
_id,
{
name,
updatedAt: new Date().toISOString(),
},
{ new: true } // Return the updated document
);
// Check if quote exists
if (!updatedQuote) {
throw new Error('Quote does not exist');
}
// Return success message
return 'Thread updated successfully!';
} catch (error) {
// Handle specific errors if needed
console.error('Failed to update quote');
throw new ApolloError(error);
}
},
deleteQuote: async (_, { _id }, { userID }) => {
try {
// Check if user is authenticated
if (!userID) {
throw new Error('You are not authenticated');
}
// Find and delete the quote
const deletedQuote = await Quote.findByIdAndDelete(_id);
// Check if quote exists
if (!deletedQuote) {
throw new Error('Quote does not exist');
}
// Return success message
return 'Thread deleted successfully!';
} catch (error) {
// Handle specific errors if needed
console.error('Failed to delete quote');
throw new ApolloError(error);
}
},
},
};
export default resolvers;