2014-02-12 05:23:40 -05:00
|
|
|
ProjectEntityHandler = require "./ProjectEntityHandler"
|
2018-02-01 10:31:42 -05:00
|
|
|
ProjectEntityUpdateHandler = require "./ProjectEntityUpdateHandler"
|
2014-02-12 05:23:40 -05:00
|
|
|
Path = require "path"
|
2014-11-26 12:19:21 -05:00
|
|
|
async = require("async")
|
|
|
|
_ = require("underscore")
|
2014-02-12 05:23:40 -05:00
|
|
|
|
|
|
|
module.exports = ProjectRootDocManager =
|
2014-10-15 09:11:02 -04:00
|
|
|
setRootDocAutomatically: (project_id, callback = (error) ->) ->
|
2014-11-30 20:07:03 -05:00
|
|
|
|
2014-10-15 09:11:02 -04:00
|
|
|
ProjectEntityHandler.getAllDocs project_id, (error, docs) ->
|
2014-02-12 05:23:40 -05:00
|
|
|
return callback(error) if error?
|
2014-11-26 12:19:21 -05:00
|
|
|
|
|
|
|
|
2014-02-12 05:23:40 -05:00
|
|
|
root_doc_id = null
|
2014-11-26 12:19:21 -05:00
|
|
|
jobs = _.map docs, (doc, path)->
|
|
|
|
return (cb)->
|
2014-11-30 20:07:03 -05:00
|
|
|
rootDocId = null
|
2014-11-26 12:19:21 -05:00
|
|
|
for line in doc.lines || []
|
2015-08-28 11:51:52 -04:00
|
|
|
# We've had problems with this regex locking up CPU.
|
|
|
|
# Previously /.*\\documentclass/ would totally lock up on lines of 500kb (data text files :()
|
|
|
|
# This regex will only look from the start of the line, including whitespace so will return quickly
|
|
|
|
# regardless of line length.
|
|
|
|
match = line.match /^\s*\\documentclass/
|
|
|
|
isRootDoc = Path.extname(path).match(/\.R?tex$/) and match
|
2014-11-26 12:19:21 -05:00
|
|
|
if isRootDoc
|
2014-11-30 20:07:03 -05:00
|
|
|
rootDocId = doc?._id
|
|
|
|
cb(rootDocId)
|
|
|
|
|
2014-11-26 16:53:57 -05:00
|
|
|
async.series jobs, (root_doc_id)->
|
2014-11-26 12:19:21 -05:00
|
|
|
if root_doc_id?
|
2018-02-01 10:31:42 -05:00
|
|
|
ProjectEntityUpdateHandler.setRootDoc project_id, root_doc_id, callback
|
2014-11-26 12:19:21 -05:00
|
|
|
else
|
|
|
|
callback()
|
2014-02-12 05:23:40 -05:00
|
|
|
|