mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
62 lines
1.6 KiB
JavaScript
62 lines
1.6 KiB
JavaScript
|
/* eslint-disable
|
||
|
handle-callback-err,
|
||
|
*/
|
||
|
// TODO: This file was created by bulk-decaffeinate.
|
||
|
// Fix any style issues and re-enable lint.
|
||
|
/*
|
||
|
* decaffeinate suggestions:
|
||
|
* DS102: Remove unnecessary code created because of implicit returns
|
||
|
* DS207: Consider shorter variations of null checks
|
||
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
||
|
*/
|
||
|
let SystemMessageManager
|
||
|
const { SystemMessage } = require('../../models/SystemMessage')
|
||
|
|
||
|
module.exports = SystemMessageManager = {
|
||
|
getMessages(callback) {
|
||
|
if (callback == null) {
|
||
|
callback = function(error, messages) {}
|
||
|
}
|
||
|
if (this._cachedMessages != null) {
|
||
|
return callback(null, this._cachedMessages)
|
||
|
} else {
|
||
|
return this.getMessagesFromDB((error, messages) => {
|
||
|
if (error != null) {
|
||
|
return callback(error)
|
||
|
}
|
||
|
this._cachedMessages = messages
|
||
|
return callback(null, messages)
|
||
|
})
|
||
|
}
|
||
|
},
|
||
|
|
||
|
getMessagesFromDB(callback) {
|
||
|
if (callback == null) {
|
||
|
callback = function(error, messages) {}
|
||
|
}
|
||
|
return SystemMessage.find({}, callback)
|
||
|
},
|
||
|
|
||
|
clearMessages(callback) {
|
||
|
if (callback == null) {
|
||
|
callback = function(error) {}
|
||
|
}
|
||
|
return SystemMessage.remove({}, callback)
|
||
|
},
|
||
|
|
||
|
createMessage(content, callback) {
|
||
|
if (callback == null) {
|
||
|
callback = function(error) {}
|
||
|
}
|
||
|
const message = new SystemMessage({ content })
|
||
|
return message.save(callback)
|
||
|
},
|
||
|
|
||
|
clearCache() {
|
||
|
return delete this._cachedMessages
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const CACHE_TIMEOUT = 20 * 1000 // 20 seconds
|
||
|
setInterval(() => SystemMessageManager.clearCache(), CACHE_TIMEOUT)
|