Merge pull request #1665 from glpatcern/develop

Support anonymous updates via API if allowAnonymousEdits is true
This commit is contained in:
Yukai Huang 2021-03-22 14:20:20 +08:00 committed by GitHub
commit e00eaa82a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 4 deletions

View File

@ -268,7 +268,7 @@ const deleteNote = async (req, res) => {
}
const updateNote = async (req, res) => {
if (req.isAuthenticated()) {
if (req.isAuthenticated() || config.allowAnonymousEdits) {
const noteId = await Note.parseNoteIdAsync(req.params.noteId)
try {
const note = await Note.findOne({
@ -294,7 +294,7 @@ const updateNote = async (req, res) => {
lastchangeAt: now,
authorship: [
[
req.user.id,
req.isAuthenticated() ? req.user.id : null,
0,
content.length,
now,
@ -308,7 +308,9 @@ const updateNote = async (req, res) => {
return errorInternalError(req, res)
}
updateHistory(req.user.id, note.id, content)
if (req.isAuthenticated()) {
updateHistory(req.user.id, note.id, content)
}
Revision.saveNoteRevision(note, (err, revision) => {
if (err) {
@ -321,7 +323,7 @@ const updateNote = async (req, res) => {
})
})
} catch (err) {
logger.error(err)
logger.error(err.stack)
logger.error('Update note failed: Internal Error.')
return errorInternalError(req, res)
}