2017-03-28 07:25:36 +00:00
|
|
|
'use strict'
|
2017-06-01 08:47:52 +00:00
|
|
|
const fs = require('fs')
|
|
|
|
const path = require('path')
|
2020-01-04 22:30:23 +00:00
|
|
|
const bodyParser = require('body-parser')
|
2017-03-28 07:25:36 +00:00
|
|
|
|
|
|
|
exports.isSQLite = function isSQLite (sequelize) {
|
|
|
|
return sequelize.options.dialect === 'sqlite'
|
|
|
|
}
|
2017-05-08 08:22:52 +00:00
|
|
|
|
|
|
|
exports.getImageMimeType = function getImageMimeType (imagePath) {
|
2019-08-04 15:26:06 +00:00
|
|
|
const fileExtension = /[^.]+$/.exec(imagePath)
|
2017-05-08 08:22:52 +00:00
|
|
|
|
|
|
|
switch (fileExtension[0]) {
|
2017-05-08 09:00:45 +00:00
|
|
|
case 'bmp':
|
|
|
|
return 'image/bmp'
|
|
|
|
case 'gif':
|
|
|
|
return 'image/gif'
|
|
|
|
case 'jpg':
|
|
|
|
case 'jpeg':
|
|
|
|
return 'image/jpeg'
|
|
|
|
case 'png':
|
|
|
|
return 'image/png'
|
|
|
|
case 'tiff':
|
|
|
|
return 'image/tiff'
|
2017-05-08 08:22:52 +00:00
|
|
|
default:
|
|
|
|
return undefined
|
|
|
|
}
|
|
|
|
}
|
2017-06-01 08:47:52 +00:00
|
|
|
|
|
|
|
exports.isRevealTheme = function isRevealTheme (theme) {
|
2017-06-02 10:34:35 +00:00
|
|
|
if (fs.existsSync(path.join(__dirname, '..', 'public', 'build', 'reveal.js', 'css', 'theme', theme + '.css'))) {
|
2017-06-01 08:47:52 +00:00
|
|
|
return theme
|
|
|
|
}
|
|
|
|
return undefined
|
|
|
|
}
|
2020-01-04 22:30:23 +00:00
|
|
|
|
|
|
|
exports.wrap = innerHandler => (req, res, next) => innerHandler(req, res).catch(err => next(err))
|
|
|
|
|
|
|
|
// create application/x-www-form-urlencoded parser
|
|
|
|
exports.urlencodedParser = bodyParser.urlencoded({
|
|
|
|
extended: false,
|
|
|
|
limit: 1024 * 1024 * 10 // 10 mb
|
|
|
|
})
|
|
|
|
|
|
|
|
// create text/markdown parser
|
|
|
|
exports.markdownParser = bodyParser.text({
|
|
|
|
inflate: true,
|
|
|
|
type: ['text/plain', 'text/markdown'],
|
|
|
|
limit: 1024 * 1024 * 10 // 10 mb
|
|
|
|
})
|