mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-17 08:05:19 +00:00
50 lines
1.1 KiB
JavaScript
50 lines
1.1 KiB
JavaScript
var _ = require('lodash');
|
|
var path = require('path');
|
|
|
|
var error = require('./error');
|
|
|
|
// Normalize a filename
|
|
function normalizePath(filename) {
|
|
return path.normalize(filename);
|
|
}
|
|
|
|
// Return true if file path is inside a folder
|
|
function isInRoot(root, filename) {
|
|
filename = path.normalize(filename);
|
|
return (filename.substr(0, root.length) === root);
|
|
}
|
|
|
|
// Resolve paths in a specific folder
|
|
// Throw error if file is outside this folder
|
|
function resolveInRoot(root) {
|
|
var input, result;
|
|
|
|
input = _.chain(arguments)
|
|
.toArray()
|
|
.slice(1)
|
|
.reduce(function(current, p) {
|
|
// Handle path relative to book root ("/README.md")
|
|
if (p[0] == '/' || p[0] == '\\') return p.slice(1);
|
|
|
|
return current? path.join(current, p) : path.normalize(p);
|
|
}, '')
|
|
.value();
|
|
|
|
result = path.resolve(root, input);
|
|
|
|
if (!isInRoot(root, result)) {
|
|
throw new error.FileOutOfScopeError({
|
|
filename: result,
|
|
root: root
|
|
});
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
module.exports = {
|
|
isInRoot: isInRoot,
|
|
resolveInRoot: resolveInRoot,
|
|
normalize: normalizePath
|
|
};
|