mirror of
https://github.com/status-im/codimd.git
synced 2025-02-10 13:16:20 +00:00
195 lines
5.9 KiB
TypeScript
195 lines
5.9 KiB
TypeScript
// history
|
|
// external modules
|
|
import LZString from '@hackmd/lz-string'
|
|
|
|
import {Note, User} from '../models'
|
|
import {logger} from '../logger'
|
|
import config from '../config'
|
|
import * as response from '../response'
|
|
|
|
function getHistory(userid, callback) {
|
|
User.findOne({
|
|
where: {
|
|
id: userid
|
|
}
|
|
}).then(function (user) {
|
|
if (!user) {
|
|
return callback(null, null)
|
|
}
|
|
let history: any = []
|
|
if (user.history) {
|
|
history = JSON.parse(user.history)
|
|
// migrate LZString encoded note id to base64url encoded note id
|
|
for (let i = 0, l = (history as []).length; i < l; i++) {
|
|
// Calculate minimal string length for an UUID that is encoded
|
|
// base64 encoded and optimize comparison by using -1
|
|
// this should make a lot of LZ-String parsing errors obsolete
|
|
// as we can assume that a nodeId that is 48 chars or longer is a
|
|
// noteID.
|
|
const base64UuidLength = ((4 * 36) / 3) - 1
|
|
if (!(history[i].id.length > base64UuidLength)) {
|
|
continue
|
|
}
|
|
try {
|
|
const id = LZString.decompressFromBase64(history[i].id)
|
|
if (id && Note.checkNoteIdValid(id)) {
|
|
history[i].id = Note.encodeNoteId(id)
|
|
}
|
|
} catch (err) {
|
|
// most error here comes from LZString, ignore
|
|
if (err.message === 'Cannot read property \'charAt\' of undefined') {
|
|
logger.warning('Looks like we can not decode "' + history[i].id + '" with LZString. Can be ignored.')
|
|
} else {
|
|
logger.error(err)
|
|
}
|
|
}
|
|
}
|
|
history = parseHistoryToObject(history)
|
|
}
|
|
if (config.debug) {
|
|
logger.info('read history success: ' + user.id)
|
|
}
|
|
return callback(null, history)
|
|
}).catch(function (err) {
|
|
logger.error('read history failed: ' + err)
|
|
return callback(err, null)
|
|
})
|
|
}
|
|
|
|
function setHistory(userid, history, callback) {
|
|
User.update({
|
|
history: JSON.stringify(parseHistoryToArray(history))
|
|
}, {
|
|
where: {
|
|
id: userid
|
|
}
|
|
}).then(function (count) {
|
|
return callback(null, count)
|
|
}).catch(function (err) {
|
|
logger.error('set history failed: ' + err)
|
|
return callback(err, null)
|
|
})
|
|
}
|
|
|
|
export function updateHistory(userid, noteId, document?: string, time?: any) {
|
|
if (userid && noteId && typeof document !== 'undefined') {
|
|
getHistory(userid, function (err, history) {
|
|
if (err || !history) return
|
|
if (!history[noteId]) {
|
|
history[noteId] = {}
|
|
}
|
|
const noteHistory = history[noteId]
|
|
const noteInfo = Note.parseNoteInfo(document)
|
|
noteHistory.id = noteId
|
|
noteHistory.text = noteInfo.title
|
|
noteHistory.time = time || Date.now()
|
|
noteHistory.tags = noteInfo.tags
|
|
setHistory(userid, history, function (err, count) {
|
|
if (err) {
|
|
logger.log(err)
|
|
}
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
function parseHistoryToArray(history) {
|
|
const _history = []
|
|
Object.keys(history).forEach(function (key) {
|
|
const item = history[key]
|
|
_history.push(item)
|
|
})
|
|
return _history
|
|
}
|
|
|
|
function parseHistoryToObject(history) {
|
|
const _history = {}
|
|
for (let i = 0, l = history.length; i < l; i++) {
|
|
const item = history[i]
|
|
_history[item.id] = item
|
|
}
|
|
return _history
|
|
}
|
|
|
|
export function historyGet(req, res) {
|
|
if (req.isAuthenticated()) {
|
|
getHistory(req.user.id, function (err, history) {
|
|
if (err) return response.errorInternalError(req, res)
|
|
if (!history) return response.errorNotFound(req, res)
|
|
res.send({
|
|
history: parseHistoryToArray(history)
|
|
})
|
|
})
|
|
} else {
|
|
return response.errorForbidden(req, res)
|
|
}
|
|
}
|
|
|
|
export function historyPost(req, res) {
|
|
if (req.isAuthenticated()) {
|
|
const noteId = req.params.noteId
|
|
if (!noteId) {
|
|
if (typeof req.body.history === 'undefined') return response.errorBadRequest(req, res)
|
|
if (config.debug) {
|
|
logger.info('SERVER received history from [' + req.user.id + ']: ' + req.body.history)
|
|
}
|
|
let history = null
|
|
try {
|
|
history = JSON.parse(req.body.history)
|
|
} catch (err) {
|
|
return response.errorBadRequest(req, res)
|
|
}
|
|
if (Array.isArray(history)) {
|
|
setHistory(req.user.id, history, function (err, count) {
|
|
if (err) return response.errorInternalError(req, res)
|
|
res.end()
|
|
})
|
|
} else {
|
|
return response.errorBadRequest(req, res)
|
|
}
|
|
} else {
|
|
if (typeof req.body.pinned === 'undefined') return response.errorBadRequest(req, res)
|
|
getHistory(req.user.id, function (err, history) {
|
|
if (err) return response.errorInternalError(req, res)
|
|
if (!history) return response.errorNotFound(req, res)
|
|
if (!history[noteId]) return response.errorNotFound(req, res)
|
|
if (req.body.pinned === 'true' || req.body.pinned === 'false') {
|
|
history[noteId].pinned = (req.body.pinned === 'true')
|
|
setHistory(req.user.id, history, function (err, count) {
|
|
if (err) return response.errorInternalError(req, res)
|
|
res.end()
|
|
})
|
|
} else {
|
|
return response.errorBadRequest(req, res)
|
|
}
|
|
})
|
|
}
|
|
} else {
|
|
return response.errorForbidden(req, res)
|
|
}
|
|
}
|
|
|
|
export function historyDelete(req, res) {
|
|
if (req.isAuthenticated()) {
|
|
const noteId = req.params.noteId
|
|
if (!noteId) {
|
|
setHistory(req.user.id, [], function (err, count) {
|
|
if (err) return response.errorInternalError(req, res)
|
|
res.end()
|
|
})
|
|
} else {
|
|
getHistory(req.user.id, function (err, history) {
|
|
if (err) return response.errorInternalError(req, res)
|
|
if (!history) return response.errorNotFound(req, res)
|
|
delete history[noteId]
|
|
setHistory(req.user.id, history, function (err, count) {
|
|
if (err) return response.errorInternalError(req, res)
|
|
res.end()
|
|
})
|
|
})
|
|
}
|
|
} else {
|
|
return response.errorForbidden(req, res)
|
|
}
|
|
}
|