wallet-core/node_modules/resolve/lib/async.js

204 lines
6.8 KiB
JavaScript
Raw Normal View History

2016-10-10 03:43:44 +02:00
var core = require('./core');
var fs = require('fs');
var path = require('path');
var caller = require('./caller.js');
var nodeModulesPaths = require('./node-modules-paths.js');
2017-05-28 00:38:50 +02:00
module.exports = function resolve(x, options, callback) {
var cb = callback;
var opts = options || {};
2016-10-10 03:43:44 +02:00
if (typeof opts === 'function') {
cb = opts;
opts = {};
}
if (typeof x !== 'string') {
2017-05-28 00:38:50 +02:00
var err = new TypeError('Path must be a string.');
2016-10-10 03:43:44 +02:00
return process.nextTick(function () {
2017-05-28 00:38:50 +02:00
cb(err);
2016-10-10 03:43:44 +02:00
});
}
2017-05-28 00:38:50 +02:00
2016-10-10 03:43:44 +02:00
var isFile = opts.isFile || function (file, cb) {
fs.stat(file, function (err, stat) {
2017-05-28 00:38:50 +02:00
if (!err) {
return cb(null, stat.isFile() || stat.isFIFO());
}
if (err.code === 'ENOENT' || err.code === 'ENOTDIR') return cb(null, false);
return cb(err);
2016-10-10 03:43:44 +02:00
});
};
var readFile = opts.readFile || fs.readFile;
2017-05-28 00:38:50 +02:00
var extensions = opts.extensions || ['.js'];
2016-10-10 03:43:44 +02:00
var y = opts.basedir || path.dirname(caller());
2017-05-28 00:38:50 +02:00
2016-10-10 03:43:44 +02:00
opts.paths = opts.paths || [];
2017-05-28 00:38:50 +02:00
if (/^(?:\.\.?(?:\/|$)|\/|([A-Za-z]:)?[/\\])/.test(x)) {
2016-10-10 03:43:44 +02:00
var res = path.resolve(y, x);
2017-05-28 00:38:50 +02:00
if (x === '..' || x.slice(-1) === '/') res += '/';
2016-10-10 03:43:44 +02:00
if (/\/$/.test(x) && res === y) {
loadAsDirectory(res, opts.package, onfile);
2017-05-28 00:38:50 +02:00
} else loadAsFile(res, opts.package, onfile);
} else loadNodeModules(x, y, function (err, n, pkg) {
if (err) cb(err);
else if (n) cb(null, n, pkg);
2016-10-10 03:43:44 +02:00
else if (core[x]) return cb(null, x);
2017-05-28 00:38:50 +02:00
else {
var moduleError = new Error("Cannot find module '" + x + "' from '" + y + "'");
moduleError.code = 'MODULE_NOT_FOUND';
cb(moduleError);
}
2016-10-10 03:43:44 +02:00
});
2017-05-28 00:38:50 +02:00
function onfile(err, m, pkg) {
if (err) cb(err);
else if (m) cb(null, m, pkg);
2016-10-10 03:43:44 +02:00
else loadAsDirectory(res, function (err, d, pkg) {
2017-05-28 00:38:50 +02:00
if (err) cb(err);
else if (d) cb(null, d, pkg);
else {
var moduleError = new Error("Cannot find module '" + x + "' from '" + y + "'");
moduleError.code = 'MODULE_NOT_FOUND';
cb(moduleError);
}
});
2016-10-10 03:43:44 +02:00
}
2017-05-28 00:38:50 +02:00
function loadAsFile(x, thePackage, callback) {
var loadAsFilePackage = thePackage;
var cb = callback;
if (typeof loadAsFilePackage === 'function') {
cb = loadAsFilePackage;
loadAsFilePackage = undefined;
2016-10-10 03:43:44 +02:00
}
2017-05-28 00:38:50 +02:00
2016-10-10 03:43:44 +02:00
var exts = [''].concat(extensions);
2017-05-28 00:38:50 +02:00
load(exts, x, loadAsFilePackage);
function load(exts, x, loadPackage) {
if (exts.length === 0) return cb(null, undefined, loadPackage);
2016-10-10 03:43:44 +02:00
var file = x + exts[0];
2017-05-28 00:38:50 +02:00
var pkg = loadPackage;
if (pkg) onpkg(null, pkg);
2016-10-10 03:43:44 +02:00
else loadpkg(path.dirname(file), onpkg);
2017-05-28 00:38:50 +02:00
function onpkg(err, pkg_, dir) {
2016-10-10 03:43:44 +02:00
pkg = pkg_;
2017-05-28 00:38:50 +02:00
if (err) return cb(err);
2016-10-10 03:43:44 +02:00
if (dir && pkg && opts.pathFilter) {
var rfile = path.relative(dir, file);
var rel = rfile.slice(0, rfile.length - exts[0].length);
var r = opts.pathFilter(pkg, x, rel);
if (r) return load(
[''].concat(extensions.slice()),
path.resolve(dir, r),
pkg
);
}
isFile(file, onex);
}
2017-05-28 00:38:50 +02:00
function onex(err, ex) {
if (err) return cb(err);
if (ex) return cb(null, file, pkg);
load(exts.slice(1), x, pkg);
2016-10-10 03:43:44 +02:00
}
}
}
2017-05-28 00:38:50 +02:00
function loadpkg(dir, cb) {
2016-10-10 03:43:44 +02:00
if (dir === '' || dir === '/') return cb(null);
2017-05-28 00:38:50 +02:00
if (process.platform === 'win32' && (/^\w:[/\\]*$/).test(dir)) {
2016-10-10 03:43:44 +02:00
return cb(null);
}
2017-05-28 00:38:50 +02:00
if (/[/\\]node_modules[/\\]*$/.test(dir)) return cb(null);
2016-10-10 03:43:44 +02:00
var pkgfile = path.join(dir, 'package.json');
isFile(pkgfile, function (err, ex) {
// on err, ex is false
2017-05-28 00:38:50 +02:00
if (!ex) return loadpkg(path.dirname(dir), cb);
2016-10-10 03:43:44 +02:00
readFile(pkgfile, function (err, body) {
if (err) cb(err);
2017-05-28 00:38:50 +02:00
try { var pkg = JSON.parse(body); } catch (jsonErr) {}
2016-10-10 03:43:44 +02:00
if (pkg && opts.packageFilter) {
pkg = opts.packageFilter(pkg, pkgfile);
}
cb(null, pkg, dir);
});
});
}
2017-05-28 00:38:50 +02:00
function loadAsDirectory(x, loadAsDirectoryPackage, callback) {
var cb = callback;
var fpkg = loadAsDirectoryPackage;
2016-10-10 03:43:44 +02:00
if (typeof fpkg === 'function') {
cb = fpkg;
fpkg = opts.package;
}
2017-05-28 00:38:50 +02:00
var pkgfile = path.join(x, 'package.json');
2016-10-10 03:43:44 +02:00
isFile(pkgfile, function (err, ex) {
if (err) return cb(err);
2017-05-28 00:38:50 +02:00
if (!ex) return loadAsFile(path.join(x, 'index'), fpkg, cb);
2016-10-10 03:43:44 +02:00
readFile(pkgfile, function (err, body) {
if (err) return cb(err);
try {
var pkg = JSON.parse(body);
2017-05-28 00:38:50 +02:00
} catch (jsonErr) {}
2016-10-10 03:43:44 +02:00
if (opts.packageFilter) {
pkg = opts.packageFilter(pkg, pkgfile);
}
2017-05-28 00:38:50 +02:00
2016-10-10 03:43:44 +02:00
if (pkg.main) {
2017-05-28 00:38:50 +02:00
if (pkg.main === '.' || pkg.main === './') {
pkg.main = 'index';
2016-10-10 03:43:44 +02:00
}
loadAsFile(path.resolve(x, pkg.main), pkg, function (err, m, pkg) {
if (err) return cb(err);
if (m) return cb(null, m, pkg);
2017-05-28 00:38:50 +02:00
if (!pkg) return loadAsFile(path.join(x, 'index'), pkg, cb);
2016-10-10 03:43:44 +02:00
var dir = path.resolve(x, pkg.main);
loadAsDirectory(dir, pkg, function (err, n, pkg) {
if (err) return cb(err);
if (n) return cb(null, n, pkg);
2017-05-28 00:38:50 +02:00
loadAsFile(path.join(x, 'index'), pkg, cb);
2016-10-10 03:43:44 +02:00
});
});
return;
}
2017-05-28 00:38:50 +02:00
2016-10-10 03:43:44 +02:00
loadAsFile(path.join(x, '/index'), pkg, cb);
});
});
}
2017-05-28 00:38:50 +02:00
function processDirs(cb, dirs) {
if (dirs.length === 0) return cb(null, undefined);
var dir = dirs[0];
var file = path.join(dir, x);
loadAsFile(file, undefined, onfile);
function onfile(err, m, pkg) {
if (err) return cb(err);
if (m) return cb(null, m, pkg);
loadAsDirectory(path.join(dir, x), undefined, ondir);
}
function ondir(err, n, pkg) {
if (err) return cb(err);
if (n) return cb(null, n, pkg);
processDirs(cb, dirs.slice(1));
}
}
function loadNodeModules(x, start, cb) {
processDirs(cb, nodeModulesPaths(start, opts));
2016-10-10 03:43:44 +02:00
}
};