-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunction.js
More file actions
312 lines (283 loc) · 12.4 KB
/
function.js
File metadata and controls
312 lines (283 loc) · 12.4 KB
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
import express from "express";
import { dirname } from "path";
import { fileURLToPath } from "url";
const __dirname = dirname(fileURLToPath(import.meta.url));
import bodyParser from "body-parser";
import mysql, { createPool } from "mysql2";
import jwt from "jsonwebtoken";
import cookieParser from "cookie-parser";
import { CheckUser,CreateUser} from "./dbconn.js";
import dotenv from "dotenv";
const app=express();
dotenv.config();
const port=3030;
const secret_id=process.env.SECRETID;
app.use(express.urlencoded({ extended: true }));
app.use(bodyParser.urlencoded({ extended: true }));
app.use(express.static("public"));
app.use(express.json());
app.use(cookieParser());
app.use((req, res, next) => {
res.setHeader("Cache-Control", "no-store, no-cache, must-revalidate, private");
res.setHeader("Pragma", "no-cache");
res.setHeader("Expires", "0");
next();
});
const pool= createPool({
host: process.env.MYSQL_HOST,
user: process.env.MYSQL_USER,
password: process.env.MYSQL_PASSWORD,
database: process.env.MYSQL_DATABASE
});
app.get("/login", (req,res)=>{
res.sendFile(__dirname+"/public/login.html");
});
app.post("/submit", async (req, res) => {
try {
app.locals.loginemail = req.body["loginemail"];
const loginpass = req.body["loginpass"];
const ans = await CheckUser(app.locals.loginemail, loginpass);
if (!ans) {
return res.redirect("/login");
}
const token = jwt.sign({ user: app.locals.loginemail }, secret_id, { expiresIn: 3600 });
res.cookie("token", token, { httpOnly: true, secure: true });
const qu = `SELECT * FROM USERINFO WHERE email = ?`;
pool.query(qu, [app.locals.loginemail], (err, results) => {
if (err) {
console.error("Database error:", err);
return res.status(500).send("Database error.");
}
console.log("Log value:", results[0].log);
if (results[0].log === 0) {
return res.sendFile(__dirname+"/public/editprofile.html");
} else {
return res.redirect("/fitness");
}
});
} catch (error) {
console.error("Error during login:", error);
res.status(500).send("Server error");
}
});
app.post("/submit_info",(req,res)=>{
const qu = `UPDATE USERINFO SET log = 1 where email = ?`;
console.log(app.locals.loginemail);
pool.query(qu,[app.locals.loginemail],(err, results) => {
if (err) throw err;
console.log(qu);
});
let info = req.body;
console.log(info);
let heightM = info.height / 100; // Convert cm to meters
let bmi = info.weight / (heightM * heightM);
bmi = bmi.toFixed(2);
const q = `update edit_profile set name = ?, phone_no = ?, DOB = ?,gender = ?,height = ?,wight = ?, bmi = ?,level = ? where id = 1 `;
pool.query(q, [info.firstname,info.phone,info.dateofbirth,info.gender,info.height,info.weight,bmi,info.exerciseLevel],(err, results) => {
if (err) throw err;
});
res.sendFile(__dirname+"/public/index.html");
//res.redirect("/fitness");
})
app.get("/fitness", (req,res)=>{
const token=req.cookies.token;
if(!token){
return res.redirect("/login");
}
jwt.verify(token, secret_id, (err, decoded)=>{
if(err){
console.log(err);
return res.redirect("/login");
}
res.sendFile(__dirname+"/public/index.html");
});
console.log(app.locals.loginemail);
});
app.post("/logout", (req,res)=>{
const token= req.cookies.token;
if(!token){
return res.status(400).json({message: "Token Required"});}
res.cookie("token", "",{maxAge: 1});
res.redirect("/login");
});
app.get("/username", (req,res)=>{
const loginemail= req.query.loginemail;
const ans= getUser(loginemail);
return ans;
});
app.get("/data",(req,res)=>{
const query=`
SELECT DAY, CHARTWEEKDATA FROM CHARTDATA
ORDER BY SR_NO DESC LIMIT 7;
`;
pool.query(query, (err,results)=>{
if(err){
console.log(err);
}else{
return res.json(results.reverse());
}
});
});
app.post("/register",(req,res)=>{
const regemail=req.body["regemail"];
const regpass=req.body["regpass"];
CreateUser(regemail,regpass);
res.redirect("/login");
});
/*
app.get("/home_data",(req,res)=>{
const q = "SELECT * FROM Mon_Beg_loose_wight_home";
pool.query(q, (err, results) => {
if (err) throw err;
// Convert BLOB to Base64 for each result
const exercises = results.map((exercise) => {
return {
...exercise,
male_gif: `data:image/gif;base64,${exercise.male_gif.toString("base64")}`,
female_gif: `data:image/gif;base64,${exercise.female_gif.toString("base64")}`,
mpic_front_targetarea: `data:image/gif;base64,${exercise.mpic_front_targetarea.toString("base64")}`,
mpic_back_targetarea: `data:image/gif;base64,${exercise.mpic_back_targetarea.toString("base64")}`,
fpic_front_targetarea: `data:image/gif;base64,${exercise.fpic_front_targetarea.toString("base64")}`,
fpic_back_targetarea: `data:image/gif;base64,${exercise.fpic_back_targetarea.toString("base64")}`,
};
});
console.log("GIF retrieved successfully!");
console.log(results);
//res.sendFile(__dirname+"/public/home.html",{exercises});
res.render("home.ejs",{exercises});
});
});*/
app.post("/at_home",(req,res)=>{
app.locals.name=req.body.table_name;
app.locals.location=req.body.location;
console.log(app.locals.location);
console.log(app.locals.name);
const q = `SELECT * FROM ${app.locals.name}_Beg_loose_wight_home`;
pool.query(q, (err, results) => {
if (err) throw err;
// Convert BLOB to Base64 for each result
const exercises = results.map((exercise) => {
return {
...exercise,
male_gif: `data:image/gif;base64,${exercise.male_gif.toString("base64")}`,
female_gif: `data:image/gif;base64,${exercise.female_gif.toString("base64")}`,
mpic_front_targetarea: `data:image/gif;base64,${exercise.mpic_front_targetarea.toString("base64")}`,
mpic_back_targetarea: `data:image/gif;base64,${exercise.mpic_back_targetarea.toString("base64")}`,
fpic_front_targetarea: `data:image/gif;base64,${exercise.fpic_front_targetarea.toString("base64")}`,
fpic_back_targetarea: `data:image/gif;base64,${exercise.fpic_back_targetarea.toString("base64")}`,
};
});
console.log("GIF retrieved successfully!");
//console.log(results);
res.render("home.ejs",{exercises})
});
});
/*app.get("/video_data", (req,res)=>{
const data= fetchDataFromSQL();
return data;
});*/
app.post("/at_gym",(req,res)=>{
app.locals.name=req.body.table_name;
app.locals.location=req.body.location;
console.log(app.locals.location);
console.log(app.locals.name);
const q = `SELECT * FROM ${app.locals.name}_Beg_loose_wight_gym`;
pool.query(q, (err, results) => {
if (err) throw err;
// Convert BLOB to Base64 for each result
const exercises = results.map((exercise) => {
return {
...exercise,
male_gif: `data:image/gif;base64,${exercise.male_gif.toString("base64")}`,
female_gif: `data:image/gif;base64,${exercise.female_gif.toString("base64")}`,
mpic_front_targetarea: `data:image/gif;base64,${exercise.mpic_front_targetarea.toString("base64")}`,
mpic_back_targetarea: `data:image/gif;base64,${exercise.mpic_back_targetarea.toString("base64")}`,
fpic_front_targetarea: `data:image/gif;base64,${exercise.fpic_front_targetarea.toString("base64")}`,
fpic_back_targetarea: `data:image/gif;base64,${exercise.fpic_back_targetarea.toString("base64")}`,
};
});
console.log("GIF retrieved successfully!");
//console.log(results);
res.render("home.ejs",{exercises})
});
});
app.get("/exercise_info",(req,res,next)=>{
let exercise_name = req.query.name;
console.log(exercise_name);
const q = `SELECT * FROM ${app.locals.name}_Beg_loose_wight_${app.locals.location} where heading = "${exercise_name}"`;
pool.query(q, (err, results) => {
if (err) throw err;
// Convert BLOB to Base64 for each result
const exercises = results.map((exercise) => {
return {
...exercise,
male_gif: `data:image/gif;base64,${exercise.male_gif.toString("base64")}`,
female_gif: `data:image/gif;base64,${exercise.female_gif.toString("base64")}`,
mpic_front_targetarea: `data:image/gif;base64,${exercise.mpic_front_targetarea.toString("base64")}`,
mpic_back_targetarea: `data:image/gif;base64,${exercise.mpic_back_targetarea.toString("base64")}`,
fpic_front_targetarea: `data:image/gif;base64,${exercise.fpic_front_targetarea.toString("base64")}`,
fpic_back_targetarea: `data:image/gif;base64,${exercise.fpic_back_targetarea.toString("base64")}`,
};
});
console.log("GIF retrieved successfully!");
console.log(results);
res.render("exercise.ejs",{exercises});
next();
});
});
setInterval(() => {
window.location.reload();
}, 1800 * 1000);
/*
app.get("/recieve_exercise",(req,res)=>{
const q = `SELECT * FROM ${app.locals.name}_Beg_loose_wight_${app.locals.location}`;
pool.query(q, (err, results) => {
if (err) throw err;
// Convert BLOB to Base64 for each result
const exercises = results.map((exercise) => {
return {
...exercise,
male_gif: `data:image/gif;base64,${exercise.male_gif.toString("base64")}`,
female_gif: `data:image/gif;base64,${exercise.female_gif.toString("base64")}`,
mpic_front_targetarea: `data:image/gif;base64,${exercise.mpic_front_targetarea.toString("base64")}`,
mpic_back_targetarea: `data:image/gif;base64,${exercise.mpic_back_targetarea.toString("base64")}`,
fpic_front_targetarea: `data:image/gif;base64,${exercise.fpic_front_targetarea.toString("base64")}`,
fpic_back_targetarea: `data:image/gif;base64,${exercise.fpic_back_targetarea.toString("base64")}`,
};
});
console.log("GIF retrieved successfully!");
console.log(results);
return exercises;
});
});*/
// Function to fetch data from SQL
// API route to fetch videos and structure them properly
// app.get('/videos', (req, res) => {
// pool.query(`SELECT * FROM ${app.locals.name}_Beg_loose_wight_${app.locals.location}`, (err, results) => {
// if (err) {
// console.error('Error fetching video data:', err);
// res.status(500).send('Server error');
// } else {
// // Map database results into the desired video array format
// const exercises = results.map((exercise) => {
// return {
// ...exercise,
// male_gif: `data:image/gif;base64,${exercise.male_gif.toString("base64")}`,
// female_gif: `data:image/gif;base64,${exercise.female_gif.toString("base64")}`,
// mpic_front_targetarea: `data:image/gif;base64,${exercise.mpic_front_targetarea.toString("base64")}`,
// mpic_back_targetarea: `data:image/gif;base64,${exercise.mpic_back_targetarea.toString("base64")}`,
// fpic_front_targetarea: `data:image/gif;base64,${exercise.fpic_front_targetarea.toString("base64")}`,
// fpic_back_targetarea: `data:image/gif;base64,${exercise.fpic_back_targetarea.toString("base64")}`,
// };
// });
// res.json(exercises); // Send JSON response
// }
// });
// });
app.get("/start",(req,res)=>{
res.sendFile(__dirname+"/public/next-page.html");
});
app.listen(port, ()=>{
console.log(`Listening on port ${port}`);
console.log(__dirname);
});