mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
clean up relative path checking
This commit is contained in:
parent
64ea22d259
commit
43b0429c28
1 changed files with 6 additions and 7 deletions
|
@ -98,13 +98,12 @@ module.exports = ResourceStateManager = {
|
|||
checkResourceFiles(resources, allFiles, basePath, callback) {
|
||||
// check the paths are all relative to current directory
|
||||
let file
|
||||
for (file of resources || []) {
|
||||
if (file && file.path) {
|
||||
const dirs = file.path.split('/')
|
||||
if (dirs.indexOf('..') !== -1) {
|
||||
return callback(new Error('relative path in resource file list'))
|
||||
}
|
||||
}
|
||||
const containsRelativePath = (resource) => {
|
||||
const dirs = resource.path.split('/')
|
||||
return dirs.indexOf('..') !== -1
|
||||
}
|
||||
if (resources.some(containsRelativePath)) {
|
||||
return callback(new Error('relative path in resource file list'))
|
||||
}
|
||||
// check if any of the input files are not present in list of files
|
||||
const seenFile = {}
|
||||
|
|
Loading…
Reference in a new issue