| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- /* eslint-disable
- camelcase,
- handle-callback-err,
- */
- // TODO: This file was created by bulk-decaffeinate.
- // Fix any style issues and re-enable lint.
- /*
- * decaffeinate suggestions:
- * DS101: Remove unnecessary use of Array.from
- * 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 ProjectPersistenceManager
- const UrlCache = require('./UrlCache')
- const CompileManager = require('./CompileManager')
- const db = require('./db')
- const dbQueue = require('./DbQueue')
- const async = require('async')
- const logger = require('logger-sharelatex')
- const oneDay = 24 * 60 * 60 * 1000
- const Settings = require('settings-sharelatex')
- module.exports = ProjectPersistenceManager = {
- EXPIRY_TIMEOUT: Settings.project_cache_length_ms || oneDay * 2.5,
- markProjectAsJustAccessed(project_id, callback) {
- if (callback == null) {
- callback = function(error) {}
- }
- const job = cb =>
- db.Project.findOrCreate({ where: { project_id } })
- .spread((project, created) =>
- project
- .updateAttributes({ lastAccessed: new Date() })
- .then(() => cb())
- .error(cb)
- )
- .error(cb)
- return dbQueue.queue.push(job, callback)
- },
- clearExpiredProjects(callback) {
- if (callback == null) {
- callback = function(error) {}
- }
- return ProjectPersistenceManager._findExpiredProjectIds(function(
- error,
- project_ids
- ) {
- if (error != null) {
- return callback(error)
- }
- logger.log({ project_ids }, 'clearing expired projects')
- const jobs = Array.from(project_ids || []).map(project_id =>
- (project_id => callback =>
- ProjectPersistenceManager.clearProjectFromCache(project_id, function(
- err
- ) {
- if (err != null) {
- logger.error({ err, project_id }, 'error clearing project')
- }
- return callback()
- }))(project_id)
- )
- return async.series(jobs, function(error) {
- if (error != null) {
- return callback(error)
- }
- return CompileManager.clearExpiredProjects(
- ProjectPersistenceManager.EXPIRY_TIMEOUT,
- error => callback()
- )
- })
- })
- }, // ignore any errors from deleting directories
- clearProject(project_id, user_id, callback) {
- if (callback == null) {
- callback = function(error) {}
- }
- logger.log({ project_id, user_id }, 'clearing project for user')
- return CompileManager.clearProject(project_id, user_id, function(error) {
- if (error != null) {
- return callback(error)
- }
- return ProjectPersistenceManager.clearProjectFromCache(
- project_id,
- function(error) {
- if (error != null) {
- return callback(error)
- }
- return callback()
- }
- )
- })
- },
- clearProjectFromCache(project_id, callback) {
- if (callback == null) {
- callback = function(error) {}
- }
- logger.log({ project_id }, 'clearing project from cache')
- return UrlCache.clearProject(project_id, function(error) {
- if (error != null) {
- logger.err({ error, project_id }, 'error clearing project from cache')
- return callback(error)
- }
- return ProjectPersistenceManager._clearProjectFromDatabase(
- project_id,
- function(error) {
- if (error != null) {
- logger.err(
- { error, project_id },
- 'error clearing project from database'
- )
- }
- return callback(error)
- }
- )
- })
- },
- _clearProjectFromDatabase(project_id, callback) {
- if (callback == null) {
- callback = function(error) {}
- }
- logger.log({ project_id }, 'clearing project from database')
- const job = cb =>
- db.Project.destroy({ where: { project_id } })
- .then(() => cb())
- .error(cb)
- return dbQueue.queue.push(job, callback)
- },
- _findExpiredProjectIds(callback) {
- if (callback == null) {
- callback = function(error, project_ids) {}
- }
- const job = function(cb) {
- const keepProjectsFrom = new Date(
- Date.now() - ProjectPersistenceManager.EXPIRY_TIMEOUT
- )
- const q = {}
- q[db.op.lt] = keepProjectsFrom
- return db.Project.findAll({ where: { lastAccessed: q } })
- .then(projects =>
- cb(
- null,
- projects.map(project => project.project_id)
- )
- )
- .error(cb)
- }
- return dbQueue.queue.push(job, callback)
- }
- }
- logger.log(
- { EXPIRY_TIMEOUT: ProjectPersistenceManager.EXPIRY_TIMEOUT },
- 'project assets kept timeout'
- )
|