mirror of
https://github.com/bower/bower.git
synced 2026-01-22 12:47:59 -05:00
This commit changes the interface of the command functions exported by the files in `lib/commands`. The functions now return a promise and accept a logger as the first argument. This has several advantages * The promise style is consistent with the rest of the code. * It removes a lot of duplicate code. * The command factory does not need to proxy the logger object.
41 lines
1.1 KiB
JavaScript
41 lines
1.1 KiB
JavaScript
var mout = require('mout');
|
|
var Q = require('q');
|
|
var RegistryClient = require('bower-registry-client');
|
|
var cli = require('../util/cli');
|
|
var Tracker = require('../util/analytics').Tracker;
|
|
var defaultConfig = require('../config');
|
|
|
|
function search(logger, name, config) {
|
|
var registryClient;
|
|
var tracker;
|
|
|
|
config = mout.object.deepFillIn(config || {}, defaultConfig);
|
|
config.cache = config.storage.registry;
|
|
|
|
registryClient = new RegistryClient(config, logger);
|
|
tracker = new Tracker(config);
|
|
tracker.track('search', name);
|
|
|
|
// If no name was specified, list all packages
|
|
if (!name) {
|
|
return Q.nfcall(registryClient.list.bind(registryClient));
|
|
// Otherwise search it
|
|
} else {
|
|
return Q.nfcall(registryClient.search.bind(registryClient), name);
|
|
}
|
|
}
|
|
|
|
// -------------------
|
|
|
|
search.line = function (logger, argv) {
|
|
var options = cli.readOptions(argv);
|
|
var name = options.argv.remain.slice(1).join(' ');
|
|
return search(logger, name, options);
|
|
};
|
|
|
|
search.completion = function () {
|
|
// TODO:
|
|
};
|
|
|
|
module.exports = search;
|