| | 1 | | using System.Globalization; |
| | 2 | | using System.IO; |
| | 3 | | using MediaBrowser.Controller.Configuration; |
| | 4 | | using MediaBrowser.Controller.Entities; |
| | 5 | | using MediaBrowser.Controller.IO; |
| | 6 | |
|
| | 7 | | namespace Emby.Server.Implementations.Library; |
| | 8 | |
|
| | 9 | | /// <summary> |
| | 10 | | /// IPathManager implementation. |
| | 11 | | /// </summary> |
| | 12 | | public class PathManager : IPathManager |
| | 13 | | { |
| | 14 | | private readonly IServerConfigurationManager _config; |
| | 15 | |
|
| | 16 | | /// <summary> |
| | 17 | | /// Initializes a new instance of the <see cref="PathManager"/> class. |
| | 18 | | /// </summary> |
| | 19 | | /// <param name="config">The server configuration manager.</param> |
| | 20 | | public PathManager( |
| | 21 | | IServerConfigurationManager config) |
| | 22 | | { |
| 21 | 23 | | _config = config; |
| 21 | 24 | | } |
| | 25 | |
|
| | 26 | | /// <inheritdoc /> |
| | 27 | | public string GetTrickplayDirectory(BaseItem item, bool saveWithMedia = false) |
| | 28 | | { |
| 0 | 29 | | var basePath = _config.ApplicationPaths.TrickplayPath; |
| 0 | 30 | | var idString = item.Id.ToString("N", CultureInfo.InvariantCulture); |
| | 31 | |
|
| 0 | 32 | | return saveWithMedia |
| 0 | 33 | | ? Path.Combine(item.ContainingFolderPath, Path.ChangeExtension(item.Path, ".trickplay")) |
| 0 | 34 | | : Path.Combine(basePath, idString); |
| | 35 | | } |
| | 36 | | } |