mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
29 lines
859 B
CoffeeScript
29 lines
859 B
CoffeeScript
ProjectEntityHandler = require "./ProjectEntityHandler"
|
|
Path = require "path"
|
|
async = require("async")
|
|
_ = require("underscore")
|
|
|
|
module.exports = ProjectRootDocManager =
|
|
setRootDocAutomatically: (project_id, callback = (error) ->) ->
|
|
|
|
ProjectEntityHandler.getAllDocs project_id, (error, docs) ->
|
|
return callback(error) if error?
|
|
|
|
|
|
root_doc_id = null
|
|
jobs = _.map docs, (doc, path)->
|
|
return (cb)->
|
|
rootDocId = null
|
|
for line in doc.lines || []
|
|
match = line.match /(.*)\\documentclass/ # no lookbehind in js regexp :(
|
|
isRootDoc = Path.extname(path).match(/\.R?tex$/) and match and !match[1].match /%/
|
|
if isRootDoc
|
|
rootDocId = doc?._id
|
|
cb(rootDocId)
|
|
|
|
async.series jobs, (root_doc_id)->
|
|
if root_doc_id?
|
|
ProjectEntityHandler.setRootDoc project_id, root_doc_id, callback
|
|
else
|
|
callback()
|
|
|