Have Cloud9 Bundles show up in the plugin manager

pull/85/head
Ruben Daniels 2015-04-16 22:28:31 +00:00
rodzic 03ef8db11a
commit 4ec0548696
3 zmienionych plików z 118 dodań i 79 usunięć

Wyświetl plik

@ -124,9 +124,18 @@ define(function(require, exports, module) {
} }
var resourceHolder = new Plugin(); var resourceHolder = new Plugin();
// Fetch package.json var resourceVersion = "";
resourceHolder.freezePublicAPI({
get version(){ return resourceVersion },
set version(v){ resourceVersion = v; }
});
var inited = false;
resourceHolder.on("load", function(){
async.parallel([ async.parallel([
function(next){ function(next){
// Fetch package.json
fs.readFile("~/.c9/plugins/" + name + "/package.json", function(err, data){ fs.readFile("~/.c9/plugins/" + name + "/package.json", function(err, data){
if (err) if (err)
return next(err); return next(err);
@ -163,6 +172,8 @@ define(function(require, exports, module) {
requirejs.config({paths: pathConfig}); requirejs.config({paths: pathConfig});
resourceHolder.version = options.version;
// Start the installer if one is included // Start the installer if one is included
if (options.installer) { if (options.installer) {
addStaticPlugin("installer", name, options.installer, addStaticPlugin("installer", name, options.installer,
@ -203,8 +214,15 @@ define(function(require, exports, module) {
} }
], function(err, results){ ], function(err, results){
if (err) console.error(err); if (err) console.error(err);
if (!inited) {
next(); next();
inited = true;
}
}); });
});
resourceHolder.load("Cloud9 Bundle");
} }
function finish(){ function finish(){
@ -260,7 +278,26 @@ define(function(require, exports, module) {
function addStaticPlugin(type, pluginName, filename, data, plugin) { function addStaticPlugin(type, pluginName, filename, data, plugin) {
var services = architect.services; var services = architect.services;
var path = "plugins/" + pluginName + "/" + type + "/" + filename.replace(/\.js$/, ""); var path = "plugins/" + pluginName + "/"
+ (type == "installer" ? "" : type + "/")
+ filename.replace(/\.js$/, "");
if (!services[plugin.name] && type !== "installer") {
services[plugin.name] = plugin;
architect.lut["~/.c9/plugins/" + pluginName] = {
provides: []
};
architect.pluginToPackage[plugin.name] = {
path: plugin.packagePath,
package: pluginName,
version: plugin.version,
isAdditionalMode: true
};
if (!architect.packages[pluginName])
architect.packages[pluginName] = [];
architect.packages[pluginName].push(name);
}
switch (type) { switch (type) {
case "builders": case "builders":
data = util.safeParseJson(data, function() {}); data = util.safeParseJson(data, function() {});

Wyświetl plik

@ -134,6 +134,10 @@ define(function(require, exports, module) {
} }
}), 210, plugin); }), 210, plugin);
}); });
ext.on("register", function(){
reloadModel();
});
} }
} }

Wyświetl plik

@ -13,9 +13,7 @@
"type": "git", "type": "git",
"url": "http://github.com/c9/newclient.git" "url": "http://github.com/c9/newclient.git"
}, },
"plugins": { "plugins": {},
"example": {}
},
"installer": "install.js", "installer": "install.js",
"categories": [ "categories": [
"misc" "misc"