mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-09 13:51:57 -04:00
Add Content-Type to the images uploaded to AWS S3
This commit is contained in:
parent
5343a61ae9
commit
03ef1bf4f0
2 changed files with 23 additions and 0 deletions
20
lib/utils.js
20
lib/utils.js
|
@ -3,3 +3,23 @@
|
|||
exports.isSQLite = function isSQLite (sequelize) {
|
||||
return sequelize.options.dialect === 'sqlite'
|
||||
}
|
||||
|
||||
exports.getImageMimeType = function getImageMimeType (imagePath) {
|
||||
var fileExtension = /[^.]+$/.exec(imagePath)
|
||||
|
||||
switch (fileExtension[0]) {
|
||||
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"
|
||||
default:
|
||||
return undefined
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue