-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.cjs
215 lines (180 loc) · 5.55 KB
/
app.cjs
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
const express = require("express");
const app = express();
const bodyParser = require('body-parser');
const dbConnect = require("./db/dbConnect.cjs");
const User = require("./db/userModel.cjs");
const Rating = require("./db/ratingsModel.cjs");
const Articals = require("./db/articalModel.cjs");
const auth = require("./auth.cjs");
var cors = require("cors");
dbConnect();
app.use(cors());
// Curb Cores Error by adding a header here
app.use((req, res, next) => {
res.setHeader("Access-Control-Allow-Origin", "*");
res.setHeader(
"Access-Control-Allow-Headers",
"Origin, X-Requested-With, Content, Accept, Content-Type, Authorization"
);
res.setHeader(
"Access-Control-Allow-Methods",
"GET, POST, PUT, DELETE, PATCH, OPTIONS"
);
next();
});
// body parser configuration
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true }));
app.get("/getarticals", async (request, res)=>{
try {
const result = await Articals.find();
res.send(result);
} catch (err) {
console.error(err);
res.status(500).send('Internal server error');
}
} )
app.post("/ratings", (request, response) => {
const rater = new Rating({
email: request.body.email,
rating: request.body.rating
});
rater
.save()
// return success if the new user is added to the database successfully
.then((result) => {
response.status(201).send({
message: "User rated Successfully",
result,
});
})
// catch error if the new user wasn't added successfully to the database
.catch((error) => {
response.status(500).send({
message: "Already rated",
error,
});
});
});
app.post("/createart", (request, response) => {
const artical = new Articals({
articalType: request.body.articalType,
creatorName: request.body.creatorName,
date: request.body.date,
title: request.body.title,
content: request.body.content,
tag1: request.body.tag1,
tag2: request.body.tag2,
imgUrl:request.body.imgUrl
});
artical
.save()
// return success if the new user is added to the database successfully
.then((result) => {
response.status(201).send({
message: "artical added Successfully",
result,
});
})
// catch error if the new user wasn't added successfully to the database
.catch((error) => {
response.status(500).send({
message: "something went wrong",
error,
});
});
});
// register endpoint
app.post("/register", (request, response) => {
const user = new User({
email: request.body.email,
password: request.body.password,
username: request.body.username
});
user
.save()
// return success if the new user is added to the database successfully
.then((result) => {
response.status(201).send({
message: "User Created Successfully",
result,
});
})
// catch error if the new user wasn't added successfully to the database
.catch((error) => {
response.status(500).send({
message: "Error creating user",
error,
});
});
});
// login endpoint
app.post("/login", (request, response) => {
//const email = request.body.email
// const password = request.body.password
User.findOne({email:request.body.email})
.then((foundUser)=>{
if(foundUser){
if(foundUser.password === request.body.password){
response.status(200).send({
message: "Login Successful",
email: foundUser.email,
username:foundUser.username
});
}
else{
response.status(400).send({
message: "Passwords does not match",
});
}
}
else{
response.status(404).send({
message: "Email not found",
});
}
})
});
// free endpoint
app.get("/free-endpoint", (request, response) => {
response.json({ message: "You are free to access me anytime" });
});
// authentication endpoint
app.get("/auth-endpoint", auth, (request, response) => {
response.json({ message: "You are authorized to access me" });
});
/*
User.findOne({ email: request.body.email },(err, user)=>{
if(err){
response.status(404).send({
message: "Email not found",
err,
});
}
else if (request.body.password === user.password) {
const token = jwt.sign(
{
userId: user._id,
userEmail: user.email,
},
"RANDOM-TOKEN",
{ expiresIn: "24h" }
);
response.status(200).send({
message: "Login Successful",
email: user.email,
token,
});
}
else {
response.status(400).send({
message: "Passwords does not match",
});
}
})
*/
/////////////////////////////////////////////////////////
// Start the server
app.listen(8000, () => {
console.log('Server started on port 8000');
});