2020-02-19 06:14:37 -05:00
|
|
|
let OutputFileFinder
|
|
|
|
const async = require('async')
|
|
|
|
const fs = require('fs')
|
|
|
|
const Path = require('path')
|
|
|
|
const { spawn } = require('child_process')
|
|
|
|
const logger = require('logger-sharelatex')
|
2014-02-12 12:27:43 -05:00
|
|
|
|
2020-02-19 06:14:37 -05:00
|
|
|
module.exports = OutputFileFinder = {
|
|
|
|
findOutputFiles(resources, directory, callback) {
|
2020-12-18 09:56:53 -05:00
|
|
|
const incomingResources = new Set(
|
|
|
|
resources.map((resource) => resource.path)
|
|
|
|
)
|
2014-02-12 12:27:43 -05:00
|
|
|
|
2020-12-18 10:16:07 -05:00
|
|
|
OutputFileFinder._getAllFiles(directory, function (error, allFiles) {
|
2020-02-19 06:14:37 -05:00
|
|
|
if (allFiles == null) {
|
|
|
|
allFiles = []
|
|
|
|
}
|
2020-12-18 10:01:25 -05:00
|
|
|
if (error) {
|
2020-02-19 06:14:37 -05:00
|
|
|
logger.err({ err: error }, 'error finding all output files')
|
|
|
|
return callback(error)
|
|
|
|
}
|
|
|
|
const outputFiles = []
|
2020-12-18 10:10:53 -05:00
|
|
|
for (const file of allFiles) {
|
2020-12-18 09:56:53 -05:00
|
|
|
if (!incomingResources.has(file)) {
|
2020-02-19 06:14:37 -05:00
|
|
|
outputFiles.push({
|
|
|
|
path: file,
|
2020-12-18 10:11:29 -05:00
|
|
|
type: Path.extname(file).replace(/^\./, '') || undefined
|
2020-02-19 06:14:37 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2020-12-18 10:02:40 -05:00
|
|
|
callback(null, outputFiles, allFiles)
|
2020-02-19 06:14:37 -05:00
|
|
|
})
|
|
|
|
},
|
2017-09-26 04:47:29 -04:00
|
|
|
|
2020-02-19 06:14:37 -05:00
|
|
|
_getAllFiles(directory, _callback) {
|
|
|
|
// don't include clsi-specific files/directories in the output list
|
|
|
|
const EXCLUDE_DIRS = [
|
|
|
|
'-name',
|
|
|
|
'.cache',
|
|
|
|
'-o',
|
|
|
|
'-name',
|
|
|
|
'.archive',
|
|
|
|
'-o',
|
|
|
|
'-name',
|
2020-12-18 10:11:29 -05:00
|
|
|
'.project-*'
|
2020-02-19 06:14:37 -05:00
|
|
|
]
|
|
|
|
const args = [
|
|
|
|
directory,
|
|
|
|
'(',
|
2020-12-18 10:10:53 -05:00
|
|
|
...EXCLUDE_DIRS,
|
2020-02-19 06:14:37 -05:00
|
|
|
')',
|
|
|
|
'-prune',
|
|
|
|
'-o',
|
|
|
|
'-type',
|
|
|
|
'f',
|
2020-12-18 10:11:29 -05:00
|
|
|
'-print'
|
2020-02-19 06:14:37 -05:00
|
|
|
]
|
|
|
|
logger.log({ args }, 'running find command')
|
2014-02-12 12:27:43 -05:00
|
|
|
|
2020-02-19 06:14:37 -05:00
|
|
|
const proc = spawn('find', args)
|
|
|
|
let stdout = ''
|
2020-08-10 12:01:11 -04:00
|
|
|
proc.stdout.setEncoding('utf8').on('data', (chunk) => (stdout += chunk))
|
2020-02-19 06:14:37 -05:00
|
|
|
proc.on('error', callback)
|
2020-12-18 10:16:07 -05:00
|
|
|
proc.on('close', function (code) {
|
2020-02-19 06:14:37 -05:00
|
|
|
if (code !== 0) {
|
|
|
|
logger.warn(
|
|
|
|
{ directory, code },
|
|
|
|
"find returned error, directory likely doesn't exist"
|
|
|
|
)
|
|
|
|
return callback(null, [])
|
|
|
|
}
|
|
|
|
let fileList = stdout.trim().split('\n')
|
2020-08-10 12:01:11 -04:00
|
|
|
fileList = fileList.map(function (file) {
|
2020-02-19 06:14:37 -05:00
|
|
|
// Strip leading directory
|
|
|
|
let path
|
|
|
|
return (path = Path.relative(directory, file))
|
|
|
|
})
|
2020-12-18 10:02:40 -05:00
|
|
|
callback(null, fileList)
|
2020-02-19 06:14:37 -05:00
|
|
|
})
|
2020-12-18 10:11:29 -05:00
|
|
|
}
|
2020-02-19 06:14:37 -05:00
|
|
|
}
|