| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | using System; |
| | 4 | | using System.Collections.Generic; |
| | 5 | | using System.Globalization; |
| | 6 | | using System.IO; |
| | 7 | | using System.Linq; |
| | 8 | | using System.Net.Http; |
| | 9 | | using System.Threading; |
| | 10 | | using System.Threading.Tasks; |
| | 11 | | using Jellyfin.Extensions; |
| | 12 | | using MediaBrowser.Common.Net; |
| | 13 | | using MediaBrowser.Controller.Configuration; |
| | 14 | | using MediaBrowser.Controller.Entities; |
| | 15 | | using MediaBrowser.Controller.Providers; |
| | 16 | | using MediaBrowser.Model.Entities; |
| | 17 | | using MediaBrowser.Model.IO; |
| | 18 | | using MediaBrowser.Model.Providers; |
| | 19 | |
|
| | 20 | | namespace MediaBrowser.Providers.Plugins.StudioImages |
| | 21 | | { |
| | 22 | | /// <summary> |
| | 23 | | /// Studio image provider. |
| | 24 | | /// </summary> |
| | 25 | | public class StudiosImageProvider : IRemoteImageProvider |
| | 26 | | { |
| | 27 | | private readonly IServerConfigurationManager _config; |
| | 28 | | private readonly IHttpClientFactory _httpClientFactory; |
| | 29 | | private readonly IFileSystem _fileSystem; |
| | 30 | |
|
| | 31 | | /// <summary> |
| | 32 | | /// Initializes a new instance of the <see cref="StudiosImageProvider"/> class. |
| | 33 | | /// </summary> |
| | 34 | | /// <param name="config">The <see cref="IServerConfigurationManager"/>.</param> |
| | 35 | | /// <param name="httpClientFactory">The <see cref="IHttpClientFactory"/>.</param> |
| | 36 | | /// <param name="fileSystem">The <see cref="IFileSystem"/>.</param> |
| | 37 | | public StudiosImageProvider(IServerConfigurationManager config, IHttpClientFactory httpClientFactory, IFileSyste |
| | 38 | | { |
| 21 | 39 | | _config = config; |
| 21 | 40 | | _httpClientFactory = httpClientFactory; |
| 21 | 41 | | _fileSystem = fileSystem; |
| 21 | 42 | | } |
| | 43 | |
|
| | 44 | | /// <inheritdoc /> |
| 0 | 45 | | public string Name => "Artwork Repository"; |
| | 46 | |
|
| | 47 | | /// <inheritdoc /> |
| | 48 | | public bool Supports(BaseItem item) |
| | 49 | | { |
| 53 | 50 | | return item is Studio; |
| | 51 | | } |
| | 52 | |
|
| | 53 | | /// <inheritdoc /> |
| | 54 | | public IEnumerable<ImageType> GetSupportedImages(BaseItem item) |
| | 55 | | { |
| 0 | 56 | | return [ImageType.Thumb]; |
| | 57 | | } |
| | 58 | |
|
| | 59 | | /// <inheritdoc /> |
| | 60 | | public async Task<IEnumerable<RemoteImageInfo>> GetImages(BaseItem item, CancellationToken cancellationToken) |
| | 61 | | { |
| | 62 | | var thumbsPath = Path.Combine(_config.ApplicationPaths.CachePath, "imagesbyname", "remotestudiothumbs.txt"); |
| | 63 | |
|
| | 64 | | await EnsureThumbsList(thumbsPath, cancellationToken).ConfigureAwait(false); |
| | 65 | |
|
| | 66 | | cancellationToken.ThrowIfCancellationRequested(); |
| | 67 | |
|
| | 68 | | var imageInfo = GetImage(item, thumbsPath, ImageType.Thumb, "thumb"); |
| | 69 | |
|
| | 70 | | if (imageInfo is null) |
| | 71 | | { |
| | 72 | | return []; |
| | 73 | | } |
| | 74 | |
|
| | 75 | | return [imageInfo]; |
| | 76 | | } |
| | 77 | |
|
| | 78 | | private RemoteImageInfo GetImage(BaseItem item, string filename, ImageType type, string remoteFilename) |
| | 79 | | { |
| 0 | 80 | | var list = GetAvailableImages(filename); |
| | 81 | |
|
| 0 | 82 | | var match = FindMatch(item, list); |
| | 83 | |
|
| 0 | 84 | | if (!string.IsNullOrEmpty(match)) |
| | 85 | | { |
| 0 | 86 | | var url = GetUrl(match, remoteFilename); |
| | 87 | |
|
| 0 | 88 | | return new RemoteImageInfo |
| 0 | 89 | | { |
| 0 | 90 | | ProviderName = Name, |
| 0 | 91 | | Type = type, |
| 0 | 92 | | Url = url |
| 0 | 93 | | }; |
| | 94 | | } |
| | 95 | |
|
| 0 | 96 | | return null; |
| | 97 | | } |
| | 98 | |
|
| | 99 | | private string GetUrl(string image, string filename) |
| | 100 | | { |
| 0 | 101 | | return string.Format(CultureInfo.InvariantCulture, "{0}/images/{1}/{2}.jpg", GetRepositoryUrl(), image, file |
| | 102 | | } |
| | 103 | |
|
| | 104 | | private async Task EnsureThumbsList(string file, CancellationToken cancellationToken) |
| | 105 | | { |
| | 106 | | string url = string.Format(CultureInfo.InvariantCulture, "{0}/thumbs.txt", GetRepositoryUrl()); |
| | 107 | |
|
| | 108 | | await EnsureList(url, file, _fileSystem, cancellationToken).ConfigureAwait(false); |
| | 109 | | } |
| | 110 | |
|
| | 111 | | /// <inheritdoc /> |
| | 112 | | public Task<HttpResponseMessage> GetImageResponse(string url, CancellationToken cancellationToken) |
| | 113 | | { |
| 0 | 114 | | var httpClient = _httpClientFactory.CreateClient(NamedClient.Default); |
| 0 | 115 | | return httpClient.GetAsync(url, cancellationToken); |
| | 116 | | } |
| | 117 | |
|
| | 118 | | /// <summary> |
| | 119 | | /// Ensures the existence of a file listing. |
| | 120 | | /// </summary> |
| | 121 | | /// <param name="url">The URL.</param> |
| | 122 | | /// <param name="file">The file.</param> |
| | 123 | | /// <param name="fileSystem">The file system.</param> |
| | 124 | | /// <param name="cancellationToken">The cancellation token.</param> |
| | 125 | | /// <returns>A Task to ensure existence of a file listing.</returns> |
| | 126 | | public async Task EnsureList(string url, string file, IFileSystem fileSystem, CancellationToken cancellationToke |
| | 127 | | { |
| | 128 | | var fileInfo = fileSystem.GetFileInfo(file); |
| | 129 | |
|
| | 130 | | if (!fileInfo.Exists || (DateTime.UtcNow - fileSystem.GetLastWriteTimeUtc(fileInfo)).TotalDays > 1) |
| | 131 | | { |
| | 132 | | var httpClient = _httpClientFactory.CreateClient(NamedClient.Default); |
| | 133 | |
|
| | 134 | | Directory.CreateDirectory(Path.GetDirectoryName(file)); |
| | 135 | | var response = await httpClient.GetStreamAsync(url, cancellationToken).ConfigureAwait(false); |
| | 136 | | await using (response.ConfigureAwait(false)) |
| | 137 | | { |
| | 138 | | var fileStream = new FileStream(file, FileMode.Create, FileAccess.Write, FileShare.None, IODefaults. |
| | 139 | | await using (fileStream.ConfigureAwait(false)) |
| | 140 | | { |
| | 141 | | await response.CopyToAsync(fileStream, cancellationToken).ConfigureAwait(false); |
| | 142 | | } |
| | 143 | | } |
| | 144 | | } |
| | 145 | | } |
| | 146 | |
|
| | 147 | | /// <summary> |
| | 148 | | /// Get matching image for an item. |
| | 149 | | /// </summary> |
| | 150 | | /// <param name="item">The <see cref="BaseItem"/>.</param> |
| | 151 | | /// <param name="images">The enumerable of image strings.</param> |
| | 152 | | /// <returns>The matching image string.</returns> |
| | 153 | | public string FindMatch(BaseItem item, IEnumerable<string> images) |
| | 154 | | { |
| 0 | 155 | | var name = GetComparableName(item.Name); |
| | 156 | |
|
| 0 | 157 | | return images.FirstOrDefault(i => string.Equals(name, GetComparableName(i), StringComparison.OrdinalIgnoreCa |
| | 158 | | } |
| | 159 | |
|
| | 160 | | private string GetComparableName(string name) |
| | 161 | | { |
| 0 | 162 | | return name.Replace(" ", string.Empty, StringComparison.Ordinal) |
| 0 | 163 | | .Replace(".", string.Empty, StringComparison.Ordinal) |
| 0 | 164 | | .Replace("&", string.Empty, StringComparison.Ordinal) |
| 0 | 165 | | .Replace("!", string.Empty, StringComparison.Ordinal) |
| 0 | 166 | | .Replace(",", string.Empty, StringComparison.Ordinal) |
| 0 | 167 | | .Replace("/", string.Empty, StringComparison.Ordinal); |
| | 168 | | } |
| | 169 | |
|
| | 170 | | /// <summary> |
| | 171 | | /// Get available image strings for a file. |
| | 172 | | /// </summary> |
| | 173 | | /// <param name="file">The file.</param> |
| | 174 | | /// <returns>All images strings of a file.</returns> |
| | 175 | | public IEnumerable<string> GetAvailableImages(string file) |
| | 176 | | { |
| | 177 | | using var fileStream = File.OpenRead(file); |
| | 178 | | using var reader = new StreamReader(fileStream); |
| | 179 | |
|
| | 180 | | foreach (var line in reader.ReadAllLines()) |
| | 181 | | { |
| | 182 | | if (!string.IsNullOrWhiteSpace(line)) |
| | 183 | | { |
| | 184 | | yield return line; |
| | 185 | | } |
| | 186 | | } |
| | 187 | | } |
| | 188 | |
|
| | 189 | | private string GetRepositoryUrl() |
| 0 | 190 | | => Plugin.Instance.Configuration.RepositoryUrl; |
| | 191 | | } |
| | 192 | | } |