97 lines
2.6 KiB
Java
97 lines
2.6 KiB
Java
/*
|
|
* mxisd - Matrix Identity Server Daemon
|
|
* Copyright (C) 2017 Kamax Sarl
|
|
*
|
|
* https://www.kamax.io/
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package io.kamax.mxisd.config;
|
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
import org.slf4j.Logger;
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
import java.net.MalformedURLException;
|
|
import java.net.URL;
|
|
|
|
public class ServerConfig {
|
|
|
|
private transient final Logger log = LoggerFactory.getLogger(ServerConfig.class);
|
|
|
|
private String name;
|
|
private int port = 8090;
|
|
private String publicUrl;
|
|
private String hostname;
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public int getPort() {
|
|
return port;
|
|
}
|
|
|
|
public void setPort(int port) {
|
|
this.port = port;
|
|
}
|
|
|
|
public String getPublicUrl() {
|
|
return publicUrl;
|
|
}
|
|
|
|
public void setPublicUrl(String publicUrl) {
|
|
this.publicUrl = publicUrl;
|
|
}
|
|
|
|
public String getHostname() {
|
|
return hostname;
|
|
}
|
|
|
|
public void setHostname(String hostname) {
|
|
this.hostname = hostname;
|
|
}
|
|
|
|
public void build() {
|
|
log.info("--- Server config ---");
|
|
|
|
if (StringUtils.isBlank(getPublicUrl())) {
|
|
setPublicUrl("https://" + getName());
|
|
log.debug("Public URL is empty, generating from name");
|
|
} else {
|
|
setPublicUrl(StringUtils.replace(getPublicUrl(), "%SERVER_NAME%", getName()));
|
|
}
|
|
|
|
try {
|
|
new URL(getPublicUrl());
|
|
} catch (MalformedURLException e) {
|
|
log.warn("Public URL is not valid: {}", StringUtils.defaultIfBlank(e.getMessage(), "<no reason provided>"));
|
|
}
|
|
|
|
if (StringUtils.isBlank(getHostname())) {
|
|
setHostname("0.0.0.0");
|
|
}
|
|
|
|
log.info("Name: {}", getName());
|
|
log.info("Port: {}", getPort());
|
|
log.info("Public URL: {}", getPublicUrl());
|
|
log.info("Hostname: {}", getHostname());
|
|
}
|
|
}
|