mirror of
https://github.com/gnh1201/welsonjs.git
synced 2024-11-26 15:31:42 +00:00
89 lines
2.3 KiB
JavaScript
89 lines
2.3 KiB
JavaScript
// uriloader.js
|
|
// URI scheme loader for WelsonJS framework
|
|
// Namhyeon Go <abuse@catswords.net>
|
|
// https;//github.com/gnh1201/welsonjs
|
|
var SYS = require("lib/system");
|
|
var SHELL = require("lib/shell");
|
|
var URI = require("lib/uri");
|
|
var WINLIBS = require("lib/winlibs");
|
|
|
|
function main(args) {
|
|
var uri = args[0];
|
|
var pos = uri.indexOf(":///");
|
|
if (pos < 0) {
|
|
console.log("Not vaild URI scheme");
|
|
} else {
|
|
var commands = [],
|
|
queryString = uri.substring(pos + 4),
|
|
query = URI.parseQueryString(queryString);
|
|
|
|
if (!query.application)
|
|
query.application = "";
|
|
|
|
switch (query.application) {
|
|
case "app":
|
|
commands.push([
|
|
"start",
|
|
"/d",
|
|
SYS.getCurrentScriptDirectory(),
|
|
"app.hta",
|
|
uri
|
|
]);
|
|
break;
|
|
|
|
case "mscalc":
|
|
commands.push([
|
|
"calc.exe"
|
|
]);
|
|
break;
|
|
|
|
case "msie":
|
|
WINLIBS.loadLibrary("url").call("FileProtocolHandler", [
|
|
"https://github.com/gnh1201/welsonjs"
|
|
]);
|
|
break;
|
|
|
|
case "msexcel":
|
|
commands.push([
|
|
"%PROGRAMFILES%\\Microsoft Office\\Office15\\EXCEL.EXE"
|
|
]);
|
|
break;
|
|
|
|
case "mspowerpoint":
|
|
commands.push([
|
|
"%PROGRAMFILES%\\Microsoft Office\\Office15\\POWERPNT.EXE"
|
|
]);
|
|
break;
|
|
|
|
case "msword":
|
|
commands.push([
|
|
"%PROGRAMFILES%\\Microsoft Office\\Office15\\WINWORD.EXE"
|
|
]);
|
|
break;
|
|
|
|
case "msaccess":
|
|
commands.push([
|
|
"%PROGRAMFILES%\\Microsoft Office\\Office15\\MSACCESS.EXE"
|
|
]);
|
|
break;
|
|
|
|
case "arduino":
|
|
commands.push([
|
|
"%PROGRAMFILES(X86)%\\Arduino\\arduino.exe"
|
|
]);
|
|
break;
|
|
|
|
dafault:
|
|
console.log("Unknown application");
|
|
}
|
|
|
|
if (commands.length > 0) {
|
|
SHELL.run(commands.pop());
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
exports.main = main;
|