This repository was archived by the owner on Nov 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequestHandler.js
161 lines (129 loc) · 5.28 KB
/
requestHandler.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
const config = require('./config.json')
const crypto = require("crypto");
const randomId = () => crypto.randomBytes(8).toString("hex")
const formidable = require('formidable')
const fs = require('fs')
const serveHandler = require('serve-handler')
const db = require('./db')
module.exports = async function requestHandler(req, res) {
const headers = {
"Access-Control-Allow-Origin": "http://localhost:8080",
"Access-Control-Allow-Methods": "OPTIONS, POST, GET",
"Access-Control-Allow-Headers": ['Content-Type', 'Authorization']
}
if (req.method === "OPTIONS") {
res.writeHead(204, headers);
res.end()
return
}
const client = await db.connect()
if (req.url === '/users' && req.method === 'POST') {
let body = ''
req.on('data', function(data) {
body += data
try {
const data = JSON.parse(body)
if (data.username && data.password && data.email) {
const result = db.existedUser(client, data.username, data.email)
if (!result.length > 0) {
data.sessionID = randomId()
client.db(config.db.name).collection('users').insertOne(data)
res.writeHead(200, {
"Access-Control-Allow-Origin": "http://localhost:8080",
'Content-Type': 'application/json' })
res.write(JSON.stringify({
message: 'user signed up successfuly',
sessionID: data.sessionID,
username: data.username
}))
res.end()
}else {
res.writeHead(400, {
"Access-Control-Allow-Origin": "http://localhost:8080",
'Content-Type': 'application/json' })
res.write(JSON.stringify({ message: 'user has already existed' }))
res.end()
}
}else {
res.writeHead(400, {
"Access-Control-Allow-Origin": "http://localhost:8080",
'Content-Type': 'application/json' })
res.write(JSON.stringify({ message: 'credentials are not correct' }))
res.end()
}
} catch (error) {
console.log(error)
}
})
}else if (req.url === '/users' && req.method === 'GET') {
const data = db.allUser(client)
res.writeHead(200, { 'Content-Type': 'application/json',
"Access-Control-Allow-Origin": "http://localhost:8080"
})
res.write(JSON.stringify(data))
res.end()
}else if ( req.url === '/login' && req.method === 'POST') {
let body = ''
req.on('data', async function(data) {
body += data
try {
const data = JSON.parse(body)
if (data.username && data.password) {
const r = await db.user(client, data.username, data.password)
if (r.length > 0) {
res.writeHead(200, {
"Access-Control-Allow-Origin": "http://localhost:8080",
'Content-Type': 'application/json' })
res.write(JSON.stringify({
message: 'user Logged in successfuly',
sessionID: r[0].sessionID,
username: r[0].username
}))
res.end()
}else {
res.writeHead(400, {
"Access-Control-Allow-Origin": "http://localhost:8080",
'Content-Type': 'application/json' })
res.write(JSON.stringify({
message: 'user does not exist or an internal error, try again',
}))
res.end()
}
}
} catch (error) {
console.log(error)
}
})
}else if (req.url === '/uploadPhoto') {
let username = ''
let path = ''
const form = new formidable.IncomingForm()
form.parse(req, function (err, fields, files) {
username = fields.username
const oldpath = files.image.path
const newName = randomId() + files.image.name
const newpath = './uploads/' + newName
path = newName
fs.rename(oldpath, newpath, async function (err) {
if (err) throw err
res.writeHead(200, {
"Access-Control-Allow-Origin": "http://localhost:8080",
'Content-Type': 'application/json' })
res.write(JSON.stringify({
message: 'uploaded successfully',
image: "http://localhost:3000/uploads/" + newName
}))
res.end()
try {
db.uploadAvatar(client, username, path)
} catch (error) {
console.log(error)
}
})
})
}else {
await serveHandler(req, res, {
renderSingle: true
})
}
}