87ef08cf7a
$ webpack && gulp build 「dont.know.yet」は、正しいURLではありません。先頭に http:// または https:// をつけ忘れてないかなど確認してください。 [00:28:15] Requiring external module ts-node/register /** node-macaddress: Unkown os.platform(), defaulting to `unix'. Error: Cannot find module './built/client/meta.json' at Function.Module._resolveFilename (module.js:543:15) at Function.Module._load (module.js:470:25) at Module.require (module.js:593:17) at require (internal/module.js:11:18) /** * Config loader at Object.<anonymous> (/usr/home/saper/sw/misskey/gulpfile.ts:24:16) at Module._compile (module.js:649:30) at Module.m._compile (/usr/home/saper/sw/misskey/node_modules/ts-node/src/index.ts:402:23) at Module._extensions..js (module.js:660:10) at Object.require.extensions.(anonymous function) [as .ts] (/usr/home/saper/sw/misskey/node_modules/ts-node/src/index.ts:405:12) at Module.load (module.js:561:32) error Command failed with exit code 1.
57 lines
1.6 KiB
TypeScript
57 lines
1.6 KiB
TypeScript
/**
|
|
* Config loader
|
|
*/
|
|
|
|
import * as fs from 'fs';
|
|
import { URL } from 'url';
|
|
import * as yaml from 'js-yaml';
|
|
import { Source, Mixin } from './types';
|
|
import isUrl = require('is-url');
|
|
|
|
/**
|
|
* Path of configuration directory
|
|
*/
|
|
const dir = `${__dirname}/../../.config`;
|
|
|
|
/**
|
|
* Path of configuration file
|
|
*/
|
|
const path = process.env.NODE_ENV == 'test'
|
|
? `${dir}/test.yml`
|
|
: `${dir}/default.yml`;
|
|
|
|
export default function load() {
|
|
const config = yaml.safeLoad(fs.readFileSync(path, 'utf-8')) as Source;
|
|
|
|
const mixin = {} as Mixin;
|
|
|
|
// Validate URLs
|
|
if (!isUrl(config.url)) urlError(config.url);
|
|
|
|
const url = new URL(config.url);
|
|
config.url = normalizeUrl(config.url);
|
|
|
|
mixin.host = url.host;
|
|
mixin.hostname = url.hostname;
|
|
mixin.scheme = url.protocol.replace(/:$/, '');
|
|
mixin.ws_scheme = mixin.scheme.replace('http', 'ws');
|
|
mixin.ws_url = `${mixin.ws_scheme}://${mixin.host}`;
|
|
mixin.api_url = `${mixin.scheme}://${mixin.host}/api`;
|
|
mixin.auth_url = `${mixin.scheme}://${mixin.host}/auth`;
|
|
mixin.dev_url = `${mixin.scheme}://${mixin.host}/dev`;
|
|
mixin.docs_url = `${mixin.scheme}://${mixin.host}/docs`;
|
|
mixin.stats_url = `${mixin.scheme}://${mixin.host}/stats`;
|
|
mixin.status_url = `${mixin.scheme}://${mixin.host}/status`;
|
|
mixin.drive_url = `${mixin.scheme}://${mixin.host}/files`;
|
|
|
|
return Object.assign(config, mixin);
|
|
}
|
|
|
|
function normalizeUrl(url: string) {
|
|
return url[url.length - 1] === '/' ? url.substr(0, url.length - 1) : url;
|
|
}
|
|
|
|
function urlError(url: string) {
|
|
console.error(`「${url}」は、正しいURLではありません。先頭に http:// または https:// をつけ忘れてないかなど確認してください。`);
|
|
process.exit(99);
|
|
}
|