jellyfin/Emby.Server.Implementations/ServerApplicationPaths.cs

155 lines
5.6 KiB
C#
Raw Normal View History

using System;
2017-02-20 21:50:58 +01:00
using System.IO;
using Emby.Server.Implementations.AppBase;
2013-02-24 22:53:54 +01:00
using MediaBrowser.Controller;
2013-02-21 02:33:05 +01:00
2017-02-20 21:50:58 +01:00
namespace Emby.Server.Implementations
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Extends BaseApplicationPaths to add paths that are only applicable on the server
/// </summary>
2013-02-24 22:53:54 +01:00
public class ServerApplicationPaths : BaseApplicationPaths, IServerApplicationPaths
2013-02-21 02:33:05 +01:00
{
2013-09-21 03:04:14 +02:00
/// <summary>
/// Initializes a new instance of the <see cref="BaseApplicationPaths" /> class.
/// </summary>
2019-01-05 19:12:05 +01:00
public ServerApplicationPaths(
string programDataPath,
string appFolderPath,
string applicationResourcesPath,
string logDirectoryPath = null,
2019-01-28 17:52:56 +01:00
string configurationDirectoryPath = null,
string cacheDirectoryPath = null)
: base(programDataPath,
appFolderPath,
logDirectoryPath,
configurationDirectoryPath,
cacheDirectoryPath)
2013-09-21 03:04:14 +02:00
{
ApplicationResourcesPath = applicationResourcesPath;
2013-09-21 03:04:14 +02:00
}
public string ApplicationResourcesPath { get; private set; }
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the path to the base root media directory
/// </summary>
/// <value>The root folder path.</value>
public string RootFolderPath => Path.Combine(ProgramDataPath, "root");
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the path to the default user view directory. Used if no specific user view is defined.
/// </summary>
/// <value>The default user views path.</value>
public string DefaultUserViewsPath => Path.Combine(RootFolderPath, "default");
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the path to localization data.
/// </summary>
/// <value>The localization path.</value>
public string LocalizationPath => Path.Combine(ProgramDataPath, "localization");
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the path to the People directory
/// </summary>
/// <value>The people path.</value>
public string PeoplePath => Path.Combine(InternalMetadataPath, "People");
2013-02-21 02:33:05 +01:00
public string ArtistsPath => Path.Combine(InternalMetadataPath, "artists");
2016-08-18 07:56:10 +02:00
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the path to the Genre directory
/// </summary>
/// <value>The genre path.</value>
public string GenrePath => Path.Combine(InternalMetadataPath, "Genre");
2013-02-21 02:33:05 +01:00
2013-06-11 05:31:00 +02:00
/// <summary>
/// Gets the path to the Genre directory
/// </summary>
/// <value>The genre path.</value>
public string MusicGenrePath => Path.Combine(InternalMetadataPath, "MusicGenre");
2013-09-21 03:04:14 +02:00
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the path to the Studio directory
/// </summary>
/// <value>The studio path.</value>
public string StudioPath => Path.Combine(InternalMetadataPath, "Studio");
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the path to the Year directory
/// </summary>
/// <value>The year path.</value>
public string YearPath => Path.Combine(InternalMetadataPath, "Year");
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the path to the General IBN directory
/// </summary>
/// <value>The general path.</value>
public string GeneralPath => Path.Combine(InternalMetadataPath, "general");
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the path to the Ratings IBN directory
/// </summary>
/// <value>The ratings path.</value>
public string RatingsPath => Path.Combine(InternalMetadataPath, "ratings");
2013-02-21 02:33:05 +01:00
2013-05-02 16:30:38 +02:00
/// <summary>
/// Gets the media info images path.
/// </summary>
/// <value>The media info images path.</value>
public string MediaInfoImagesPath => Path.Combine(InternalMetadataPath, "mediainfo");
2013-05-02 16:30:38 +02:00
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the path to the user configuration directory
/// </summary>
/// <value>The user configuration directory path.</value>
public string UserConfigurationDirectoryPath => Path.Combine(ConfigurationDirectoryPath, "users");
2013-02-21 02:33:05 +01:00
2018-09-12 19:26:21 +02:00
private string _defaultTranscodingTempPath;
public string DefaultTranscodingTempPath => _defaultTranscodingTempPath ?? (_defaultTranscodingTempPath = Path.Combine(ProgramDataPath, "transcoding-temp"));
2018-09-12 19:26:21 +02:00
private string _transcodingTempPath;
public string TranscodingTempPath
2013-02-21 02:33:05 +01:00
{
get => _transcodingTempPath ?? (_transcodingTempPath = DefaultTranscodingTempPath);
set => _transcodingTempPath = value;
2013-02-21 02:33:05 +01:00
}
public string GetTranscodingTempPath()
{
var path = TranscodingTempPath;
2018-09-12 19:26:21 +02:00
if (!string.Equals(path, DefaultTranscodingTempPath, StringComparison.OrdinalIgnoreCase))
{
2018-09-12 19:26:21 +02:00
try
{
Directory.CreateDirectory(path);
var testPath = Path.Combine(path, Guid.NewGuid().ToString());
Directory.CreateDirectory(testPath);
Directory.Delete(testPath);
return path;
}
catch
{
}
}
2018-09-12 19:26:21 +02:00
path = DefaultTranscodingTempPath;
Directory.CreateDirectory(path);
return path;
}
2014-03-25 22:13:55 +01:00
private string _internalMetadataPath;
2014-02-08 21:02:35 +01:00
public string InternalMetadataPath
{
get => _internalMetadataPath ?? (_internalMetadataPath = Path.Combine(DataPath, "metadata"));
set => _internalMetadataPath = value;
2014-02-08 21:02:35 +01:00
}
2018-09-12 19:26:21 +02:00
private const string _virtualInternalMetadataPath = "%MetadataPath%";
public string VirtualInternalMetadataPath => _virtualInternalMetadataPath;
2013-02-21 02:33:05 +01:00
}
}