mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-03 05:34:16 -04:00
Make config path configurable
This commit is contained in:
parent
d3b0ba978c
commit
2850ff7b8a
@ -12,11 +12,16 @@ namespace Emby.Server.Implementations.AppBase
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Initializes a new instance of the <see cref="BaseApplicationPaths"/> class.
|
/// Initializes a new instance of the <see cref="BaseApplicationPaths"/> class.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
protected BaseApplicationPaths(string programDataPath, string appFolderPath, string logDirectoryPath)
|
protected BaseApplicationPaths(
|
||||||
|
string programDataPath,
|
||||||
|
string appFolderPath,
|
||||||
|
string logDirectoryPath = null,
|
||||||
|
string configurationDirectoryPath = null)
|
||||||
{
|
{
|
||||||
ProgramDataPath = programDataPath;
|
ProgramDataPath = programDataPath;
|
||||||
ProgramSystemPath = appFolderPath;
|
ProgramSystemPath = appFolderPath;
|
||||||
LogDirectoryPath = logDirectoryPath;
|
LogDirectoryPath = logDirectoryPath;
|
||||||
|
ConfigurationDirectoryPath = configurationDirectoryPath;
|
||||||
}
|
}
|
||||||
|
|
||||||
public string ProgramDataPath { get; private set; }
|
public string ProgramDataPath { get; private set; }
|
||||||
@ -134,6 +139,11 @@ namespace Emby.Server.Implementations.AppBase
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The _config directory
|
||||||
|
/// </summary>
|
||||||
|
private string _configurationDirectoryPath;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the path to the application configuration root directory
|
/// Gets the path to the application configuration root directory
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -142,7 +152,18 @@ namespace Emby.Server.Implementations.AppBase
|
|||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
return Path.Combine(ProgramDataPath, "config");
|
if (string.IsNullOrEmpty(_configurationDirectoryPath))
|
||||||
|
{
|
||||||
|
_configurationDirectoryPath = Path.Combine(ProgramDataPath, "config");
|
||||||
|
|
||||||
|
Directory.CreateDirectory(_configurationDirectoryPath);
|
||||||
|
}
|
||||||
|
|
||||||
|
return _configurationDirectoryPath;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
_configurationDirectoryPath = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -13,8 +13,13 @@ namespace Emby.Server.Implementations
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Initializes a new instance of the <see cref="BaseApplicationPaths" /> class.
|
/// Initializes a new instance of the <see cref="BaseApplicationPaths" /> class.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public ServerApplicationPaths(string programDataPath, string appFolderPath, string applicationResourcesPath, string logDirectoryPath = null)
|
public ServerApplicationPaths(
|
||||||
: base(programDataPath, appFolderPath, logDirectoryPath)
|
string programDataPath,
|
||||||
|
string appFolderPath,
|
||||||
|
string applicationResourcesPath,
|
||||||
|
string logDirectoryPath = null,
|
||||||
|
string configurationDirectoryPath = null)
|
||||||
|
: base(programDataPath, appFolderPath, logDirectoryPath, configurationDirectoryPath)
|
||||||
{
|
{
|
||||||
ApplicationResourcesPath = applicationResourcesPath;
|
ApplicationResourcesPath = applicationResourcesPath;
|
||||||
}
|
}
|
||||||
|
@ -124,6 +124,32 @@ namespace Jellyfin.Server
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
programDataPath = Path.Combine(programDataPath, "jellyfin");
|
programDataPath = Path.Combine(programDataPath, "jellyfin");
|
||||||
|
Directory.CreateDirectory(programDataPath);
|
||||||
|
}
|
||||||
|
|
||||||
|
string configPath;
|
||||||
|
if (options.ContainsOption("-configpath"))
|
||||||
|
{
|
||||||
|
configPath = options.GetOption("-configpath");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
|
||||||
|
{
|
||||||
|
configPath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// $XDG_CONFIG_HOME defines the base directory relative to which user specific configuration files should be stored.
|
||||||
|
configPath = Environment.GetEnvironmentVariable("XDG_CONFIG_HOME");
|
||||||
|
// If $XDG_CONFIG_HOME is either not set or empty, $HOME/.config should be used.
|
||||||
|
if (string.IsNullOrEmpty(configPath))
|
||||||
|
{
|
||||||
|
configPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), ".local", "share");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
configPath = Path.Combine(configPath, "jellyfin");
|
||||||
|
Directory.CreateDirectory(configPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
string logDir = Environment.GetEnvironmentVariable("JELLYFIN_LOG_DIR");
|
string logDir = Environment.GetEnvironmentVariable("JELLYFIN_LOG_DIR");
|
||||||
@ -138,7 +164,7 @@ namespace Jellyfin.Server
|
|||||||
|
|
||||||
string appPath = AppContext.BaseDirectory;
|
string appPath = AppContext.BaseDirectory;
|
||||||
|
|
||||||
return new ServerApplicationPaths(programDataPath, appPath, appPath, logDir);
|
return new ServerApplicationPaths(programDataPath, appPath, appPath, logDir, configPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static async Task createLogger(IApplicationPaths appPaths)
|
private static async Task createLogger(IApplicationPaths appPaths)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user