31 lines
1,002 B
TypeScript
31 lines
1,002 B
TypeScript
import { Request, Response, Router } from 'express';
|
|
import { Extractor } from '../extractor';
|
|
import { Source } from '../source';
|
|
import { Config } from '../types';
|
|
import { buildManifest, getDefaultConfig } from '../utils';
|
|
|
|
export class ManifestController {
|
|
public readonly router: Router;
|
|
|
|
private readonly sources: Source[];
|
|
private readonly extractors: Extractor[];
|
|
|
|
public constructor(sources: Source[], extractors: Extractor[]) {
|
|
this.router = Router();
|
|
|
|
this.sources = sources;
|
|
this.extractors = extractors;
|
|
|
|
this.router.get('/manifest.json', this.getManifest.bind(this));
|
|
this.router.get('/:config/manifest.json', this.getManifest.bind(this));
|
|
}
|
|
|
|
private getManifest(req: Request, res: Response) {
|
|
const config: Config = JSON.parse(req.params['config'] || JSON.stringify(getDefaultConfig()));
|
|
|
|
const manifest = buildManifest(this.sources, this.extractors, config);
|
|
|
|
res.setHeader('Content-Type', 'application/json');
|
|
res.send(manifest);
|
|
};
|
|
}
|