-
Notifications
You must be signed in to change notification settings - Fork 158
/
Copy pathapp.ts
91 lines (80 loc) · 2.9 KB
/
app.ts
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
import * as path from 'path';
import * as _ from 'lodash';
import * as fs from 'fs';
import { Browser, computeExecutablePath } from '@puppeteer/browsers';
import { RenderGRPCPluginV2 } from './plugin/v2/grpc_plugin';
import { HttpServer } from './service/http-server';
import { populateServiceConfigFromEnv, ServiceConfig, defaultServiceConfig } from './service/config';
import { populatePluginConfigFromEnv, PluginConfig, defaultPluginConfig } from './plugin/v2/config';
import { ConsoleLogger, PluginLogger } from './logger';
import * as minimist from 'minimist';
import { serve } from './node-plugin';
import { createSanitizer } from './sanitizer/Sanitizer';
async function main() {
const argv = minimist(process.argv.slice(2));
const env = Object.assign({}, process.env);
const command = argv._[0];
if (command === undefined) {
const logger = new PluginLogger();
const config: PluginConfig = defaultPluginConfig;
populatePluginConfigFromEnv(config, env);
if (!config.rendering.chromeBin && (process as any).pkg) {
const execPath = path.dirname(process.execPath);
const chromeInfoFile = fs.readFileSync(path.resolve(execPath, 'chrome-info.json'), 'utf8');
const chromeInfo = JSON.parse(chromeInfoFile);
config.rendering.chromeBin = computeExecutablePath({
cacheDir: path.dirname(process.execPath),
browser: Browser.CHROMEHEADLESSSHELL,
buildId: chromeInfo.buildId,
});
logger.debug(`Setting chromeBin to ${config.rendering.chromeBin}`);
}
await serve({
handshakeConfig: {
protocolVersion: 2,
magicCookieKey: 'grafana_plugin_type',
magicCookieValue: 'datasource',
},
versionedPlugins: {
2: {
renderer: new RenderGRPCPluginV2(config, logger),
},
},
logger: logger,
grpcHost: config.plugin.grpc.host,
grpcPort: config.plugin.grpc.port,
});
} else if (command === 'server') {
let config: ServiceConfig = defaultServiceConfig;
if (argv.config) {
try {
const fileConfig = readJSONFileSync(argv.config);
config = _.merge(config, fileConfig);
} catch (e) {
console.error('failed to read config from path', argv.config, 'error', e);
return;
}
}
populateServiceConfigFromEnv(config, env);
const logger = new ConsoleLogger(config.service.logging);
const sanitizer = createSanitizer();
const server = new HttpServer(config, logger, sanitizer);
await server.start();
} else {
console.log('Unknown command');
}
}
main().catch((err) => {
const errorLog = {
'@level': 'error',
'@message': 'failed to start grafana-image-renderer',
'error': err.message,
'trace': err.stack,
}
console.error(JSON.stringify(errorLog));
process.exit(1);
});
function readJSONFileSync(filePath: string) {
const rawdata = fs.readFileSync(filePath, 'utf8');
return JSON.parse(rawdata);
};