summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorWu Cheng-Han2017-05-09 22:12:20 +0800
committerWu Cheng-Han2017-05-09 22:12:20 +0800
commitc0f13cf8d81ea5ff29871548cf75ff63743ffa22 (patch)
tree273e6128fc3f9e80f5fa518f0c786c1a888d969f /lib
parentbe99350655ca33aaa14b99d7b44b529aba0c8773 (diff)
parent90631df2ba924e3c71f611220290934d5ebb599e (diff)
Merge branch 'master' of https://github.com/jackycute/HackMD
Diffstat (limited to '')
-rw-r--r--lib/utils.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/utils.js b/lib/utils.js
index 6c36549b..d9289dca 100644
--- a/lib/utils.js
+++ b/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
+ }
+}