diff options
author | Dustin Frisch | 2018-01-11 00:51:22 +0100 |
---|---|---|
committer | Dustin Frisch | 2018-01-18 10:41:58 +0100 |
commit | f47601857e9774731d5997f5c3b3256cf8bb623b (patch) | |
tree | 46cbf3dc02ea8a7d8a5b072504bacec0a9d3ab1b | |
parent | a8fa88831705625e053c7d493a4b2f83b7b2a4a8 (diff) |
Allow posting new note with content
Signed-off-by: Dustin Frisch <fooker@lab.sh>
Diffstat (limited to '')
-rw-r--r-- | lib/response.js | 3 | ||||
-rw-r--r-- | lib/web/noteRouter.js | 4 | ||||
-rw-r--r-- | lib/web/utils.js | 7 |
3 files changed, 13 insertions, 1 deletions
diff --git a/lib/response.js b/lib/response.js index 9f3d5a44..2e8924b7 100644 --- a/lib/response.js +++ b/lib/response.js @@ -117,7 +117,8 @@ function newNote (req, res, next) { } models.Note.create({ ownerId: owner, - alias: req.alias ? req.alias : null + alias: req.alias ? req.alias : null, + content: req.body ? req.body : '' }).then(function (note) { return res.redirect(config.serverurl + '/' + LZString.compressToBase64(note.id)) }).catch(function (err) { diff --git a/lib/web/noteRouter.js b/lib/web/noteRouter.js index 007c02c2..41bf5f73 100644 --- a/lib/web/noteRouter.js +++ b/lib/web/noteRouter.js @@ -4,10 +4,14 @@ const Router = require('express').Router const response = require('../response') +const {markdownParser} = require('./utils') + const noteRouter = module.exports = Router() // get new note noteRouter.get('/new', response.newNote) +// post new note with content +noteRouter.post('/new', markdownParser, response.newNote) // get publish note noteRouter.get('/s/:shortid', response.showPublishNote) // publish note actions diff --git a/lib/web/utils.js b/lib/web/utils.js index c9016523..d58294ad 100644 --- a/lib/web/utils.js +++ b/lib/web/utils.js @@ -7,3 +7,10 @@ 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 +}) |