You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
100 lines
4.9 KiB
100 lines
4.9 KiB
/* © SRSoftware 2024 */ |
|
package de.srsoftware.oidc.app; |
|
|
|
|
|
import static de.srsoftware.oidc.api.Constants.*; |
|
import static de.srsoftware.oidc.api.data.Permission.*; |
|
import static de.srsoftware.utils.Optionals.emptyIfBlank; |
|
import static de.srsoftware.utils.Paths.configDir; |
|
import static de.srsoftware.utils.Strings.uuid; |
|
import static java.lang.System.Logger.Level.DEBUG; |
|
import static java.lang.System.Logger.Level.ERROR; |
|
import static java.lang.System.getenv; |
|
import static java.util.Optional.empty; |
|
|
|
import com.sun.net.httpserver.HttpServer; |
|
import de.srsoftware.logging.ColorLogger; |
|
import de.srsoftware.oidc.api.KeyManager; |
|
import de.srsoftware.oidc.api.KeyStorage; |
|
import de.srsoftware.oidc.api.data.User; |
|
import de.srsoftware.oidc.backend.*; |
|
import de.srsoftware.oidc.datastore.file.FileStore; |
|
import de.srsoftware.oidc.datastore.file.PlaintextKeyStore; |
|
import de.srsoftware.oidc.datastore.file.UuidHasher; |
|
import de.srsoftware.oidc.web.Forward; |
|
import de.srsoftware.oidc.web.StaticPages; |
|
import java.net.InetSocketAddress; |
|
import java.nio.file.Path; |
|
import java.util.*; |
|
import java.util.concurrent.Executors; |
|
|
|
public class Application { |
|
public static final String API_CLIENT = "/api/client"; |
|
private static final String API_TOKEN = "/api/token"; |
|
public static final String API_USER = "/api/user"; |
|
public static final String API_EMAIL = "/api/email"; |
|
public static final String FIRST_USER = "admin"; |
|
public static final String FIRST_USER_PASS = "admin"; |
|
public static final String FIRST_UUID = uuid(); |
|
public static final String JWKS = "/api/jwks.json"; |
|
public static final String ROOT = "/"; |
|
public static final String STATIC_PATH = "/web"; |
|
|
|
private static final String BASE_PATH = "basePath"; |
|
private static final String FAVICON = "/favicon.ico"; |
|
private static final String INDEX = STATIC_PATH + "/index.html"; |
|
private static final String WELL_KNOWN = "/.well-known"; |
|
private static System.Logger LOG = new ColorLogger("Application").setLogLevel(DEBUG); |
|
|
|
public static void main(String[] args) throws Exception { |
|
var argMap = map(args); |
|
Optional<Path> basePath = argMap.get(BASE_PATH) instanceof Path p ? Optional.of(p) : empty(); |
|
var storageFile = (argMap.get(CONFIG_PATH) instanceof Path p ? p : configDir(APP_NAME).resolve("config.json")).toFile(); |
|
var keyDir = storageFile.getParentFile().toPath().resolve("keys"); |
|
var passwordHasher = new UuidHasher(); |
|
var firstHash = passwordHasher.hash(FIRST_USER_PASS, FIRST_UUID); |
|
var firstUser = new User(FIRST_USER, firstHash, FIRST_USER, "%s@internal".formatted(FIRST_USER), FIRST_UUID).add(MANAGE_CLIENTS, MANAGE_SMTP, MANAGE_USERS); |
|
KeyStorage keyStore = new PlaintextKeyStore(keyDir); |
|
KeyManager keyManager = new RotatingKeyManager(keyStore); |
|
FileStore fileStore = new FileStore(storageFile, passwordHasher).init(firstUser); |
|
HttpServer server = HttpServer.create(new InetSocketAddress(8080), 0); |
|
var staticPages = (StaticPages) new StaticPages(basePath).bindPath(STATIC_PATH, FAVICON).on(server); |
|
new Forward(INDEX).bindPath(ROOT).on(server); |
|
new WellKnownController().bindPath(WELL_KNOWN).on(server); |
|
new UserController(fileStore, fileStore, fileStore, staticPages).bindPath(API_USER).on(server); |
|
var tokenControllerconfig = new TokenController.Configuration("https://lightoidc.srsoftware.de", 10); // TODO configure or derive from hostname |
|
new TokenController(fileStore, fileStore, keyManager, fileStore, tokenControllerconfig).bindPath(API_TOKEN).on(server); |
|
new ClientController(fileStore, fileStore, fileStore).bindPath(API_CLIENT).on(server); |
|
new KeyStoreController(keyStore).bindPath(JWKS).on(server); |
|
new EmailController(fileStore, fileStore).bindPath(API_EMAIL).on(server); |
|
server.setExecutor(Executors.newCachedThreadPool()); |
|
server.start(); |
|
} |
|
|
|
private static Map<String, Object> map(String[] args) { |
|
var tokens = new ArrayList<>(List.of(args)); |
|
var map = new HashMap<String, Object>(); |
|
|
|
emptyIfBlank(getenv(BASE_PATH)).map(Path::of).ifPresent(path -> map.put(BASE_PATH, path)); |
|
emptyIfBlank(getenv(CONFIG_PATH)).map(Path::of).ifPresent(path -> map.put(CONFIG_PATH, path)); |
|
|
|
// Command line arguments override environment |
|
while (!tokens.isEmpty()) { |
|
var token = tokens.remove(0); |
|
switch (token) { |
|
case "--base": |
|
if (tokens.isEmpty()) throw new IllegalArgumentException("--base option requires second argument!"); |
|
map.put(BASE_PATH, Path.of(tokens.remove(0))); |
|
break; |
|
case "--config": |
|
if (tokens.isEmpty()) throw new IllegalArgumentException("--config option requires second argument!"); |
|
map.put(CONFIG_PATH, Path.of(tokens.remove(0))); |
|
break; |
|
default: |
|
LOG.log(ERROR, "Unknown option: {0}", token); |
|
} |
|
} |
|
|
|
return map; |
|
} |
|
}
|
|
|