Sha256: b202245f4f1a15b098c0e8dbfceac1ea4c79dfb0ae5de43858af2c32f5aaeec3

Contents?: true

Size: 1.01 KB

Versions: 7

Compression:

Stored size: 1.01 KB

Contents

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 = defaultConfig(config);
    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;

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
entangled-0.0.16 spec/dummy/public/node_modules/bower/lib/commands/search.js
entangled-0.0.15 spec/dummy/public/node_modules/bower/lib/commands/search.js
entangled-0.0.14 spec/dummy/public/node_modules/bower/lib/commands/search.js
entangled-0.0.13 spec/dummy/public/node_modules/bower/lib/commands/search.js
entangled-0.0.12 spec/dummy/public/node_modules/bower/lib/commands/search.js
entangled-0.0.11 spec/dummy/public/node_modules/bower/lib/commands/search.js
entangled-0.0.10 spec/dummy/public/node_modules/bower/lib/commands/search.js