mirror of
https://github.com/linuxserver/core.git
synced 2026-02-20 05:07:19 +08:00
325 lines
11 KiB
JavaScript
325 lines
11 KiB
JavaScript
var https = require("https");
|
|
var http = require("http");
|
|
var url = require("url");
|
|
var fs = require("fs");
|
|
|
|
var Path = require("path");
|
|
var spawn = require("child_process").spawn;
|
|
var async = require("asyncjs");
|
|
var rootDir = __dirname + "/../lib/ace/";
|
|
|
|
var deps = {
|
|
csslint: {
|
|
path: "mode/css/csslint.js",
|
|
url: "https://raw.github.com/stubbornella/csslint/master/release/csslint.js",
|
|
needsFixup: true
|
|
},
|
|
requirejs: {
|
|
path: "../../demo/kitchen-sink/require.js",
|
|
url: "https://raw.github.com/jrburke/requirejs/master/require.js",
|
|
needsFixup: false
|
|
},
|
|
luaparse: {
|
|
path: "mode/lua/luaparse.js",
|
|
url: "https://raw.github.com/oxyc/luaparse/master/luaparse.js",
|
|
needsFixup: true,
|
|
postProcess: function(src) {
|
|
return src.replace(
|
|
/\(function\s*\(root,\s*name,\s*factory\)\s*{[\s\S]*?}\(this,\s*'luaparse',/,
|
|
"(function (root, name, factory) {\n factory(exports)\n}(this, 'luaparse',"
|
|
)
|
|
}
|
|
},
|
|
html5: {
|
|
path: "mode/html/saxparser.js",
|
|
browserify: {
|
|
npmModule: "git+https://github.com/aredridel/html5.git#master",
|
|
path: "html5/lib/sax/SAXParser.js",
|
|
exports: "SAXParser"
|
|
},
|
|
fetch: browserify,
|
|
needsFixup: true,
|
|
postProcess: function(src) {
|
|
return src;
|
|
}
|
|
},
|
|
xquery: {
|
|
path: "mode/xquery/xquery_lexer.js",
|
|
browserify: {
|
|
npmModule: "git+https://github.com/wcandillon/xqlint.git#master",
|
|
path: "xqlint/lib/lexers/xquery_lexer.js",
|
|
exports: "XQueryLexer"
|
|
},
|
|
fetch: browserify,
|
|
needsFixup: true,
|
|
postProcess: function(src){
|
|
return src;
|
|
}
|
|
},
|
|
jsoniq: {
|
|
path: "mode/xquery/jsoniq_lexer.js",
|
|
browserify: {
|
|
npmModule: "git+https://github.com/wcandillon/xqlint.git#master",
|
|
path: "xqlint/lib/lexers/jsoniq_lexer.js",
|
|
exports: "JSONiqLexer"
|
|
},
|
|
fetch: browserify,
|
|
needsFixup: true,
|
|
postProcess: function(src){
|
|
return src;
|
|
}
|
|
},
|
|
xqlint: {
|
|
path: "mode/xquery/xqlint.js",
|
|
browserify: {
|
|
npmModule: "git+https://github.com/wcandillon/xqlint.git#master",
|
|
path: "xqlint/lib/xqlint.js",
|
|
exports: "XQLint"
|
|
},
|
|
fetch: browserify,
|
|
needsFixup: true,
|
|
postProcess: function(src){
|
|
return src;
|
|
}
|
|
},
|
|
jshint: {
|
|
path: "mode/javascript/jshint.js",
|
|
browserify: {
|
|
npmModule: "git+https://github.com/ajaxorg/jshint.git#master",
|
|
path: "jshint/src/jshint.js",
|
|
exports: "jshint"
|
|
},
|
|
fetch: browserify,
|
|
needsFixup: true,
|
|
postProcess: function(src) {
|
|
src = src.replace(
|
|
/"Expected a conditional expression and instead saw an assignment."/g,
|
|
'"Assignment in conditional expression"'
|
|
);
|
|
src = src.replace(/var defaultMaxListeners = 10;/, function(a) {return a.replace("10", "200")});
|
|
return src;
|
|
}
|
|
},
|
|
emmet: {
|
|
path: "ext/emmet core.js",
|
|
url: [
|
|
"https://raw.github.com/sergeche/emmet-sublime/master/emmet/emmet-app.js",
|
|
"https://raw.github.com/sergeche/emmet-sublime/master/emmet/snippets.json"
|
|
],
|
|
postProcess: function(data) {
|
|
return data[0]
|
|
.replace("define(emmet)", "define('emmet', [], emmet)")
|
|
.replace(/(emmet.define\('bootstrap'.*)[\s\S]*$/, function(_, x) {
|
|
return x + "\n" +
|
|
"var snippets = " + data[1] + ";\n" +
|
|
"var res = require('resources');\n" +
|
|
"var userData = res.getVocabulary('user') || {};\n" +
|
|
"res.setVocabulary(require('utils').deepMerge(userData, snippets), 'user');\n" +
|
|
"});";
|
|
});
|
|
}
|
|
},
|
|
vim: {
|
|
fetch: function(){
|
|
var rootHref = "https://raw.githubusercontent.com/codemirror/CodeMirror/master/"
|
|
var fileMap = {"keymap/vim.js": "keyboard/vim.js", "test/vim_test.js": "keyboard/vim_test.js"};
|
|
async.forEach(Object.keys(fileMap), function(x, next) {
|
|
download(rootHref + x, function(e, d) {
|
|
d = d.replace(/^\(function.*{[^{}]+^}[^{}]+{/m, "define(function(require, exports, module) {");
|
|
d = d.replace(/^\s*return vimApi;\s*};/gm, " //};")
|
|
.replace("var Vim = function() {", "$& return vimApi; } //{")
|
|
fs.writeFile(rootDir + fileMap[x], d, next)
|
|
})
|
|
}, function() {
|
|
console.log("done")
|
|
});
|
|
}
|
|
},
|
|
liveScript: {
|
|
path: "mode/livescript.js",
|
|
url: "https://raw.githubusercontent.com/gkz/LiveScript/master/lib/mode-ls.js"
|
|
},
|
|
coffee: {
|
|
fetch: function(){
|
|
var rootHref = "https://raw.github.com/jashkenas/coffee-script/master/";
|
|
var path = "mode/coffee/";
|
|
|
|
var subDir = "lib/coffee-script/";
|
|
var deps = [
|
|
"helpers.js",
|
|
"lexer.js",
|
|
"nodes.js",
|
|
"parser.js",
|
|
"rewriter.js",
|
|
"scope.js"
|
|
].map(function(x) {
|
|
return {
|
|
name: x,
|
|
href: rootHref + subDir + x,
|
|
path: rootDir + path + x
|
|
};
|
|
});
|
|
deps.push({name:"LICENSE", href: rootHref + "LICENSE"});
|
|
|
|
var downloads = {}, counter = 0;
|
|
|
|
deps.forEach(function(x) {
|
|
download(x.href, function(err, data) {
|
|
counter++;
|
|
downloads[x.name] = data;
|
|
if (counter == deps.length)
|
|
allDone();
|
|
});
|
|
});
|
|
function allDone() {
|
|
deps.pop();
|
|
var license = downloads.LICENSE.split('\n');
|
|
license = "/**\n * " + license.join("\n * ") + "\n */";
|
|
|
|
deps.forEach(function(x) {
|
|
var data = downloads[x.name];
|
|
console.log(x.name);
|
|
console.log(!data);
|
|
if (!data)
|
|
return;
|
|
if (x.name == "parser.js") {
|
|
data = data.replace("var parser = (function(){", "")
|
|
.replace(/\nreturn (new Parser)[\s\S]*$/, "\n\nmodule.exports = $1;\n\n");
|
|
} else {
|
|
data = data.replace("(function() {", "")
|
|
.replace(/\}\).call\(this\);\s*$/, "");
|
|
}
|
|
data = license
|
|
+ "\n\n"
|
|
+ "define(function(require, exports, module) {\n"
|
|
+ data
|
|
+ "\n});";
|
|
|
|
fs.writeFile(x.path, data, "utf-8", function(err){
|
|
if (err) throw err;
|
|
console.log("File " + x.name + " saved.");
|
|
console.warn("mode/coffee/coffee-script file needs to updated manually");
|
|
console.warn("mode/coffee/parser.js: parseError function needs to be modified");
|
|
});
|
|
});
|
|
}
|
|
}
|
|
},
|
|
xmldom: {
|
|
fetch: function() {
|
|
var rootHref = "https://raw.githubusercontent.com/iDeBugger/xmldom/master/"
|
|
var fileMap = {
|
|
"sax.js": "mode/xml/sax.js",
|
|
"dom-parser.js": "mode/xml/dom-parser.js",
|
|
"dom.js": "mode/xml/dom.js"
|
|
};
|
|
async.forEach(Object.keys(fileMap), function(x, next) {
|
|
download(rootHref + x, function(e, d) {
|
|
fs.writeFile(rootDir + fileMap[x], d, next)
|
|
})
|
|
}, function() {
|
|
console.log("XmlDOM updating done")
|
|
});
|
|
}
|
|
},
|
|
};
|
|
|
|
var download = function(href, callback) {
|
|
if (Array.isArray(href))
|
|
return async.map(href, download, callback);
|
|
|
|
var options = url.parse(href);
|
|
var protocol = options.protocol === "https:" ? https : http;
|
|
console.log("connecting to " + options.host + " " + options.path);
|
|
protocol.get(options, function(res) {
|
|
var data = "";
|
|
res.setEncoding("utf-8");
|
|
|
|
res.on("data", function(chunk){
|
|
data += chunk;
|
|
});
|
|
|
|
res.on("end", function(){
|
|
callback(null, data);
|
|
});
|
|
});
|
|
};
|
|
|
|
var getDep = function(dep) {
|
|
if (!dep.fetch)
|
|
dep.fetch = download
|
|
dep.fetch(dep.url, function(err, data) {
|
|
if (dep.postProcess)
|
|
data = dep.postProcess(data);
|
|
if (dep.needsFixup)
|
|
data = "define(function(require, exports, module) {\n"
|
|
+ data
|
|
+ "\n});";
|
|
|
|
fs.writeFile(rootDir + dep.path, data, "utf-8", function(err){
|
|
if (err) throw err;
|
|
console.log("File " + dep.path + " saved.");
|
|
});
|
|
});
|
|
};
|
|
|
|
function run(cmd, cb) {
|
|
var proc = process.platform == "win32"
|
|
? spawn("cmd", ["/c", cmd], {cwd: __dirname})
|
|
: spawn("bash", ["-c", cmd], {cwd: __dirname});
|
|
|
|
var result = "", err = "";
|
|
proc.stderr.setEncoding("utf8");
|
|
proc.stderr.on('data', function (data) {
|
|
err += data;
|
|
});
|
|
|
|
proc.stdout.setEncoding("utf8");
|
|
proc.stdout.on('data', function (data) {
|
|
result += data;
|
|
});
|
|
|
|
proc.on('exit', done);
|
|
proc.on('close', done);
|
|
function done(code) {
|
|
if (code !== 0) {
|
|
console.error(cmd + '::: process exited with code :::' + code);
|
|
console.error(err)
|
|
}
|
|
cb(err, result)
|
|
}
|
|
}
|
|
|
|
function unquote(str) {
|
|
return str.replace(/\\(.)/g, function(x, a) {
|
|
return a == "n" ? "\n"
|
|
: a == "t" ? "\t"
|
|
: a == "r" ? "\r"
|
|
: a
|
|
});
|
|
}
|
|
|
|
function browserify(_, cb) {
|
|
var br = this.browserify;
|
|
var path = Path.join("node_modules", br.path)
|
|
run("npm install " + this.browserify.npmModule, function() {
|
|
run("browserify " + path + " -s " + br.exports, function(err, src) {
|
|
src = src.replace(/^.*return\s*\(function/, "module.exports = (function")
|
|
.replace(/\}\);\s*$/, "");
|
|
src = src.replace(/(\],|\{)((?:\d+|"\w+"):\[)/g, "$1\n$2")
|
|
.replace(/^(\},)(\{[^{}\[\]]*?\}\])/gm, "$1\n$2")
|
|
cb(err, src);
|
|
})
|
|
})
|
|
}
|
|
|
|
var args = process.argv.slice(2);
|
|
args = args.filter(function(x) {return x[0] != "-" });
|
|
if (!args.length)
|
|
args = Object.keys(deps);
|
|
|
|
args.forEach(function(key) {
|
|
getDep(deps[key])
|
|
});
|
|
|