]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/helpers/express-utils.ts
Better AP route checker
[github/Chocobozzz/PeerTube.git] / server / helpers / express-utils.ts
CommitLineData
0626e7af
C
1import * as express from 'express'
2import * as multer from 'multer'
3import { CONFIG, REMOTE_SCHEME } from '../initializers'
4import { logger } from './logger'
06215f15 5import { deleteFileAsync, generateRandomString } from './utils'
2769e297 6import { extname } from 'path'
06215f15 7import { isArray } from './custom-validators/misc'
d1a63fc7 8import { UserModel } from '../models/account/user'
0626e7af 9
2feebf3e 10function buildNSFWFilter (res?: express.Response, paramNSFW?: string) {
0b18f4aa
C
11 if (paramNSFW === 'true') return true
12 if (paramNSFW === 'false') return false
13 if (paramNSFW === 'both') return undefined
d525fc39 14
2feebf3e 15 if (res && res.locals.oauth) {
d1a63fc7 16 const user: UserModel = res.locals.oauth.token.User
eb87f9a4 17
d525fc39 18 // User does not want NSFW videos
eb87f9a4
C
19 if (user.nsfwPolicy === 'do_not_list') return false
20
21 // Both
22 return undefined
0626e7af
C
23 }
24
d525fc39
C
25 if (CONFIG.INSTANCE.DEFAULT_NSFW_POLICY === 'do_not_list') return false
26
27 // Display all
28 return null
0626e7af
C
29}
30
06215f15
C
31function cleanUpReqFiles (req: { files: { [ fieldname: string ]: Express.Multer.File[] } | Express.Multer.File[] }) {
32 const files = req.files
33
34 if (!files) return
35
36 if (isArray(files)) {
37 (files as Express.Multer.File[]).forEach(f => deleteFileAsync(f.path))
38 return
39 }
40
41 for (const key of Object.keys(files)) {
42 const file = files[ key ]
43
44 if (isArray(file)) file.forEach(f => deleteFileAsync(f.path))
45 else deleteFileAsync(file.path)
46 }
47}
48
0626e7af
C
49function getHostWithPort (host: string) {
50 const splitted = host.split(':')
51
52 // The port was not specified
53 if (splitted.length === 1) {
54 if (REMOTE_SCHEME.HTTP === 'https') return host + ':443'
55
56 return host + ':80'
57 }
58
59 return host
60}
61
62function badRequest (req: express.Request, res: express.Response, next: express.NextFunction) {
63 return res.type('json').status(400).end()
64}
65
66function createReqFiles (
67 fieldNames: string[],
68 mimeTypes: { [ id: string ]: string },
69 destinations: { [ fieldName: string ]: string }
70) {
71 const storage = multer.diskStorage({
72 destination: (req, file, cb) => {
73 cb(null, destinations[ file.fieldname ])
74 },
75
76 filename: async (req, file, cb) => {
2769e297 77 const extension = mimeTypes[ file.mimetype ] || extname(file.originalname)
0626e7af
C
78 let randomString = ''
79
80 try {
81 randomString = await generateRandomString(16)
82 } catch (err) {
83 logger.error('Cannot generate random string for file name.', { err })
84 randomString = 'fake-random-string'
85 }
86
87 cb(null, randomString + extension)
88 }
89 })
90
c1e791ba 91 let fields: { name: string, maxCount: number }[] = []
0626e7af
C
92 for (const fieldName of fieldNames) {
93 fields.push({
94 name: fieldName,
95 maxCount: 1
96 })
97 }
98
99 return multer({ storage }).fields(fields)
100}
101
687d638c 102function isUserAbleToSearchRemoteURI (res: express.Response) {
1cd3facc 103 const user: UserModel = res.locals.oauth ? res.locals.oauth.token.User : undefined
687d638c
C
104
105 return CONFIG.SEARCH.REMOTE_URI.ANONYMOUS === true ||
106 (CONFIG.SEARCH.REMOTE_URI.USERS === true && user !== undefined)
107}
108
0626e7af
C
109// ---------------------------------------------------------------------------
110
111export {
d525fc39 112 buildNSFWFilter,
0626e7af 113 getHostWithPort,
687d638c 114 isUserAbleToSearchRemoteURI,
0626e7af 115 badRequest,
06215f15
C
116 createReqFiles,
117 cleanUpReqFiles
0626e7af 118}