-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
80 lines (61 loc) · 2.16 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
// ℹ️ Gets access to environment variables/settings
// https://www.npmjs.com/package/dotenv
require("dotenv/config");
// ℹ️ Connects to the database
require("./db");
// Handles http requests (express is node js framework)
// https://www.npmjs.com/package/express
const express = require("express");
// Handles the handlebars
// https://www.npmjs.com/package/hbs
const hbs = require("hbs");
const app = express();
// ℹ️ This function is getting exported from the config folder. It runs most pieces of middleware
require("./config")(app);
// default value for title local
const projectName = "recipe-app";
const capitalized = (string) => string[0].toUpperCase() + string.slice(1).toLowerCase();
app.locals.title = `${capitalized(projectName)} created with IronLauncher`;
// https://cloudinary.com/documentation/resizing_and_cropping#scale.
hbs.registerHelper('cloudinaryResize', function(url, transform) {
if (typeof url === 'undefined' || !url) {
return "";
}
if (url.indexOf('cloudinary.com') == -1) {
return url
}
return url.replace(/image\/upload\/v[0-9]+/g, `image/upload/${transform}`);
});
hbs.registerHelper('dateNow', () => {
return (new Date()).toISOString().slice(0, 10);
})
// session configuration
const session = require('express-session')
const MongoStore = require('connect-mongo')
app.use(
session({
secret: process.env.SESSION_SECRET,
cookie: { maxAge: 1000 * 60 * 60 * 24 },
resave: true,
store: MongoStore.create({
mongoUrl: process.env.MONGODB_URI || 'mongodb://localhost/recipe-app'
})
})
)
app.use(function(req, res, next) {
res.locals.session = req.session;
next();
});
// end of session configuration
// 👇 Start handling routes here
const index = require("./routes/index");
app.use("/", index);
const recipes = require("./routes/recipes");
app.use("/recipe", recipes);
const auth = require("./routes/auth");
app.use("/auth", auth);
const events = require("./routes/events");
app.use("/event", events);
// ❗ To handle errors. Routes that don't exist or errors that you handle in specific routes
require("./error-handling")(app);
module.exports = app;