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
|
import express from "express";
import hbs from "express-handlebars";
import cookieParser from "cookie-parser";
import routes from "./routes.js";
import frontend from "./routes/frontend.js";
import activitypub from "./routes/activitypub.js";
import event from "./routes/event.js";
import group from "./routes/group.js";
import staticPages from "./routes/static.js";
import magicLink from "./routes/magicLink.js";
import { initEmailService } from "./lib/email.js";
import {
activityPubContentType,
alternateActivityPubContentType,
} from "./lib/activitypub.js";
import getConfig from "./lib/config.js";
const app = express();
const config = getConfig();
initEmailService().then((sendEmails) => (app.locals.sendEmails = sendEmails));
// View engine //
const hbsInstance = hbs.create({
defaultLayout: "main",
partialsDir: ["views/partials/"],
layoutsDir: "views/layouts/",
runtimeOptions: {
data: {
domain: config.general.domain,
contactEmail: config.general.email,
siteName: config.general.site_name,
mailService: config.general.mail_service,
siteLogo: config.general.email_logo_url,
isFederated: config.general.is_federated || true,
},
},
helpers: {
plural: function (number: number, text: string) {
var singular = number === 1;
// If no text parameter was given, just return a conditional s.
if (typeof text !== "string") return singular ? "" : "s";
// Split with regex into group1/group2 or group1(group3)
var match = text.match(/^([^()\/]+)(?:\/(.+))?(?:\((\w+)\))?/);
// If no match, just append a conditional s.
if (!match) return text + (singular ? "" : "s");
// We have a good match, so fire away
return (
(singular && match[1]) || // Singular case
match[2] || // Plural case: 'bagel/bagels' --> bagels
match[1] + (match[3] || "s")
); // Plural case: 'bagel(s)' or 'bagel' --> bagels
},
json: function (context: any) {
return JSON.stringify(context);
},
},
});
app.locals.renderEmail = async function renderEmail(
template: string,
data: object
) {
const [html, text] = await Promise.all([
hbsInstance.renderView(
`./views/emails/${template}Html.handlebars`,
{
cache: true,
layout: "email.handlebars",
...data,
}
),
hbsInstance.renderView(
`./views/emails/${template}Text.handlebars`,
{
cache: true,
layout: "email.handlebars",
...data,
}
),
]);
return { html, text }
}
app.engine("handlebars", hbsInstance.engine);
app.set("view engine", "handlebars");
app.set("hbsInstance", hbsInstance);
// Static files //
app.use(express.static("public"));
// Body parser //
app.use(express.json({ type: alternateActivityPubContentType }));
app.use(express.json({ type: activityPubContentType }));
app.use(express.json({ type: "application/json" }));
app.use(express.urlencoded({ extended: true }));
// Cookies //
app.use(cookieParser());
// Router //
app.use("/", staticPages);
app.use("/", frontend);
app.use("/", activitypub);
app.use("/", event);
app.use("/", group);
app.use("/", magicLink);
app.use("/", routes);
export default app;
|