mirror of
https://codeberg.org/PGPainless/cert-d-java.git
synced 2024-11-16 04:52:04 +01:00
65 lines
2.2 KiB
Java
65 lines
2.2 KiB
Java
// SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package pgp.cert_d;
|
|
|
|
import java.io.File;
|
|
|
|
public class BaseDirectoryProvider {
|
|
|
|
public static File getDefaultBaseDir() {
|
|
// Check for environment variable
|
|
String baseDirFromEnv = System.getenv("PGP_CERT_D");
|
|
if (baseDirFromEnv != null) {
|
|
return new File(baseDirFromEnv);
|
|
}
|
|
|
|
// return OS-specific default dir
|
|
String osName = System.getProperty("os.name", "generic")
|
|
.toLowerCase();
|
|
return getDefaultBaseDirForOS(osName);
|
|
}
|
|
|
|
public static File getDefaultBaseDirForOS(String osName) {
|
|
String STORE_NAME = "pgp.cert.d";
|
|
if (osName.contains("win")) {
|
|
// %APPDATA%\Roaming\pgp.cert.d
|
|
String app_data = System.getenv("APPDATA");
|
|
if (app_data == null) {
|
|
throw new AssertionError("Cannot determine APPDATA directory.");
|
|
}
|
|
File roaming = new File(app_data, "Roaming");
|
|
return new File(roaming, STORE_NAME);
|
|
}
|
|
|
|
if (osName.contains("nux")) {
|
|
// $XDG_DATA_HOME/pgp.cert.d
|
|
String xdg_data_home = System.getenv("XDG_DATA_HOME");
|
|
if (xdg_data_home != null) {
|
|
return new File(xdg_data_home, STORE_NAME);
|
|
}
|
|
String user_home = System.getProperty("user.home");
|
|
if (user_home == null) {
|
|
throw new AssertionError("Cannot determine user.home directory.");
|
|
}
|
|
// $HOME/.local/share/pgp.cert.d
|
|
File local = new File(user_home, ".local");
|
|
File share = new File(local, "share");
|
|
return new File(share, STORE_NAME);
|
|
}
|
|
|
|
if (osName.contains("mac")) {
|
|
String home = System.getenv("HOME");
|
|
if (home == null) {
|
|
throw new AssertionError("Cannot determine HOME directory.");
|
|
}
|
|
File library = new File(home, "Library");
|
|
File applicationSupport = new File(library, "Application Support");
|
|
return new File(applicationSupport, STORE_NAME);
|
|
}
|
|
|
|
throw new IllegalArgumentException("Unknown OS " + osName);
|
|
}
|
|
|
|
}
|