-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathrenders.handler.js
More file actions
337 lines (301 loc) · 6.94 KB
/
Copy pathrenders.handler.js
File metadata and controls
337 lines (301 loc) · 6.94 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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
const query = require("../queries");
const utils = require("../utils");
const env = require("../env");
/**
*
* PAGES
*
**/
async function homepage(req, res) {
if (env.DISALLOW_ANONYMOUS_LINKS && !req.user) {
res.redirect("/login");
return;
}
res.render("homepage", {
title: "Free modern URL shortener",
});
}
async function login(req, res) {
if (req.user) {
res.redirect("/");
return;
}
res.render("login", {
title: "Log in or sign up"
});
}
function logout(req, res) {
utils.deleteCurrentToken(res);
res.render("logout", {
title: "Logging out.."
});
}
async function createAdmin(req, res) {
const isThereAUser = await query.user.findAny();
if (isThereAUser) {
res.redirect("/login");
return;
}
res.render("create_admin", {
title: "Create admin account"
});
}
function notFound(req, res) {
res.status(404).render("404", {
title: "404 - Not found"
});
}
function settings(req, res) {
res.render("settings", {
title: "Settings"
});
}
function admin(req, res) {
res.render("admin", {
title: "Admin"
});
}
function stats(req, res) {
res.render("stats", {
title: "Stats"
});
}
async function banned(req, res) {
res.render("banned", {
title: "Banned link",
});
}
async function report(req, res) {
if (!env.REPORT_EMAIL) {
res.redirect("/");
return;
}
res.render("report", {
title: "Report abuse",
});
}
async function resetPassword(req, res) {
res.render("reset_password", {
title: "Reset password",
});
}
async function resetPasswordSetNewPassword(req, res) {
const reset_password_token = req.params.resetPasswordToken;
if (reset_password_token) {
const user = await query.user.find(
{
reset_password_token,
reset_password_expires: [">", utils.dateToUTC(new Date())]
}
);
if (user) {
res.locals.token_verified = true;
}
}
res.render("reset_password_set_new_password", {
title: "Reset password",
...(res.locals.token_verified && { reset_password_token }),
});
}
async function verifyChangeEmail(req, res) {
res.render("verify_change_email", {
title: "Verifying email",
});
}
async function verify(req, res) {
res.render("verify", {
title: "Verify",
});
}
async function terms(req, res) {
res.render("terms", {
title: "Terms of Service",
});
}
/**
*
* PARTIALS
*
**/
async function confirmLinkDelete(req, res) {
const link = await query.link.find({
uuid: req.query.id,
...(!req.user.admin && { user_id: req.user.id })
});
if (!link) {
return res.render("partials/links/dialog/message", {
layout: false,
message: "Could not find the link."
});
}
res.render("partials/links/dialog/delete", {
layout: false,
link: utils.getShortURL(link.address, link.domain).link,
id: link.uuid
});
}
async function confirmLinkBan(req, res) {
const link = await query.link.find({
uuid: req.query.id,
...(!req.user.admin && { user_id: req.user.id })
});
if (!link) {
return res.render("partials/links/dialog/message", {
message: "Could not find the link."
});
}
res.render("partials/links/dialog/ban", {
link: utils.getShortURL(link.address, link.domain).link,
id: link.uuid
});
}
async function confirmUserDelete(req, res) {
const user = await query.user.find({ id: req.query.id });
if (!user) {
return res.render("partials/admin/dialog/message", {
layout: false,
message: "Could not find the user."
});
}
res.render("partials/admin/dialog/delete_user", {
layout: false,
email: user.email,
id: user.id
});
}
async function confirmUserBan(req, res) {
const user = await query.user.find({ id: req.query.id });
if (!user) {
return res.render("partials/admin/dialog/message", {
layout: false,
message: "Could not find the user."
});
}
res.render("partials/admin/dialog/ban_user", {
layout: false,
email: user.email,
id: user.id
});
}
async function createUser(req, res) {
res.render("partials/admin/dialog/create_user", {
layout: false,
});
}
async function addDomainAdmin(req, res) {
res.render("partials/admin/dialog/add_domain", {
layout: false,
});
}
async function addDomainForm(req, res) {
res.render("partials/settings/domain/add_form");
}
async function confirmDomainDelete(req, res) {
const domain = await query.domain.find({
uuid: req.query.id,
user_id: req.user.id
});
if (!domain) {
throw new utils.CustomError("Could not find the domain.", 400);
}
res.render("partials/settings/domain/delete", {
...utils.sanitize.domain(domain)
});
}
async function confirmDomainBan(req, res) {
const domain = await query.domain.find({
id: req.query.id
});
if (!domain) {
throw new utils.CustomError("Could not find the domain.", 400);
}
const hasUser = !!domain.user_id;
const hasLink = await query.link.find({ domain_id: domain.id });
res.render("partials/admin/dialog/ban_domain", {
id: domain.id,
address: domain.address,
hasUser,
hasLink,
});
}
async function confirmDomainDeleteAdmin(req, res) {
const domain = await query.domain.find({
id: req.query.id
});
if (!domain) {
throw new utils.CustomError("Could not find the domain.", 400);
}
const hasLink = await query.link.find({ domain_id: domain.id });
res.render("partials/admin/dialog/delete_domain", {
id: domain.id,
address: domain.address,
hasLink,
});
}
async function getReportEmail(req, res) {
if (!env.REPORT_EMAIL) {
throw new utils.CustomError("No report email is available.", 400);
}
res.render("partials/report/email", {
report_email_address: env.REPORT_EMAIL.replace("@", "[at]")
});
}
async function getSupportEmail(req, res) {
if (!env.CONTACT_EMAIL) {
throw new utils.CustomError("No support email is available.", 400);
}
await utils.sleep(500);
res.render("partials/support_email", {
email: env.CONTACT_EMAIL,
});
}
async function linkEdit(req, res) {
const link = await query.link.find({
uuid: req.params.id,
...(!req.user.admin && { user_id: req.user.id })
});
res.render("partials/links/edit", {
...(link && utils.sanitize.link_html(link)),
domain: link.domain || env.DEFAULT_DOMAIN,
});
}
async function linkEditAdmin(req, res) {
const link = await query.link.find({
uuid: req.params.id,
});
res.render("partials/admin/links/edit", {
...(link && utils.sanitize.link_html(link)),
domain: link.domain || env.DEFAULT_DOMAIN,
});
}
module.exports = {
addDomainAdmin,
addDomainForm,
admin,
banned,
confirmDomainBan,
confirmDomainDelete,
confirmDomainDeleteAdmin,
confirmLinkBan,
confirmLinkDelete,
confirmUserBan,
confirmUserDelete,
createAdmin,
createUser,
getReportEmail,
getSupportEmail,
homepage,
linkEdit,
linkEditAdmin,
login,
logout,
notFound,
report,
resetPassword,
resetPasswordSetNewPassword,
settings,
stats,
terms,
verifyChangeEmail,
verify,
}