Starbeamrainbowlabs
009d6335a0
In the future, we might be able to use a proxy object here or some other wizadry? I'm not sure.
66 lines
1.4 KiB
JavaScript
Executable file
66 lines
1.4 KiB
JavaScript
Executable file
#!/usr/bin/env node
|
|
"use strict";
|
|
|
|
// 1: Setup & Imports
|
|
import c from './bootstrap/container.mjs';
|
|
|
|
import show_help from './help.mjs';
|
|
|
|
const settings = c.resolve("settings");
|
|
const a = c.resolve("ansi");
|
|
const l = c.resolve("log");
|
|
|
|
// 2: CLI Argument Parsing
|
|
let args = process.argv.slice(2); // Slice out the node binary name and the filename
|
|
let extras = [];
|
|
for(let i = 0; i < args.length; i++) {
|
|
if(!args[i].startsWith("-")) {
|
|
extras.push(args[i]);
|
|
continue;
|
|
}
|
|
|
|
switch(args[i]) {
|
|
case "--help":
|
|
case "-h":
|
|
show_help(settings);
|
|
process.exit();
|
|
break;
|
|
|
|
case "--version":
|
|
case "-v":
|
|
console.log(program.version);
|
|
break;
|
|
|
|
// Add more arguments here
|
|
}
|
|
}
|
|
|
|
// 3: Environment Variable Parsing
|
|
|
|
// process.env.XYZ
|
|
|
|
// 4: Run
|
|
if(extras.length < 1) {
|
|
console.error(`${a.fred}${a.hicol}Error: No subcommand specified.${a.reset}`);
|
|
show_help(settings);
|
|
process.exit();
|
|
}
|
|
|
|
l.log(`${a.fgreen}${a.hicol}*** LoRaWAN Signal Mapper ***`);
|
|
|
|
switch(extras[0]) {
|
|
case "ttn-app-server":
|
|
l.log(`${a.fgreen}${a.hicol}Starting The Things Network application server${a.reset}`);
|
|
|
|
let app_server = c.resolve("TTNAppServer");
|
|
app_server.run();
|
|
break;
|
|
|
|
default:
|
|
console.error(`${a.fred}${a.hicol}Error: Subcommand '${extras[0]}' not recognised.${a.reset}`);
|
|
console.error( `${a.fred}Perhaps you mistyped it, or it hasn't been implemented yet?`);
|
|
process.exit(1);
|
|
break;
|
|
}
|
|
|
|
// 5: Cleanup
|