-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
227 lines (207 loc) · 7.21 KB
/
server.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
const express = require('express');
const bodyParser = require('body-parser');
const cors = require('cors');
require('dotenv').config();
const mongoose = require('mongoose');
const shopModel = require('./model/watch');
const userModel = require('./model/user');
const bcrypt = require('bcrypt')
const jwt = require('jsonwebtoken')
const auth = require('./auth');
const jwtDecode = require('jwt-decode');
const PORT = process.env.PORT;
const duplicateUsers = async(username) => {
try {
const data = await userModel.find({ username })
console.log('duplicateUserFunction', data);
return data
} catch (err) {
console.log(err)
throw err
}
}
mongoose.connect(process.env.DB, { useNewUrlParser: true, useUnifiedTopology: true });
const db = mongoose.connection;
db.on('error', console.error.bind(console, 'connection error:'));
db.once('open', () => {
const app = express();
app.use(cors());
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json());
app.use(express.static('public'));
app.set('view engine', 'ejs');
app.set('views', 'views');
const fileOpt = require('./multer');
console.log('connected to database');
app.get('/', (req, res) => {
res.render('index');
});
app.get('/store', (req, res) => {
shopModel.find({}, (err, data) => { res.render('store', { productData: data }); });
});
app.get('/about-us', (req, res) => {
res.render('about-us');
});
app.get('/newest', (req, res) => {
res.render('newest');
});
app.get('/blog', (req, res) => {
res.render('blog');
});
app.get('/pages', (req, res) => {
res.render('pages');
});
app.get('/contact-us', (req, res) => {
res.render('contact-us');
});
app.get('/edit/:id', (req, res) => {
const { id } = req.params;
shopModel.find({ id }, (err, data) => {
res.render('edit', { data: data[0] })
});
});
app.get('/sign-up', (req, res) => {
res.render('sign-up');
});
app.get('/sign-in', (req, res) => {
res.render('sign-in');
})
app.post('/login', async(req, res) => {
const { username, password } = req.body
try {
const user = await auth.authenticate(username, password)
const secret = 'mySecret';
const usernamePayload = user.username;
const token = jwt.sign({ usernamePayload }, secret);
const { iat, exp } = jwt.decode(token);
res.send({ Message: 'Valid User', iat, exp, token });
} catch (err) {
console.log(err)
res.send({
Message: 'User is not valid!'
})
}
});
app.post('/sign-up', async(req, res) => {
const { username, password } = req.body;
console.log(req.body);
const user = new userModel({
username,
password
});
// check for existing users
let data = await duplicateUsers(username);
if (data.length === 0) {
bcrypt.genSalt(10, (error, salt) => {
if (error) throw error
bcrypt.hash(password, salt, async(err, hash) => {
if (err) throw err
console.log('first hashed');
console.log(hash);
user.password = hash;
try {
const data = await user.save();
console.log(data);
console.log('Data inserted!');
res.json({
Message: 'Signup completed.'
})
} catch (err) {
console.log(err)
res.send('Err')
}
})
})
} else if (data.length > 0) {
res.send({
Message: 'Users exists!'
})
}
})
app.post('/store', fileOpt.Upload.single('picture'), async(req, res) => {
const { title, price, token } = req.body;
try {
if (token) {
const decodedToken = jwtDecode(token);
if (decodedToken) {
let imagePath = req.file.path;
const slashIndex = imagePath.indexOf('/');
imagePath = imagePath.substr(slashIndex, imagePath.length);
if (title && price && imagePath) {
const newData = new shopModel({
id: parseInt(Math.random().toString().substr(2, 5)),
title,
price,
link: imagePath
})
const result = await newData.save();
res.json(result).status(200);
}
}
}
} catch (err) {
res.json(err);
}
});
app.post('/api/edit/:id', fileOpt.Upload.single('picture'), async(req, res) => {
const { id } = req.params;
let { title, price, token } = req.body;
try {
if (token) {
const decodedToken = jwtDecode(token);
if (decodedToken) {
shopModel.find({ id }, (err, data) => {
const prevData = data[0]
let imagePath;
if (req.file) {
imagePath = req.file.path;
const slashIndex = imagePath.indexOf('/');
imagePath = imagePath.substr(slashIndex, imagePath.length);
}
if (!title) {
title = prevData.title;
}
if (!price) {
price = prevData.price;
}
if (!imagePath) {
imagePath = prevData.link
}
shopModel.updateOne({ id }, { $set: { title, price, link: imagePath } }, (err, data) => {
if (err) {
console.log(err)
} else {
res.json(data).status(200);
}
})
});
}
}
} catch (err) {
res.json(err);
}
})
app.delete('/store/:id', (req, res) => {
const { id } = req.params;
const token = req.get('token');
try {
if (token) {
const decodedToken = jwtDecode(token);
if (decodedToken) {
shopModel.deleteOne({ id }, (err, result) => {
if (err) {
console.log(err)
} else {
res.json(result).status(200);
}
})
}
}
} catch (err) {
res.json(err);
}
});
app.listen(PORT, () => {
console.log(`> Server started on port: ${PORT}`);
});
});