src/routes/quiccAlerts.router.ts
import Router from 'koa-router';
import logger from 'logger';
import { Context, Next } from 'koa';
import CartoDBService from 'services/cartoDBService';
import NotFound from 'errors/notFound';
import QuiccAlertsSerializer from 'serializers/quiccAlerts.serializer';
const router: Router = new Router({
prefix: '/api/v1/quicc-alerts'
});
class QuiccAlertsRouter {
static async getNational(ctx: Context): Promise<void> {
logger.info('Obtaining national data');
const data: Record<string, any> | void = await CartoDBService.getNational(
ctx.params.iso,
ctx.request.query.alertQuery as string,
ctx.request.query.period as string
);
// TODO: null values should be better handled
ctx.response.body = QuiccAlertsSerializer.serialize(data as Record<string, any>);
}
static async getSubnational(ctx: Context): Promise<void> {
logger.info('Obtaining subnational data');
const data: Record<string, any> | void = await CartoDBService.getSubnational(
ctx.params.iso,
ctx.params.id1,
ctx.request.query.alertQuery as string,
ctx.request.query.period as string
);
// TODO: null values should be better handled
ctx.response.body = QuiccAlertsSerializer.serialize(data as Record<string, any>);
}
static async use(ctx: Context): Promise<void> {
logger.info('Obtaining use data with name %s and id %s', ctx.params.name, ctx.params.id);
let useTable: string = null;
switch (ctx.params.name) {
case 'mining':
useTable = 'gfw_mining';
break;
case 'oilpalm':
useTable = 'gfw_oil_palm';
break;
case 'fiber':
useTable = 'gfw_wood_fiber';
break;
case 'logging':
useTable = 'gfw_logging';
break;
default:
ctx.throw(400, 'Name param invalid');
}
if (!useTable) {
ctx.throw(404, 'Name not found');
}
const data: Record<string, any> | void = await CartoDBService.getUse(
useTable,
ctx.params.id,
ctx.request.query.alertQuery as string,
ctx.request.query.period as string
);
// TODO: null values should be better handled
ctx.response.body = QuiccAlertsSerializer.serialize(data as Record<string, any>);
}
static async wdpa(ctx: Context): Promise<void> {
logger.info('Obtaining wpda data with id %s', ctx.params.id);
const data: Record<string, any> | void = await CartoDBService.getWdpa(
ctx.params.id,
ctx.request.query.alertQuery as string,
ctx.request.query.period as string
);
// TODO: null values should be better handled
ctx.response.body = QuiccAlertsSerializer.serialize(data as Record<string, any>);
}
static async world(ctx: Context): Promise<void> {
logger.info('Obtaining world data');
if (!ctx.request.query.geostore) {
ctx.throw(400, 'Geostore param required');
return;
}
try {
const data: Record<string, any> | void = await CartoDBService.getWorld(
ctx.request.query.geostore as string,
ctx.request.query.alertQuery as string,
ctx.request.query.period as string,
ctx.request.headers['x-api-key'] as string
);
// TODO: null values should be better handled
ctx.response.body = QuiccAlertsSerializer.serialize(data as Record<string, any>);
} catch (err) {
if (err instanceof NotFound) {
ctx.throw(404, 'Geostore not found');
return;
}
throw err;
}
}
static async latest(ctx: Context): Promise<void> {
logger.info('Obtaining latest data');
const data: Record<string, any> = await CartoDBService.latest(ctx.request.query.limit as string);
ctx.response.body = QuiccAlertsSerializer.serializeLatest(data);
}
}
const isCached = async (ctx: Context, next: Next): Promise<void> => {
if (await ctx.cashed()) {
return;
}
await next();
};
router.get('/admin/:iso', isCached, QuiccAlertsRouter.getNational);
router.get('/admin/:iso/:id1', isCached, QuiccAlertsRouter.getSubnational);
router.get('/use/:name/:id', isCached, QuiccAlertsRouter.use);
router.get('/wdpa/:id', isCached, QuiccAlertsRouter.wdpa);
router.get('/', isCached, QuiccAlertsRouter.world);
router.get('/latest', isCached, QuiccAlertsRouter.latest);
export default router;