summaryrefslogtreecommitdiff
path: root/nodejs/automation/exploration.js
diff options
context:
space:
mode:
Diffstat (limited to 'nodejs/automation/exploration.js')
-rw-r--r--nodejs/automation/exploration.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/nodejs/automation/exploration.js b/nodejs/automation/exploration.js
new file mode 100644
index 0000000..b35efe0
--- /dev/null
+++ b/nodejs/automation/exploration.js
@@ -0,0 +1,21 @@
+import * as db from '../database/systems.js';
+import * as api from '../lib/api.js';
+
+// Retrieves all systems information, should be called only once after registering
+export async function init() {
+ if (db.isInit()) {
+ return;
+ }
+ for (let page=1; true; ++page) {
+ const response = await api.send({endpoint: `/systems?limit=20&page=${page}`, priority:100});
+ if (response.error !== undefined) {
+ throw response;
+ }
+ response.data.forEach(system => db.setSystem(system));
+ if (response.meta.total <= response.meta.limit * page) {
+ break;
+ }
+ }
+ console.log('Finished retrieving all systems information');
+ db.init();
+}