-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUsersController.js
executable file
·74 lines (60 loc) · 1.97 KB
/
UsersController.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
// Contains the create new user endpoint
import sha1 from 'sha1';
import Queue from 'bull';
import { ObjectId } from 'mongodb';
import redisClient from '../utils/redis';
import dbClient from '../utils/db';
const userQueue = new Queue('email sending');
class UsersController {
static async postNew(req, res) {
// console.log('Request Body:', req.body);
const { email } = req.body;
const { password } = req.body;
if (!email) {
res.status(400).json({ error: 'Missing email' });
return;
}
if (!password) {
res.status(400).json({ error: 'Missing password' });
return;
}
// const User = await (await dbClient.usersCollection()).findOne({ email });
const usersCollection = await dbClient.client.db().collection('users');
const User = await usersCollection.findOne({ email });
if (User) {
res.status(400).json({ error: 'Already exist' });
return;
}
const insertData = await usersCollection.insertOne(
{ email, password: sha1(password) },
);
const userId = insertData.insertedId.toString();
userQueue.add({ userId });
res.status(201).json({ id: userId, email });
}
static async getMe(req, res) {
try {
const { 'x-token': token } = req.headers;
if (!token) {
res.status(401).json({ error: 'Unauthorized' });
return;
}
const key = `auth_${token}`;
const userId = await redisClient.get(key);
if (!userId) {
res.status(401).json({ error: 'Unauthorized' });
return;
}
const user = await dbClient.client.db().collection('users').findOne({ _id: ObjectId(userId) });
if (!user) {
res.status(401).json({ error: 'Unauthorized' });
return;
}
res.status(200).json({ id: user._id.toString(), email: user.email });
} catch (error) {
console.error('Error in getMe:', error);
res.status(500).json({ error: 'Internal Server Error' });
}
}
}
export default UsersController;