| | 1 | | using System; |
| | 2 | | using System.IO; |
| | 3 | | using MediaBrowser.Common.Configuration; |
| | 4 | |
|
| | 5 | | namespace Emby.Server.Implementations.AppBase |
| | 6 | | { |
| | 7 | | /// <summary> |
| | 8 | | /// Provides a base class to hold common application paths used by both the UI and Server. |
| | 9 | | /// This can be subclassed to add application-specific paths. |
| | 10 | | /// </summary> |
| | 11 | | public abstract class BaseApplicationPaths : IApplicationPaths |
| | 12 | | { |
| | 13 | | /// <summary> |
| | 14 | | /// Initializes a new instance of the <see cref="BaseApplicationPaths"/> class. |
| | 15 | | /// </summary> |
| | 16 | | /// <param name="programDataPath">The program data path.</param> |
| | 17 | | /// <param name="logDirectoryPath">The log directory path.</param> |
| | 18 | | /// <param name="configurationDirectoryPath">The configuration directory path.</param> |
| | 19 | | /// <param name="cacheDirectoryPath">The cache directory path.</param> |
| | 20 | | /// <param name="webDirectoryPath">The web directory path.</param> |
| | 21 | | protected BaseApplicationPaths( |
| | 22 | | string programDataPath, |
| | 23 | | string logDirectoryPath, |
| | 24 | | string configurationDirectoryPath, |
| | 25 | | string cacheDirectoryPath, |
| | 26 | | string webDirectoryPath) |
| | 27 | | { |
| | 28 | | ProgramDataPath = programDataPath; |
| | 29 | | LogDirectoryPath = logDirectoryPath; |
| | 30 | | ConfigurationDirectoryPath = configurationDirectoryPath; |
| 21 | 31 | | CachePath = cacheDirectoryPath; |
| | 32 | | WebPath = webDirectoryPath; |
| | 33 | |
|
| 21 | 34 | | DataPath = Directory.CreateDirectory(Path.Combine(ProgramDataPath, "data")).FullName; |
| 21 | 35 | | } |
| | 36 | |
|
| | 37 | | /// <inheritdoc/> |
| | 38 | | public string ProgramDataPath { get; } |
| | 39 | |
|
| | 40 | | /// <inheritdoc/> |
| | 41 | | public string WebPath { get; } |
| | 42 | |
|
| | 43 | | /// <inheritdoc/> |
| | 44 | | public string ProgramSystemPath { get; } = AppContext.BaseDirectory; |
| | 45 | |
|
| | 46 | | /// <inheritdoc/> |
| | 47 | | public string DataPath { get; } |
| | 48 | |
|
| | 49 | | /// <inheritdoc /> |
| 171 | 50 | | public string VirtualDataPath => "%AppDataPath%"; |
| | 51 | |
|
| | 52 | | /// <inheritdoc/> |
| 0 | 53 | | public string ImageCachePath => Path.Combine(CachePath, "images"); |
| | 54 | |
|
| | 55 | | /// <inheritdoc/> |
| 294 | 56 | | public string PluginsPath => Path.Combine(ProgramDataPath, "plugins"); |
| | 57 | |
|
| | 58 | | /// <inheritdoc/> |
| 126 | 59 | | public string PluginConfigurationsPath => Path.Combine(PluginsPath, "configurations"); |
| | 60 | |
|
| | 61 | | /// <inheritdoc/> |
| | 62 | | public string LogDirectoryPath { get; } |
| | 63 | |
|
| | 64 | | /// <inheritdoc/> |
| | 65 | | public string ConfigurationDirectoryPath { get; } |
| | 66 | |
|
| | 67 | | /// <inheritdoc/> |
| 59 | 68 | | public string SystemConfigurationFilePath => Path.Combine(ConfigurationDirectoryPath, "system.xml"); |
| | 69 | |
|
| | 70 | | /// <inheritdoc/> |
| | 71 | | public string CachePath { get; set; } |
| | 72 | |
|
| | 73 | | /// <inheritdoc/> |
| 73 | 74 | | public string TempDirectory => Path.Join(Path.GetTempPath(), "jellyfin"); |
| | 75 | |
|
| | 76 | | /// <inheritdoc /> |
| 0 | 77 | | public string TrickplayPath => Path.Combine(DataPath, "trickplay"); |
| | 78 | | } |
| | 79 | | } |