123 lines
4.7 KiB
Java
123 lines
4.7 KiB
Java
/*
|
|
* mxisd - Matrix Identity Server Daemon
|
|
* Copyright (C) 2018 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;
|
|
|
|
import io.kamax.mxisd.config.MxisdConfig;
|
|
import io.kamax.mxisd.config.YamlConfigLoader;
|
|
import io.kamax.mxisd.exception.ConfigurationException;
|
|
import org.apache.commons.lang3.StringUtils;
|
|
import org.slf4j.Logger;
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
import java.util.Arrays;
|
|
import java.util.Iterator;
|
|
import java.util.Objects;
|
|
|
|
public class MxisdStandaloneExec {
|
|
|
|
private static final Logger log = LoggerFactory.getLogger("App");
|
|
|
|
public static void main(String[] args) {
|
|
String logLevel = System.getenv("MA1SD_LOG_LEVEL");
|
|
if (StringUtils.isNotBlank(logLevel)) {
|
|
System.setProperty("org.slf4j.simpleLogger.log.io.kamax.mxisd", logLevel);
|
|
}
|
|
|
|
try {
|
|
MxisdConfig cfg = null;
|
|
Iterator<String> argsIt = Arrays.asList(args).iterator();
|
|
boolean dump = false;
|
|
boolean exit = false;
|
|
while (argsIt.hasNext()) {
|
|
String arg = argsIt.next();
|
|
switch (arg) {
|
|
case "-h":
|
|
case "--help":
|
|
case "-?":
|
|
case "--usage":
|
|
System.out.println("Available arguments:" + System.lineSeparator());
|
|
System.out.println(" -h, --help Show this help message");
|
|
System.out.println(" --version Print the version then exit");
|
|
System.out.println(" -c, --config Set the configuration file location");
|
|
System.out.println(" -v Increase log level (log more info)");
|
|
System.out.println(" -vv Further increase log level");
|
|
System.out.println(" --dump Dump the full ma1sd configuration");
|
|
System.out.println(" --dump-and-exit Dump the full ma1sd configuration and exit");
|
|
System.out.println(" ");
|
|
System.exit(0);
|
|
return;
|
|
case "-v":
|
|
System.setProperty("org.slf4j.simpleLogger.log.io.kamax.mxisd", "debug");
|
|
break;
|
|
case "-vv":
|
|
System.setProperty("org.slf4j.simpleLogger.log.io.kamax.mxisd", "trace");
|
|
break;
|
|
case "-c":
|
|
case "--config":
|
|
String cfgFile = argsIt.next();
|
|
cfg = YamlConfigLoader.loadFromFile(cfgFile);
|
|
break;
|
|
case "--dump-and-exit":
|
|
exit = true;
|
|
case "--dump":
|
|
dump = true;
|
|
break;
|
|
default:
|
|
System.err.println("Invalid argument: " + arg);
|
|
System.err.println("Try '--help' for available arguments");
|
|
System.exit(1);
|
|
}
|
|
}
|
|
|
|
if (Objects.isNull(cfg)) {
|
|
cfg = YamlConfigLoader.tryLoadFromFile("ma1sd.yaml").orElseGet(MxisdConfig::new);
|
|
}
|
|
|
|
if (dump) {
|
|
YamlConfigLoader.dumpConfig(cfg);
|
|
if (exit) {
|
|
System.exit(0);
|
|
}
|
|
}
|
|
|
|
log.info("ma1sd starting");
|
|
log.info("Version: {}", Mxisd.Version);
|
|
|
|
HttpMxisd mxisd = new HttpMxisd(cfg);
|
|
Runtime.getRuntime().addShutdownHook(new Thread(() -> {
|
|
mxisd.stop();
|
|
log.info("ma1sd stopped");
|
|
}));
|
|
mxisd.start();
|
|
|
|
log.info("ma1sd started");
|
|
} catch (ConfigurationException e) {
|
|
log.error(e.getDetailedMessage());
|
|
log.error(e.getMessage());
|
|
System.exit(2);
|
|
} catch (Throwable t) {
|
|
t.printStackTrace();
|
|
System.exit(1);
|
|
}
|
|
}
|
|
|
|
}
|