summaryrefslogtreecommitdiff
path: root/nodejs/lib
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--nodejs/lib/systems.js4
-rw-r--r--nodejs/lib/utils.js (renamed from nodejs/automation/utils.js)2
2 files changed, 4 insertions, 2 deletions
diff --git a/nodejs/lib/systems.js b/nodejs/lib/systems.js
index e03da6c..fefa5cd 100644
--- a/nodejs/lib/systems.js
+++ b/nodejs/lib/systems.js
@@ -1,9 +1,11 @@
import * as api from './api.js';
import * as db from '../database/systems.js';
+import * as utils from './utils.js';
+
// Retrieves a shipyard's information for ctx.symbol
export async function shipyard(ctx) {
- const systemSymbol = ctx.symbol.match(/([^-]+-[^-]+)/)[1]; // TODO generalise this extraction
+ const systemSymbol = utils.systemFromWaypoint(ctx.symbol);
console.log(systemSymbol);
return await api.send({endpoint: `/systems/${systemSymbol}/waypoints/${ctx.symbol}/shipyard`});
}
diff --git a/nodejs/automation/utils.js b/nodejs/lib/utils.js
index 01ce1ad..1d2e451 100644
--- a/nodejs/automation/utils.js
+++ b/nodejs/lib/utils.js
@@ -1,3 +1,3 @@
-export function waypointToSystem(waypoint) {
+export function systemFromWaypoint(waypoint) {
return waypoint.split('-').slice(0,2).join('-');
}