-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.js
216 lines (156 loc) · 6.43 KB
/
app.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
import * as postFuns from "./BackEnd/data/posts.js"
import * as userFuns from "./BackEnd/data/users.js"
import * as groupFuns from "./BackEnd/data/groups.js"
import express from 'express';
const app = express();
import configRoutes from './BackEnd/routes/index.js';
import {fileURLToPath} from 'url';
import {dirname} from 'path';
import exphbs from 'express-handlebars';
import session from 'express-session';
import cookieParser from 'cookie-parser';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const staticDir = express.static(__dirname + '/public');
const handlebarsInstance = exphbs.create({
defaultLayout: 'main',
// Specify helpers which are only registered on this instance.
helpers: {
asJSON: (obj, spacing) => {
if (typeof spacing === 'number')
return new Handlebars.SafeString(JSON.stringify(obj, null, spacing));
return new Handlebars.SafeString(JSON.stringify(obj));
},
//https://stackoverflow.com/questions/33316562/how-to-compare-a-value-in-handlebars
when: (operand_1, operator, operand_2, options) => {
var operators = {
'eq': function(l,r) {
return l == r; },
'noteq': function(l,r) {
return l != r; },
'gt': function(l,r) { return Number(l) > Number(r); },
'or': function(l,r) { return l || r; },
'and': function(l,r) { return l && r; },
'%': function(l,r) { return (l % r) === 0; }
}
, result = operators[operator](operand_1,operand_2);
if (result) return options.fn(this);
else return options.inverse(this);
},
//handlebars helper function
setFalse: (variable, options) => {
//console.log("value of " + variable + " before changing is" + options.data.root[variable])
options.data.root[variable] = false;
//console.log("value " + variable + " is set to: " + options.data.root[variable])
},
setTrue: (variable, options) => {
options.data.root[variable] = true;
//console.log("value " + variable + " is set to: " + options.data.root[variable])
}
}
});
// const partialsPath = path.join(__dirname, "/views/partials")
// exphbs.registerPartials(partialsPath)
app.use(cookieParser());
app.use('/public', staticDir);
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.use(session({
name: 'AuthCookie',
secret: 'some secret ',
resave: false,
saveUninitialized: false,
}))
app.engine('handlebars', handlebarsInstance.engine);
app.set('view engine', 'handlebars');
//middlewares
app.use('/login', async (req, res, next) => {
if(req.session.user){
return res.redirect("/")
}
next();
});
app.use('/register', async (req, res, next) => {
console.log("nice to meet you")
if(req.session.user){
return res.redirect("/")
}
next();
});
// Add the middleware function to the app
app.use('/profile', async (req, res, next) => {
if(!req.session.user){
return res.redirect('/')
}
next();
});
app.use('/logout', async (req, res, next) => {
if(!req.session.user){
return res.redirect('/')
}
next();
});
app.use('/recommendation/add', async (req, res, next) => {
if (!req.session.user){
return res.status(400).redirect('/error')
}
if(req.session.user.groupOwned <= 0){
return res.status(400).redirect('/error')
}
next();
});
app.use('/search', async (req, res, next) => {
if(!req.session.user){
return res.redirect("/login")
}
next();
});
app.use('/profile/analytics', async (req, res, next) => {
if (!(req.header("X-Client-Side-Request"))) {
// This is an API request, so proceed with your code
// ...
return res.status(403).render('forbidden', {logged_in: true})
}
next()
});
app.use(async (req, res, next) => {
console.log(`[${new Date().toUTCString()}] ${req.method} ${req.originalUrl} - authenticated: ${req.session.user ? 'true' : 'false'}`);
next();
})
configRoutes(app);
//allow has to have session cookies
app.use(
session({
name: 'AuthCookie',
secret: "This is a secret.. shhh don't tell anyone",
saveUninitialized: false,
resave: false,
cookie: {maxAge: 60000}
})
);
app.listen(3000, () => {
console.log("We've now got a server!");
console.log('Your routes will be running on http://localhost:3000');
});
// const db = await dbConnection();
// await db.dropDatabase();
// let j = await userFuns.createUser("james", "james", "greenwood", "jgreenwood@yahoo.com", "HeyMans1!2##4#12", "03/04/2002")
// console.log("created james")
// let steve = await userFuns.createUser("sDog", "steve", "ringwood", "swood@gmail.com", "!@#123QWEasd", "03/04/2002")
// console.log("created Steve")
// //await userFuns.updateUser(steve._id, "sDog","steve","ringwood","swood@gmail.com",[],0,"hey man",[],[],[],[j._id],[j._id])
// let gK = await groupFuns.createGroup("the Killers",j._id)
// await groupFuns.memberAdd(gK._id, steve._id)
// await groupFuns.deleteGroup(gK._id, j._id)
// let first = await postFuns.createPost(j._id, "great day", "running", "I love to runddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd", ["/public/img/cutedog.jpg"],[])
// await postFuns.updatePost(first._id, "great day", first.workoutType, "I love to run", ["/public/img/cutedog.jpg"],[j._id], [], [])
// await postFuns.createPost(j._id, "great day","running", "I love to run", ["/public/img/cutedog.jpg"],[])
// await postFuns.createPost(j._id, "great day","running", "I love to run", ["/public/img/cutedog.jpg"],[])
// await postFuns.createPost(j._id, "great day","running", "I love to run", ["/public/img/cutedog.jpg"],[])
// await postFuns.createPost(j._id, "great day","running", "I love to run", ["/public/img/cutedog.jpg"],[])
// await postFuns.createPost(j._id, "great day","running", "I love to run", ["/public/img/cutedog.jpg"],[])
// await postFuns.createPost(j._id, "great day","running", "I love to run", ["/public/img/cutedog.jpg"],[])
// await postFuns.createPost(j._id, "great day","running", "I love to run", ["/public/img/cutedog.jpg"],[])
// await postFuns.createPost(j._id, "great day","running", "I love to run", ["/public/img/cutedog.jpg"],[])
// await postFuns.createPost(j._id, "great day","running", "I love to run", ["/public/img/cutedog.jpg"],[])
// await postFuns.createPost(j._id, "great day","running", "I love to run", ["/public/img/cutedog.jpg"],[])