summaryrefslogtreecommitdiff
path: root/lib/systems.js
blob: 4b480de34499c801458918960e8a36eedc3f8555 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import * as api from './api.js';
import * as db from '../database/systems.js';

// Retrieves a list of waypoints that have a specific ctx.trait like a SHIPYARD or a MARKETPLACE in the system ctx.symbol
export async function trait(ctx) {
	const s = await system(ctx);
	return s.filter(s => s.traits.some(t => t.symbol === ctx.trait));
}

// Retrieves a list of waypoints that have a specific ctx.type like ASTEROID_FIELD in the system ctx.symbol
export async function type(ctx, response) {
	const s = await system(ctx);
	return s.filter(s => s.type === ctx.type);
}

// Retrieves the system's information for ctx.symbol and cache it in the database
export async function system(ctx) {
	let s = db.getSystem(ctx.symbol);
	if (s === null) {
		const response = await api.send({endpoint: `/systems/${ctx.symbol}/waypoints?limit=20&page=1`});
		if (response.error !== undefined) {
			switch(response.error.code) {
			case 404:
				throw `Error retrieving waypoints for system ${ctx.symbol}: ${response.error.message}`;
			default: // yet unhandled error
				throw response;
			}
		}
		if (response.meta !== undefined && response.meta.total > response.meta.limit) {
			throw `Error retrieving waypoints for system ${ctx.symbol}: Pagination is not implemented yet!`;
		}
		s = response.data;
		db.setSystem(ctx.symbol, s);
	}
	return s;
}

export async function systems(ctx) {
	const response = await api.send({endpoint: `/systems?limit=20&page=1`});
	// TODO pagination
	return response;
}

// Retrieves a shipyard's information for ctx.symbol
export async function shipyard(ctx) {
	const systemSymbol = ctx.symbol.match(/([^-]+-[^-]+)/)[1]; // TODO generalise this extraction
	console.log(systemSymbol);
	return await api.send({endpoint: `/systems/${systemSymbol}/waypoints/${ctx.symbol}/shipyard`});
}