summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2019-04-10 00:40:10 +0900
committersyuilo <syuilotan@yahoo.co.jp>2019-04-10 00:40:10 +0900
commit72a5f7b1e2428538fda3ef9b51a85a296dc0f91d (patch)
treecaeb426debf39628b29159ca3c8d6e04fd97c820 /src
parent11.0.0-alpha.7 (diff)
downloadsharkey-72a5f7b1e2428538fda3ef9b51a85a296dc0f91d.tar.gz
sharkey-72a5f7b1e2428538fda3ef9b51a85a296dc0f91d.tar.bz2
sharkey-72a5f7b1e2428538fda3ef9b51a85a296dc0f91d.zip
Fix bug
Diffstat (limited to 'src')
-rw-r--r--src/config/load.ts20
1 files changed, 4 insertions, 16 deletions
diff --git a/src/config/load.ts b/src/config/load.ts
index 4d174d0e27..6200faf12a 100644
--- a/src/config/load.ts
+++ b/src/config/load.ts
@@ -7,7 +7,6 @@ import { URL } from 'url';
import * as yaml from 'js-yaml';
import { Source, Mixin } from './types';
import * as pkg from '../../package.json';
-import { toPuny } from '../misc/convert-host';
/**
* Path of configuration directory
@@ -26,14 +25,14 @@ export default function load() {
const mixin = {} as Mixin;
- const url = validateUrl(config.url);
+ const url = tryCreateUrl(config.url);
- config.url = toPuny(normalizeUrl(config.url));
+ config.url = url.origin;
config.port = config.port || parseInt(process.env.PORT, 10);
- mixin.host = toPuny(url.host);
- mixin.hostname = toPuny(url.hostname);
+ mixin.host = url.host;
+ mixin.hostname = url.hostname;
mixin.scheme = url.protocol.replace(/:$/, '');
mixin.wsScheme = mixin.scheme.replace('http', 'ws');
mixin.wsUrl = `${mixin.wsScheme}://${mixin.host}`;
@@ -54,14 +53,3 @@ function tryCreateUrl(url: string) {
throw `url="${url}" is not a valid URL.`;
}
}
-
-function validateUrl(url: string) {
- const result = tryCreateUrl(url);
- if (result.pathname.replace('/', '').length) throw `url="${url}" is not a valid URL, has a pathname.`;
- if (!url.includes(result.host)) throw `url="${url}" is not a valid URL, has an invalid hostname.`;
- return result;
-}
-
-function normalizeUrl(url: string) {
- return url.endsWith('/') ? url.substr(0, url.length - 1) : url;
-}