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

    https://github.com/apache/cordova-lib/pull/175#discussion_r25722381
  
    --- 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) {
    +    return initSettings()
    +    .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 plugin 
registry');
    +        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 cordova plugin registry failed');
    +        return Q.reject(error);
    +    });
    +}
    +
    +/**
    + * @method checkPluginID
    + * @param {Array} with one element - the plugin id or "id@version"
    + * @return {Promise.<string>} Promised path to fetched package.
    + */
    +function checkPluginID(plugin) {
    +    //if plugin id is not reverse domain name style, skip CPR and fetch 
from npm
    +
    +    //Create regex to for digits, words and dashes and three dots in 
plugin ids which excludes @VERSION.
    +    var re = /([\w-]*\.[\w-]*\.[\w-]*\.[\w-]*[^@])/;
    +    var pluginID = plugin.match(re);
    +    //If pluginID equals null, plugin is not reverse domain name style
    +    if(pluginID === null) { 
    +        events.emit('verbose', 'Skipping CPR');
    +        //Q.reject will send us straight to the fail method which is where 
fetchNPM gets called.
    +        return Q.reject();
    +    } else {
    +        //Reverse domain name style plugin ID
    +        //Check if a mapping exists for the pluginID
    +        //if it does, warn the users to use package-name
    +        var packageName = pluginMapper[pluginID[0]];
    +        if(packageName) {
    +            events.emit('log', 'WARNING: ' + plugin + ' has been renamed 
to ' + 
    +                    packageName + ' and moved to npm. Please use `cordova 
plugin add ' + 
    +                    packageName + '` next time.');
    --- End diff --
    
    Okay, thanks for clarification.  I guess I agree with the choices, but 
think we could change the messaging to be more clear.  Perhaps something like:
    
    `"WARNING: 'org.apache.cordova.device' has been renamed to 
'cordova-plugin-device' (See: BLOGPOST/GITDOC).  You may not getting the latest 
version!  We suggest you `cordova plugin rm org.apache.cordova.device` and 
`cordova plugin add cordova-plugin-device`."`
    
    (i.e. call out what to do to fix, don't disrupt the message with mention of 
npm)


---
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