mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 01:36:29 -05:00
b5ccceff59
Signed-off-by: David Mehren <dmehren1@gmail.com>
45 lines
1.4 KiB
JavaScript
45 lines
1.4 KiB
JavaScript
const noteUtil = require('./util')
|
|
const models = require('../../models')
|
|
const errors = require('../../errors')
|
|
const logger = require('../../logger')
|
|
const config = require('../../config')
|
|
|
|
exports.publishSlideActions = function (req, res, next) {
|
|
noteUtil.findNote(req, res, function (note) {
|
|
const action = req.params.action
|
|
if (action === 'edit') {
|
|
res.redirect(config.serverURL + '/' + (note.alias ? note.alias : models.Note.encodeNoteId(note.id)) + '?both')
|
|
} else { res.redirect(config.serverURL + '/p/' + note.shortid) }
|
|
})
|
|
}
|
|
|
|
exports.showPublishSlide = function (req, res, next) {
|
|
const include = [{
|
|
model: models.User,
|
|
as: 'owner'
|
|
}, {
|
|
model: models.User,
|
|
as: 'lastchangeuser'
|
|
}]
|
|
noteUtil.findNote(req, res, function (note) {
|
|
// force to use short id
|
|
const shortid = req.params.shortid
|
|
if ((note.alias && shortid !== note.alias) || (!note.alias && shortid !== note.shortid)) {
|
|
return res.redirect(config.serverURL + '/p/' + (note.alias || note.shortid))
|
|
}
|
|
note.increment('viewcount').then(function (note) {
|
|
if (!note) {
|
|
return errors.errorNotFound(res)
|
|
}
|
|
noteUtil.getPublishData(req, res, note, (data) => {
|
|
res.set({
|
|
'Cache-Control': 'private' // only cache by client
|
|
})
|
|
return res.render('slide.ejs', data)
|
|
})
|
|
}).catch(function (err) {
|
|
logger.error(err)
|
|
return errors.errorInternalError(res)
|
|
})
|
|
}, include)
|
|
}
|