You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2015/09/02 01:48:25 UTC

cordova-registry git commit: removed old commented out code

Repository: cordova-registry
Updated Branches:
  refs/heads/master b747112a6 -> f753dd513


removed old commented out code


Project: http://git-wip-us.apache.org/repos/asf/cordova-registry/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-registry/commit/f753dd51
Tree: http://git-wip-us.apache.org/repos/asf/cordova-registry/tree/f753dd51
Diff: http://git-wip-us.apache.org/repos/asf/cordova-registry/diff/f753dd51

Branch: refs/heads/master
Commit: f753dd5138de8cccd05aa341aeae1efbf07fd0aa
Parents: b747112
Author: Steve Gill <st...@gmail.com>
Authored: Tue Sep 1 16:48:20 2015 -0700
Committer: Steve Gill <st...@gmail.com>
Committed: Tue Sep 1 16:48:20 2015 -0700

----------------------------------------------------------------------
 updates.js | 146 +-------------------------------------------------------
 1 file changed, 1 insertion(+), 145 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-registry/blob/f753dd51/updates.js
----------------------------------------------------------------------
diff --git a/updates.js b/updates.js
index 3c76f3b..cabab4c 100644
--- a/updates.js
+++ b/updates.js
@@ -1,152 +1,8 @@
 var updates = exports
 
 updates.package = function (doc, req) {
-return error('The plugin reigstry has switcehd to read-only!, please publish your plugins to npm. Learn more at http://plugins.cordova.io/npm/authors.html.');
-/*
-  require("monkeypatch").patch(Object, Date, Array, String)
-
-
-var tempbody = JSON.parse(req.body);
-//only allow npm client 1.3.4 to publish
-if(tempbody['_npmVersion']) {
-  if(tempbody['_npmVersion'] != '1.3.4') {
-    return error('This version of plugman publish is broken, please update plugman with npm install -g plugman@latest.');
-  }
-} else {
-  //npm 1.4.28 didn't have a root level _npmVersion
-  var latest = tempbody['dist-tags']['latest'];
-  if(latest) {
-    if(tempbody.versions[latest]._npmVersion != '1.3.4') {
-      return error('This version of plugman publish is broken, please update plugman with npm install -g plugman@latest.');
-    }
-  }
-}
-  var semver = require("semver")
-  var valid = require("valid")
-  */
+  return error('The plugin reigstry has switcehd to read-only!, please publish your plugins to npm. Learn more at http://plugins.cordova.io/npm/authors.html.');
   function error (reason) {
     return [{_id: "error: forbidden", forbidden:reason}, JSON.stringify({forbidden:reason})]
   }
-/*
-
-  function ok (doc, message) {
-    delete doc.mtime
-    delete doc.ctime
-    var time = doc.time = doc.time || {}
-    time.modified = (new Date()).toISOString()
-    time.created = time.created || time.modified
-    for (var v in doc.versions) {
-      var ver = doc.versions[v]
-      delete ver.ctime
-      delete ver.mtime
-      time[v] = time[v] || (new Date()).toISOString()
-    }
-    return [doc, JSON.stringify({ok:message})]
-  }
-
-  if (doc) {
-    if (req.query.version) {
-      var parsed = semver.valid(req.query.version, true)
-      if (!parsed) {
-        // it's a tag.
-        var tag = req.query.version
-          , ver = JSON.parse(req.body)
-        if (!semver.valid(ver)) {
-          return error("setting tag "+tag+" to invalid version: "+req.body)
-        }
-        doc["dist-tags"][tag] = semver.clean(ver, true)
-        return ok(doc, "updated tag")
-      }
-      // adding a new version.
-      var ver = req.query.version
-      if (!semver.valid(ver, true)) {
-        return error("invalid version: "+ver)
-      }
-
-      if ((ver in doc.versions) || (semver.clean(ver) in doc.versions)) {
-        // attempting to overwrite an existing version.
-        // not supported at this time.
-        if (!req.query.rev || req.query.rev !== doc._rev) {
-          return error("cannot modify existing version")
-        }
-      }
-
-      var body = JSON.parse(req.body)
-      if (!valid.name(body.name)) {
-        return error( "Invalid name: "+JSON.stringify(body.name))
-      }
-      body.version = semver.clean(body.version, true)
-      ver = semver.clean(ver, true)
-      if (body.version !== ver) {
-        return error( "version in doc doesn't match version in request: "
-                    + JSON.stringify(body.version)
-                    + " !== " + JSON.stringify(ver) )
-      }
-      body._id = body.name + "@" + body.version
-      if (body.description) doc.description = body.description
-      if (body.author) doc.author = body.author
-      if (body.repository) doc.repository = body.repository
-      body.maintainers = doc.maintainers
-
-      if (body.publishConfig && typeof body.publishConfig === 'object') {
-        Object.keys(body.publishConfig).filter(function (k) {
-          return k.match(/^_/)
-        }).forEach(function (k) {
-          delete body.publishConfig[k]
-        })
-      }
-
-      var tag = req.query.tag
-              || (body.publishConfig && body.publishConfig.tag)
-              || body.tag
-              || "latest"
-
-      if (!req.query.pre)
-        doc["dist-tags"][tag] = body.version
-      if (!doc["dist-tags"].latest)
-        doc["dist-tags"].latest = body.version
-      doc.versions[ver] = body
-      doc.time = doc.time || {}
-      doc.time[ver] = (new Date()).toISOString()
-      return ok(doc, "added version")
-    }
-
-    // update the package info
-    var newdoc = JSON.parse(req.body)
-      , changed = false
-    if (doc._rev && doc._rev !== newdoc._rev) {
-      return error( "must supply latest _rev to update existing package" )
-    }
-    for (var i in newdoc) if (typeof newdoc[i] === "string" || i === "maintainers") {
-      doc[i] = newdoc[i]
-    }
-    if (newdoc.versions) {
-      doc.versions = newdoc.versions
-    }
-    if (newdoc["dist-tags"]) {
-      doc["dist-tags"] = newdoc["dist-tags"]
-    }
-    if (newdoc.users) {
-      if (!doc.users) doc.users = {}
-      doc.users[req.userCtx.name] = newdoc.users[req.userCtx.name]
-    }
-    return ok(doc, "updated package metadata")
-  } else {
-    // Create new package doc
-    doc = JSON.parse(req.body)
-    if (!doc._id) doc._id = doc.name
-    if (!doc.versions) doc.versions = {}
-    var latest
-    for (var v in doc.versions) {
-      if (!semver.valid(v, true)) return error("Invalid version: "+JSON.stringify(v))
-      var p = doc.versions[v]
-      if (p.version !== v) return error("Version mismatch: "+JSON.stringify(v)
-                                       +" !== "+JSON.stringify(p.version))
-      if (!valid.name(p.name)) return error("Invalid name: "+JSON.stringify(p.name))
-      latest = semver.clean(v, true)
-    }
-    if (!doc['dist-tags']) doc['dist-tags'] = {}
-    if (latest) doc["dist-tags"].latest = latest
-    return ok(doc, "created new entry")
-  }*/
 }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org