Github user TimBarham commented on a diff in the pull request:

    https://github.com/apache/cordova-lib/pull/175#discussion_r25672404
  
    --- Diff: cordova-lib/src/plugman/registry/registry.js ---
    @@ -322,3 +324,102 @@ function makeRequest (method, where, what, cb_) {
     
         return req;
     }
    +
    +/**
    +     * @method fetchNPM
    +     * @param {Array} with one element - the plugin id or "id@version"
    +     * @return {Promise.<string>} Promised path to fetched package.
    +     */
    +function fetchNPM(plugin, client) {
    +    return initSettings(true)
    +    .then(function (settings) {
    +        return Q.nfcall(npm.load)
    +        // configure npm here instead of passing parameters to npm.load 
due to CB-7670
    +        .then(function () {
    +            for (var prop in settings){
    +                npm.config.set(prop, settings[prop]);
    +            }
    +        });
    +    })
    +    .then(function() {
    +        events.emit('log', 'Fetching plugin "' + plugin + '" via npm');
    +        return Q.ninvoke(npm.commands, 'cache', ['add', plugin]);
    +    })
    +    .then(function(info) {
    +        var cl = (client === 'plugman' ? 'plugman' : 'cordova-cli');
    +        bumpCounter(info, cl);
    +        var pluginDir = path.resolve(npm.cache, info.name, info.version, 
'package');
    +        // Unpack the plugin that was added to the cache (CB-8154)
    +        var package_tgz = path.resolve(npm.cache, info.name, info.version, 
'package.tgz');
    +        return unpack.unpackTgz(package_tgz, pluginDir);
    +    })
    +    .fail(function(error) {
    +        events.emit('log', 'Fetching from npm registry failed');
    +        return Q.reject(error);
    +    });
    +}
    +
    +
    +/**
    + * @method fetchPlugReg
    + * @param {Array} with one element - the plugin id or "id@version"
    + * @return {Promise.<string>} Promised path to fetched package.
    + */
    +function fetchPlugReg(plugin, client) {
    --- End diff --
    
    This method is identical to `fetchNPM()` other than whether or not we pass 
`true` to `initSettings()`, and the text of some log messages. Could you create 
a single helper function modifies those things based on a parameter?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org

Reply via email to