53 lines
1.5 KiB
JavaScript
53 lines
1.5 KiB
JavaScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
/**
|
|
* YAMLファイルをJSONファイルに変換するスクリプト
|
|
* ビルド前に実行し、ランタイムにjs-yamlを含まないようにする
|
|
*/
|
|
|
|
import fs from 'node:fs';
|
|
import { resolve, dirname } from 'node:path';
|
|
import { fileURLToPath } from 'node:url';
|
|
import yaml from 'js-yaml';
|
|
|
|
const _filename = fileURLToPath(import.meta.url);
|
|
const _dirname = dirname(_filename);
|
|
|
|
const configDir = resolve(_dirname, '../../../.config');
|
|
const OUTPUT_PATH = resolve(configDir, '.config.json');
|
|
|
|
/**
|
|
* YAMLファイルをJSONファイルに変換
|
|
* @param {string} ymlPath - YAMLファイルのパス
|
|
* @param {string} jsonPath - JSONファイルの出力パス
|
|
*/
|
|
function convertYamlToJson(ymlPath, jsonPath) {
|
|
if (!fs.existsSync(ymlPath)) {
|
|
console.log(`skipped: ${ymlPath} is not found`);
|
|
return;
|
|
}
|
|
|
|
const yamlContent = fs.readFileSync(ymlPath, 'utf-8');
|
|
const jsonContent = yaml.load(yamlContent);
|
|
fs.writeFileSync(jsonPath, JSON.stringify({
|
|
'_NOTE_': 'This file is auto-generated from YAML file. DO NOT EDIT.',
|
|
...jsonContent,
|
|
}), 'utf-8');
|
|
console.log(`✓ ${ymlPath} → ${jsonPath}`);
|
|
}
|
|
|
|
if (process.env.MISSKEY_CONFIG_YML) {
|
|
const customYmlPath = resolve(configDir, process.env.MISSKEY_CONFIG_YML);
|
|
convertYamlToJson(customYmlPath, OUTPUT_PATH);
|
|
} else {
|
|
convertYamlToJson(
|
|
resolve(configDir, process.env.NODE_ENV === 'test' ? 'test.yml' : 'default.yml'),
|
|
OUTPUT_PATH,
|
|
);
|
|
}
|
|
|
|
console.log('Configuration compiled');
|