misskey/src/utils/dependencyInfo.ts

32 lines
990 B
TypeScript
Raw Normal View History

2016-12-30 18:12:28 +00:00
import Logger from './logger';
import { execSync } from 'child_process';
2016-12-30 18:12:28 +00:00
2017-01-02 19:39:44 +00:00
export default class {
2016-12-30 18:12:28 +00:00
logger: Logger;
constructor() {
this.logger = new Logger('Deps');
}
showAll(): void {
this.show('MongoDB', 'mongo --version', x => x.match(/^MongoDB shell version:? (.*)\r?\n/));
this.show('Redis', 'redis-server --version', x => x.match(/v=([0-9\.]*)/));
2016-12-31 08:05:55 +00:00
this.show('GraphicsMagick', 'gm -version', x => x.match(/^GraphicsMagick ([0-9\.]*) .*/));
2016-12-30 18:12:28 +00:00
}
show(serviceName: string, command: string, transform: (x: string) => RegExpMatchArray): void {
try {
const x = execSync(command, { stdio: ['pipe', 'pipe', 'ignore'] });
const ver = transform(x.toString());
2016-12-30 18:12:28 +00:00
if (ver != null) {
this.logger.info(`${serviceName} ${ver[1]} found`);
} else {
this.logger.warn(`${serviceName} not found`);
this.logger.warn(`Regexp used for version check of ${serviceName} is probably messed up`);
}
} catch (e) {
2016-12-30 18:12:28 +00:00
this.logger.warn(`${serviceName} not found`);
}
}
}