-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.tsx
511 lines (482 loc) · 21.4 KB
/
server.tsx
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
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
import path from "path"
import cors from "cors"
import mime from "mime"
import {Readable} from "stream"
import {Pool} from "pg"
import fs from "fs"
import sharp from "sharp"
import express, {Request, Response, NextFunction} from "express"
import session from "express-session"
import S3 from "aws-sdk/clients/s3"
import PGSession from "connect-pg-simple"
import webpack from "webpack"
import middleware from "webpack-dev-middleware"
import hot from "webpack-hot-middleware"
import config from "./webpack.config.js"
import dotenv from "dotenv"
import rateLimit from "express-rate-limit"
import {renderToString} from "react-dom/server"
import {StaticRouter as Router} from "react-router-dom"
import permissions from "./structures/Permissions"
import functions from "./structures/Functions"
import cryptoFunctions from "./structures/CryptoFunctions"
import serverFunctions, {keyGenerator, handler} from "./structures/ServerFunctions"
import sql from "./sql/SQLQuery"
import $2FARoutes from "./routes/2FARoutes"
import CommentRoutes from "./routes/CommentRoutes"
import CutenessRoutes from "./routes/CutenessRoutes"
import FavoriteRoutes from "./routes/FavoriteRoutes"
import MiscRoutes from "./routes/MiscRoutes"
import PostRoutes from "./routes/PostRoutes"
import SearchRoutes from "./routes/SearchRoutes"
import TagRoutes from "./routes/TagRoutes"
import UploadRoutes from "./routes/UploadRoutes"
import UserRoutes from "./routes/UserRoutes"
import TranslationRoutes from "./routes/TranslationRoutes"
import ThreadRoutes from "./routes/ThreadRoutes"
import MessageRoutes from "./routes/MessageRoutes"
import GroupRoutes from "./routes/GroupRoutes"
import {imageLock, imageMissing} from "./structures/ImageLock"
const __dirname = path.resolve()
dotenv.config()
const app = express() as any
let compiler = webpack(config as any)
app.use(express.urlencoded({extended: true, limit: "1gb", parameterLimit: 50000}))
app.use(express.json({limit: "1gb"}))
app.use(cors({credentials: true, origin: true}))
app.disable("x-powered-by")
declare module "express-session" {
interface SessionData {
visitorId: string
accessToken: string
refreshToken: string
username: string
email: string
joinDate: string
image: string | null
imagePost: string | null
bio: string
emailVerified: boolean
publicFavorites: boolean
showRelated: boolean
showTooltips: boolean
showTagBanner: boolean
downloadPixivID: boolean
autosearchInterval: number
upscaledImages: boolean
savedSearches: string
showR18: boolean
premiumExpiration: string
banExpiration: string
$2fa: boolean
ip: string
role: string
captchaNeeded: boolean
csrfSecret: string
csrfToken: string
captchaAnswer: string
banned: boolean
}
}
const s3 = new S3({region: "us-east-1", credentials: {
accessKeyId: process.env.AWS_ACCESS_KEY!,
secretAccessKey: process.env.AWS_SECRET_KEY!
}})
const pgPool = functions.isLocalHost() ? new Pool({
user: process.env.PG_LOCAL_USER,
host: process.env.PG_LOCAL_HOST,
database: process.env.PG_LOCAL_DATABASE,
password: process.env.PG_LOCAL_PASSWORD,
port: Number(process.env.PG_LOCAL_PORT)
}) : new Pool({
user: process.env.PG_USER,
host: process.env.PG_HOST,
database: process.env.PG_DATABASE,
password: process.env.PG_PASSWORD,
port: Number(process.env.PG_PORT)
})
const pgSession = PGSession(session)
app.use(session({
store: new pgSession({
pool: pgPool,
tableName: "sessions",
sidColumnName: "sessionID",
sessColumnName: "session",
expireColumnName: "expires"
}),
secret: process.env.COOKIE_SECRET!,
cookie: {maxAge: 1000 * 60 * 60 * 24 * 30, sameSite: "lax", secure: "auto"},
rolling: true,
resave: false,
saveUninitialized: false
}))
$2FARoutes(app)
CommentRoutes(app)
CutenessRoutes(app)
FavoriteRoutes(app)
MiscRoutes(app)
PostRoutes(app)
SearchRoutes(app)
TagRoutes(app)
UploadRoutes(app)
UserRoutes(app)
TranslationRoutes(app)
ThreadRoutes(app)
MessageRoutes(app)
GroupRoutes(app)
const imageLimiter = rateLimit({
windowMs: 60 * 1000,
max: 1500,
standardHeaders: true,
legacyHeaders: false,
keyGenerator,
handler
})
const tokenLimiter = rateLimit({
windowMs: 60 * 1000,
max: 10,
standardHeaders: true,
legacyHeaders: false,
keyGenerator,
handler
})
if (process.env.TESTING === "yes") {
app.use(middleware(compiler, {
index: false,
serverSideRender: false,
writeToDisk: false,
}))
app.use(hot(compiler))
}
app.use(express.static(path.join(__dirname, "./public")))
app.use(express.static(path.join(__dirname, "./dist"), {index: false}))
app.use("/assets", express.static(path.join(__dirname, "./assets")))
let blacklist = null as unknown as Set<string>
app.use(async (req: Request, res: Response, next: NextFunction) => {
if (!blacklist) {
const blacklistObj = await sql.report.blacklist()
const blacklistSet = new Set<string>()
for (const entry of blacklistObj) {
blacklistSet.add(entry.ip?.trim())
}
blacklist = blacklistSet
}
let ip = req.headers["x-forwarded-for"] || req.socket.remoteAddress
ip = ip?.toString().replace("::ffff:", "") || ""
if (blacklist.has(ip)) {
return res.status(403).json({message: "Your IP address has been blocked."})
}
next()
})
app.post("/api/misc/blacklistip", imageLimiter, async (req: Request, res: Response, next: NextFunction) => {
const {ip, reason} = req.body
if (!req.session.username) return res.status(403).send("Unauthorized")
if (!permissions.isAdmin(req.session)) return res.status(403).end()
if (!ip) return res.status(400).send("Bad ip")
await sql.report.insertBlacklist(ip, reason)
blacklist = null as any
res.status(200).send("Success")
})
app.delete("/api/misc/unblacklistip", imageLimiter, async (req: Request, res: Response, next: NextFunction) => {
const {ip} = req.query as any
if (!req.session.username) return res.status(403).send("Unauthorized")
if (!permissions.isAdmin(req.session)) return res.status(403).end()
if (!ip) return res.status(400).send("Bad ip")
await sql.report.deleteBlacklist(ip)
blacklist = null as any
res.status(200).send("Success")
})
let folders = ["animation", "artist", "character", "comic", "image", "pfp", "series", "tag", "video", "audio", "model", "history"]
let noCache = ["artist", "character", "series", "pfp", "tag"]
let encrypted = ["image", "comic"]
for (let i = 0; i < folders.length; i++) {
app.get(`/${folders[i]}/*`, imageLimiter, async (req: Request, res: Response, next: NextFunction) => {
let url = req.url.replace(/\?.*$/, "")
const mimeType = mime.getType(req.path)
try {
if (folders[i] === "tag") {
if (!url.endsWith(".png") && !url.endsWith(".jpg") && !url.endsWith(".jpeg") &&
!url.endsWith(".webp") && !url.endsWith(".gif")) return next()
}
res.setHeader("Content-Type", mimeType ?? "")
if (!noCache.includes(folders[i])) res.setHeader("Cache-Control", "public, max-age=2592000")
const key = decodeURIComponent(req.path.slice(1))
let upscaled = false
if (folders[i] === "image" || folders[i] === "comic" || folders[i] === "animation") {
upscaled = req.session.upscaledImages as boolean
if (req.headers["x-force-upscale"]) upscaled = req.headers["x-force-upscale"] === "true"
}
if (req.session.captchaNeeded) upscaled = false
let r18 = false
const postID = key.match(/(?<=\/)\d+(?=-)/)?.[0]
if (postID) {
const post = await sql.post.post(Number(postID))
if (post.restrict === "explicit") {
if (!req.session.showR18) return res.status(403).end()
r18 = true
}
if (post.hidden) {
if (!permissions.isMod(req.session)) return res.status(403).end()
}
}
let body = await serverFunctions.getFile(key, upscaled, r18)
let contentLength = body.length
if (!contentLength) return res.status(200).send(body)
if (!noCache.includes(folders[i]) && req.session.captchaNeeded) {
res.setHeader("Cache-Control", "no-store, no-cache, must-revalidate, proxy-revalidate")
body = await imageLock(body, false)
return res.status(200).end(body)
}
if (encrypted.includes(folders[i]) || req.path.includes("history/post")) {
body = cryptoFunctions.encrypt(body)
contentLength = body.length
}
if (req.headers.range) {
const parts = req.headers.range.replace(/bytes=/, "").split("-")
const start = parseInt(parts[0])
const end = parts[1] ? parseInt(parts[1]) : contentLength - 1
res.writeHead(206, {
"Content-Range": `bytes ${start}-${end}/${contentLength}`,
"Accept-Ranges": "bytes",
"Content-Length": end - start + 1
})
const stream = Readable.from(body.subarray(start, end + 1))
return stream.pipe(res)
}
res.setHeader("Content-Length", contentLength)
res.status(200).end(body)
} catch {
res.status(400).end()
}
})
app.get(`/thumbnail/:size/${folders[i]}/*`, imageLimiter, async (req: Request, res: Response, next: NextFunction) => {
try {
const mimeType = mime.getType(req.path)
res.setHeader("Content-Type", mimeType ?? "")
if (!noCache.includes(folders[i])) res.setHeader("Cache-Control", "public, max-age=2592000")
const key = decodeURIComponent(req.path.replace(`/thumbnail/${req.params.size}/`, ""))
let r18 = false
const postID = key.match(/(?<=\/)\d+(?=-)/)?.[0]
if (postID) {
const post = await sql.post.post(Number(postID))
if (post.restrict === "explicit") {
if (!req.session.showR18) return res.status(403).end()
r18 = true
}
if (post.hidden) {
if (!permissions.isMod(req.session)) return res.status(403).end()
}
}
let body = await serverFunctions.getFile(key, false, r18)
let contentLength = body.length
if (!contentLength) return res.status(200).send(body)
if (!noCache.includes(folders[i]) && req.session.captchaNeeded) {
res.setHeader("Cache-Control", "no-store, no-cache, must-revalidate, proxy-revalidate")
body = await imageLock(body)
return res.status(200).end(body)
}
if (mimeType?.includes("image")) {
const metadata = await sharp(body).metadata()
if (metadata.pages === 1) {
const ratio = metadata.height! / Number(req.params.size)
body = await sharp(body, {animated: false, limitInputPixels: false})
.resize(Math.round(metadata.width! / ratio), Number(req.params.size), {fit: "fill", kernel: "cubic"})
.toBuffer()
contentLength = body.length
}
}
if (encrypted.includes(folders[i]) || req.path.includes("history/post")) {
body = cryptoFunctions.encrypt(body)
contentLength = body.length
}
if (req.headers.range) {
const parts = req.headers.range.replace(/bytes=/, "").split("-")
const start = parseInt(parts[0])
const end = parts[1] ? parseInt(parts[1]) : contentLength - 1
res.writeHead(206, {
"Content-Range": `bytes ${start}-${end}/${contentLength}`,
"Accept-Ranges": "bytes",
"Content-Length": end - start + 1
})
const stream = Readable.from(body.subarray(start, end + 1))
return stream.pipe(res)
}
res.setHeader("Content-Length", contentLength)
res.status(200).end(body)
} catch (e) {
console.log(e)
res.status(400).end()
}
})
app.get(`/unverified/${folders[i]}/*`, imageLimiter, async (req: Request, res: Response, next: NextFunction) => {
try {
if (!permissions.isMod(req.session)) return res.status(403).end()
res.setHeader("Content-Type", mime.getType(req.path) ?? "")
if (!noCache.includes(folders[i])) res.setHeader("Cache-Control", "public, max-age=2592000")
const key = decodeURIComponent(req.path.replace("/unverified/", ""))
let upscaled = false
if (folders[i] === "image" || folders[i] === "comic" || folders[i] === "animation") {
upscaled = req.session.upscaledImages as boolean
if (req.headers["x-force-upscale"]) upscaled = req.headers["x-force-upscale"] === "true"
}
const body = await serverFunctions.getUnverifiedFile(key, upscaled)
const contentLength = body.length
if (!contentLength) {
res.setHeader("Cache-Control", "no-store, no-cache, must-revalidate, proxy-revalidate")
const noImg = await imageMissing()
return res.status(200).end(noImg)
}
if (req.headers.range) {
const parts = req.headers.range.replace(/bytes=/, "").split("-")
const start = parseInt(parts[0])
const end = parts[1] ? parseInt(parts[1]) : contentLength - 1
res.writeHead(206, {
"Content-Range": `bytes ${start}-${end}/${contentLength}`,
"Accept-Ranges": "bytes",
"Content-Length": end - start + 1
})
const stream = Readable.from(body.subarray(start, end + 1))
return stream.pipe(res)
}
res.setHeader("Content-Length", contentLength)
res.status(200).end(body)
} catch (e) {
console.log(e)
res.status(400).end()
}
})
app.get(`/thumbnail/:size/unverified/${folders[i]}/*`, imageLimiter, async (req: Request, res: Response, next: NextFunction) => {
try {
if (!permissions.isMod(req.session)) return res.status(403).end()
const mimeType = mime.getType(req.path)
res.setHeader("Content-Type", mimeType ?? "")
if (!noCache.includes(folders[i])) res.setHeader("Cache-Control", "public, max-age=2592000")
const key = decodeURIComponent(req.path.replace(`/thumbnail/${req.params.size}/`, "").replace("unverified/", ""))
let body = await serverFunctions.getUnverifiedFile(key, false)
let contentLength = body.length
if (!contentLength) {
res.setHeader("Cache-Control", "no-store, no-cache, must-revalidate, proxy-revalidate")
const noImg = await imageMissing()
return res.status(200).end(noImg)
}
if (mimeType?.includes("image")) {
const metadata = await sharp(body).metadata()
const ratio = metadata.height! / Number(req.params.size)
body = await sharp(body, {animated: false, limitInputPixels: false})
.resize(Math.round(metadata.width! / ratio), Number(req.params.size), {fit: "fill", kernel: "cubic"})
.toBuffer()
contentLength = body.length
}
if (req.headers.range) {
const parts = req.headers.range.replace(/bytes=/, "").split("-")
const start = parseInt(parts[0])
const end = parts[1] ? parseInt(parts[1]) : contentLength - 1
res.writeHead(206, {
"Content-Range": `bytes ${start}-${end}/${contentLength}`,
"Accept-Ranges": "bytes",
"Content-Length": end - start + 1
})
const stream = Readable.from(body.subarray(start, end + 1))
return stream.pipe(res)
}
res.setHeader("Content-Length", contentLength)
res.status(200).end(body)
} catch {
res.status(400).end()
}
})
}
app.get("/*", async (req: Request, res: Response) => {
if (!req.hostname.includes("moepictures") && !req.hostname.includes("localhost") && !req.hostname.includes("192.168.68")) {
res.redirect(301, `https://moepictures.moe${req.path}`)
}
if (!req.session.csrfToken) {
const {secret, token} = serverFunctions.generateCSRF()
req.session.csrfSecret = secret
req.session.csrfToken = token
}
res.setHeader("Content-Type", mime.getType(req.path) ?? "")
res.setHeader("Cross-Origin-Opener-Policy", "same-origin")
res.setHeader("Cross-Origin-Embedder-Policy", "require-corp")
const document = fs.readFileSync(path.join(__dirname, "./dist/index.html"), {encoding: "utf-8"})
const App = await import("./App").then((r) => r.default)
const html = renderToString(<Router location={req.url}><App/></Router>)
res.status(200).send(document?.replace(`<div id="root"></div>`, `<div id="root">${html}</div>`))
})
const deleteExpiredTokens = async () => {
const emailTokens = await sql.token.emailTokens()
for (const tokenData of emailTokens) {
const expireDate = new Date(tokenData.expires)
if (new Date() > expireDate) {
await sql.token.deleteEmailToken(tokenData.email)
}
}
const passwordTokens = await sql.token.passwordTokens()
for (const tokenData of passwordTokens) {
const expireDate = new Date(tokenData.expires)
if (new Date() > expireDate) {
await sql.token.deletePasswordToken(tokenData.username)
}
}
}
const run = async () => {
await sql.createDB()
await deleteExpiredTokens()
/** Unverified tags */
await sql.tag.insertUnverifiedTag("unknown-artist", "artist")
await sql.tag.insertUnverifiedTag("unknown-character", "character")
await sql.tag.insertUnverifiedTag("unknown-series", "series")
await sql.tag.insertUnverifiedTag("needs-tags", "meta")
/* Default artist tags */
let exists = await sql.tag.insertTag("unknown-artist", "artist")
if (!exists) await sql.tag.updateTag("unknown-artist", "description", "The artist is unknown.")
exists = await sql.tag.insertTag("original", "artist")
if (!exists) await sql.tag.updateTag("original", "description", "The character is an original creation, ie. this is not fanart.")
exists = await sql.tag.insertTag("official-art", "artist")
if (!exists) await sql.tag.updateTag("official-art", "description", "Art made by the official company of the series (where the original artist is unknown).")
/* Default character tags */
exists = await sql.tag.insertTag("unknown-character", "character")
if (!exists) await sql.tag.updateTag("unknown-character", "description", "The character is unknown.")
exists = await sql.tag.insertTag("no-character", "character")
if (!exists) await sql.tag.updateTag("no-character", "description", "The character is not applicable.")
/* Default series tags */
exists = await sql.tag.insertTag("unknown-series", "series")
if (!exists) await sql.tag.updateTag("unknown-series", "description", "The series is unknown.")
exists = await sql.tag.insertTag("no-series", "series")
if (!exists) await sql.tag.updateTag("no-series", "description", "The series is not applicable.")
/* Default meta tags */
exists = await sql.tag.insertTag("needs-tags", "meta")
if (!exists) await sql.tag.updateTag("needs-tags", "description", "The post needs tags.")
exists = await sql.tag.insertTag("no-audio", "meta")
if (!exists) await sql.tag.updateTag("no-audio", "description", "The post is a video with no audio.")
exists = await sql.tag.insertTag("with-audio", "meta")
if (!exists) await sql.tag.updateTag("with-audio", "description", "The post is a video with audio.")
exists = await sql.tag.insertTag("self-post", "meta")
if (!exists) await sql.tag.updateTag("self-post", "description", "The artwork was posted by the original creator.")
exists = await sql.tag.insertTag("transparent", "meta")
if (!exists) await sql.tag.updateTag("transparent", "description", "The post has a transparent background.")
exists = await sql.tag.insertTag("text", "meta")
if (!exists) await sql.tag.updateTag("text", "description", "The post has contains text.")
exists = await sql.tag.insertTag("commentary", "meta")
if (!exists) await sql.tag.updateTag("commentary", "description", "The post has artist commentary.")
exists = await sql.tag.insertTag("translated", "meta")
if (!exists) await sql.tag.updateTag("translated", "description", "The post contains complete translations.")
exists = await sql.tag.insertTag("untranslated", "meta")
if (!exists) await sql.tag.updateTag("untranslated", "description", "The post is untranslated.")
exists = await sql.tag.insertTag("partially-translated", "meta")
if (!exists) await sql.tag.updateTag("partially-translated", "description", "Post is only partially translated.")
exists = await sql.tag.insertTag("check-translation", "meta")
if (!exists) await sql.tag.updateTag("check-translation", "description", "Check the translations, because they might be incorrect.")
exists = await sql.tag.insertTag("multiple-artists", "meta")
if (!exists) await sql.tag.updateTag("multiple-artists", "description", "The post has multiple artists.")
exists = await sql.tag.insertTag("bad-pixiv-id", "meta")
if (!exists) await sql.tag.updateTag("bad-pixiv-id", "description", "The pixiv id was deleted.")
exists = await sql.tag.insertTag("paid-reward-available", "meta")
if (!exists) await sql.tag.updateTag("paid-reward-available", "description", "The artist offers a paid reward for this post.")
exists = await sql.tag.insertTag("third-party-edit", "meta")
if (!exists) await sql.tag.updateTag("third-party-edit", "description", "The post is a third party edit.")
exists = await sql.tag.insertTag("third-party-source", "meta")
if (!exists) await sql.tag.updateTag("third-party-source", "description", "The source of the post is a repost (not posted by the original artist).")
app.listen(process.env.PORT || 8082, "0.0.0.0", () => console.log("Started the website server!"))
}
run()