1
0
Fork 0
peertube/server/helpers/express-utils.ts

119 lines
3.1 KiB
TypeScript
Raw Normal View History

2018-04-24 13:10:54 +00:00
import * as express from 'express'
import * as multer from 'multer'
import { CONFIG, REMOTE_SCHEME } from '../initializers'
import { logger } from './logger'
2018-08-14 13:28:30 +00:00
import { deleteFileAsync, generateRandomString } from './utils'
2018-08-06 09:45:24 +00:00
import { extname } from 'path'
2018-08-14 13:28:30 +00:00
import { isArray } from './custom-validators/misc'
2018-09-21 12:08:14 +00:00
import { UserModel } from '../models/account/user'
2018-04-24 13:10:54 +00:00
2018-07-20 16:31:49 +00:00
function buildNSFWFilter (res: express.Response, paramNSFW?: string) {
if (paramNSFW === 'true') return true
if (paramNSFW === 'false') return false
if (paramNSFW === 'both') return undefined
2018-07-20 12:35:18 +00:00
2018-04-24 13:10:54 +00:00
if (res.locals.oauth) {
2018-09-21 12:08:14 +00:00
const user: UserModel = res.locals.oauth.token.User
2018-09-04 09:19:19 +00:00
2018-07-20 12:35:18 +00:00
// User does not want NSFW videos
2018-09-04 09:19:19 +00:00
if (user.nsfwPolicy === 'do_not_list') return false
// Both
return undefined
2018-04-24 13:10:54 +00:00
}
2018-07-20 12:35:18 +00:00
if (CONFIG.INSTANCE.DEFAULT_NSFW_POLICY === 'do_not_list') return false
// Display all
return null
2018-04-24 13:10:54 +00:00
}
2018-08-14 13:28:30 +00:00
function cleanUpReqFiles (req: { files: { [ fieldname: string ]: Express.Multer.File[] } | Express.Multer.File[] }) {
const files = req.files
if (!files) return
if (isArray(files)) {
(files as Express.Multer.File[]).forEach(f => deleteFileAsync(f.path))
return
}
for (const key of Object.keys(files)) {
const file = files[ key ]
if (isArray(file)) file.forEach(f => deleteFileAsync(f.path))
else deleteFileAsync(file.path)
}
}
2018-04-24 13:10:54 +00:00
function getHostWithPort (host: string) {
const splitted = host.split(':')
// The port was not specified
if (splitted.length === 1) {
if (REMOTE_SCHEME.HTTP === 'https') return host + ':443'
return host + ':80'
}
return host
}
function badRequest (req: express.Request, res: express.Response, next: express.NextFunction) {
return res.type('json').status(400).end()
}
function createReqFiles (
fieldNames: string[],
mimeTypes: { [ id: string ]: string },
destinations: { [ fieldName: string ]: string }
) {
const storage = multer.diskStorage({
destination: (req, file, cb) => {
cb(null, destinations[ file.fieldname ])
},
filename: async (req, file, cb) => {
2018-08-06 09:45:24 +00:00
const extension = mimeTypes[ file.mimetype ] || extname(file.originalname)
2018-04-24 13:10:54 +00:00
let randomString = ''
try {
randomString = await generateRandomString(16)
} catch (err) {
logger.error('Cannot generate random string for file name.', { err })
randomString = 'fake-random-string'
}
cb(null, randomString + extension)
}
})
let fields: { name: string, maxCount: number }[] = []
2018-04-24 13:10:54 +00:00
for (const fieldName of fieldNames) {
fields.push({
name: fieldName,
maxCount: 1
})
}
return multer({ storage }).fields(fields)
}
2018-08-24 13:36:50 +00:00
function isUserAbleToSearchRemoteURI (res: express.Response) {
const user: UserModel = res.locals.oauth ? res.locals.oauth.token.User : undefined
2018-08-24 13:36:50 +00:00
return CONFIG.SEARCH.REMOTE_URI.ANONYMOUS === true ||
(CONFIG.SEARCH.REMOTE_URI.USERS === true && user !== undefined)
}
2018-04-24 13:10:54 +00:00
// ---------------------------------------------------------------------------
export {
2018-07-20 12:35:18 +00:00
buildNSFWFilter,
2018-04-24 13:10:54 +00:00
getHostWithPort,
2018-08-24 13:36:50 +00:00
isUserAbleToSearchRemoteURI,
2018-04-24 13:10:54 +00:00
badRequest,
2018-08-14 13:28:30 +00:00
createReqFiles,
cleanUpReqFiles
2018-04-24 13:10:54 +00:00
}