import { debugLog, send, sendPaginated, } from './api.ts'; import * as dbMarkets from '../database/markets.ts'; import * as dbSystems from '../database/systems.ts'; import { Market, System, Waypoint, } from './types.ts' import { systemFromWaypoint } from './utils.ts'; export async function market(waypoint: Waypoint): Promise { const data = dbMarkets.getMarketAtWaypoint(waypoint.symbol); if (data) { return data; } const systemSymbol = systemFromWaypoint(waypoint.symbol); let response = await send({endpoint: `/systems/${systemSymbol}/waypoints/${waypoint.symbol}/market`}); if (response.error) { debugLog(response); throw response; } dbMarkets.setMarket(response.data); return response.data; } //export async function shipyard(waypoint: string): Promise { // // TODO database caching // const systemSymbol = systemFromWaypoint(waypoint); // return await send({endpoint: `/systems/${systemSymbol}/waypoints/${waypoint}/shipyard`}); //} export async function system(symbol: string): Promise { let data = dbSystems.getSystem(symbol); if (data) { return data; } const response = await send({endpoint: `/systems/${symbol}`}); if (response.error) { debugLog(response); throw response; } dbSystems.setSystem(response.data); return response.data; } // Retrieves a list of waypoints that have a specific trait like a SHIPYARD or a MARKETPLACE export async function trait(system: string, trait: string): Promise> { const ws = await waypoints(system); return ws.filter(w => w.traits.some(t => t.symbol === trait)); } // Retrieves a list of waypoints that have a specific type like ASTEROID_FIELD export async function type(system: string, typeSymbol: string): Promise> { const ws = await waypoints(system); return ws.filter(s => s.type === typeSymbol); } export async function waypoint(waypointSymbol: string): Promise { const systemSymbol = systemFromWaypoint(waypointSymbol); const w = await waypoints(systemSymbol); return w.filter(w => w.symbol === waypointSymbol)[0]; } export async function waypoints(systemSymbol: string): Promise> { const s = await system(systemSymbol); const updated = dbSystems.getSystemUpdated(systemSymbol); // TODO handle uncharted systems if (updated) return s.waypoints; const waypoints = await sendPaginated({endpoint: `/systems/${systemSymbol}/waypoints`}); dbSystems.setSystemWaypoints(systemSymbol, waypoints); return waypoints; }