| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | #pragma warning disable CA1002, CS1591, SA1300 |
| | 4 | |
|
| | 5 | | using System; |
| | 6 | | using System.Collections.Generic; |
| | 7 | | using System.Globalization; |
| | 8 | | using System.IO; |
| | 9 | | using System.Linq; |
| | 10 | | using System.Net.Http; |
| | 11 | | using System.Text.Json; |
| | 12 | | using System.Threading; |
| | 13 | | using System.Threading.Tasks; |
| | 14 | | using Jellyfin.Extensions.Json; |
| | 15 | | using MediaBrowser.Common.Configuration; |
| | 16 | | using MediaBrowser.Common.Extensions; |
| | 17 | | using MediaBrowser.Common.Net; |
| | 18 | | using MediaBrowser.Controller.Configuration; |
| | 19 | | using MediaBrowser.Controller.Entities.Audio; |
| | 20 | | using MediaBrowser.Controller.Providers; |
| | 21 | | using MediaBrowser.Model.Entities; |
| | 22 | | using MediaBrowser.Model.IO; |
| | 23 | | using MediaBrowser.Model.Providers; |
| | 24 | | using MediaBrowser.Providers.Music; |
| | 25 | |
|
| | 26 | | namespace MediaBrowser.Providers.Plugins.AudioDb |
| | 27 | | { |
| | 28 | | public class AudioDbAlbumProvider : IRemoteMetadataProvider<MusicAlbum, AlbumInfo>, IHasOrder |
| | 29 | | { |
| | 30 | | private readonly IServerConfigurationManager _config; |
| | 31 | | private readonly IFileSystem _fileSystem; |
| | 32 | | private readonly IHttpClientFactory _httpClientFactory; |
| 21 | 33 | | private readonly JsonSerializerOptions _jsonOptions = JsonDefaults.Options; |
| | 34 | |
|
| | 35 | | #pragma warning disable SA1401, CA2211 |
| | 36 | | public static AudioDbAlbumProvider Current; |
| | 37 | | #pragma warning restore SA1401, CA2211 |
| | 38 | |
|
| | 39 | | public AudioDbAlbumProvider(IServerConfigurationManager config, IFileSystem fileSystem, IHttpClientFactory httpC |
| | 40 | | { |
| 21 | 41 | | _config = config; |
| 21 | 42 | | _fileSystem = fileSystem; |
| 21 | 43 | | _httpClientFactory = httpClientFactory; |
| | 44 | |
|
| 21 | 45 | | Current = this; |
| 21 | 46 | | } |
| | 47 | |
|
| | 48 | | /// <inheritdoc /> |
| 0 | 49 | | public string Name => "TheAudioDB"; |
| | 50 | |
|
| | 51 | | /// <inheritdoc /> |
| | 52 | | // After music brainz |
| 0 | 53 | | public int Order => 1; |
| | 54 | |
|
| | 55 | | /// <inheritdoc /> |
| | 56 | | public Task<IEnumerable<RemoteSearchResult>> GetSearchResults(AlbumInfo searchInfo, CancellationToken cancellati |
| 0 | 57 | | => Task.FromResult(Enumerable.Empty<RemoteSearchResult>()); |
| | 58 | |
|
| | 59 | | /// <inheritdoc /> |
| | 60 | | public async Task<MetadataResult<MusicAlbum>> GetMetadata(AlbumInfo info, CancellationToken cancellationToken) |
| | 61 | | { |
| | 62 | | var result = new MetadataResult<MusicAlbum>(); |
| | 63 | | var id = info.GetReleaseGroupId(); |
| | 64 | |
|
| | 65 | | if (!string.IsNullOrWhiteSpace(id)) |
| | 66 | | { |
| | 67 | | await EnsureInfo(id, cancellationToken).ConfigureAwait(false); |
| | 68 | |
|
| | 69 | | var path = GetAlbumInfoPath(_config.ApplicationPaths, id); |
| | 70 | |
|
| | 71 | | FileStream jsonStream = AsyncFile.OpenRead(path); |
| | 72 | | await using (jsonStream.ConfigureAwait(false)) |
| | 73 | | { |
| | 74 | | var obj = await JsonSerializer.DeserializeAsync<RootObject>(jsonStream, _jsonOptions, cancellationTo |
| | 75 | |
|
| | 76 | | if (obj is not null && obj.album is not null && obj.album.Count > 0) |
| | 77 | | { |
| | 78 | | result.Item = new MusicAlbum(); |
| | 79 | | result.HasMetadata = true; |
| | 80 | | ProcessResult(result.Item, obj.album[0], info.MetadataLanguage); |
| | 81 | | } |
| | 82 | | } |
| | 83 | | } |
| | 84 | |
|
| | 85 | | return result; |
| | 86 | | } |
| | 87 | |
|
| | 88 | | private void ProcessResult(MusicAlbum item, Album result, string preferredLanguage) |
| | 89 | | { |
| 0 | 90 | | if (Plugin.Instance.Configuration.ReplaceAlbumName && !string.IsNullOrWhiteSpace(result.strAlbum)) |
| | 91 | | { |
| 0 | 92 | | item.Album = result.strAlbum; |
| | 93 | | } |
| | 94 | |
|
| 0 | 95 | | if (!string.IsNullOrWhiteSpace(result.strArtist)) |
| | 96 | | { |
| 0 | 97 | | item.AlbumArtists = new string[] { result.strArtist }; |
| | 98 | | } |
| | 99 | |
|
| 0 | 100 | | if (!string.IsNullOrEmpty(result.intYearReleased)) |
| | 101 | | { |
| 0 | 102 | | item.ProductionYear = int.Parse(result.intYearReleased, CultureInfo.InvariantCulture); |
| | 103 | | } |
| | 104 | |
|
| 0 | 105 | | if (!string.IsNullOrEmpty(result.strGenre)) |
| | 106 | | { |
| 0 | 107 | | item.Genres = new[] { result.strGenre }; |
| | 108 | | } |
| | 109 | |
|
| 0 | 110 | | item.SetProviderId(MetadataProvider.AudioDbArtist, result.idArtist); |
| 0 | 111 | | item.SetProviderId(MetadataProvider.AudioDbAlbum, result.idAlbum); |
| | 112 | |
|
| 0 | 113 | | item.SetProviderId(MetadataProvider.MusicBrainzAlbumArtist, result.strMusicBrainzArtistID); |
| 0 | 114 | | item.SetProviderId(MetadataProvider.MusicBrainzReleaseGroup, result.strMusicBrainzID); |
| | 115 | |
|
| 0 | 116 | | string overview = null; |
| | 117 | |
|
| 0 | 118 | | if (string.Equals(preferredLanguage, "de", StringComparison.OrdinalIgnoreCase)) |
| | 119 | | { |
| 0 | 120 | | overview = result.strDescriptionDE; |
| | 121 | | } |
| 0 | 122 | | else if (string.Equals(preferredLanguage, "fr", StringComparison.OrdinalIgnoreCase)) |
| | 123 | | { |
| 0 | 124 | | overview = result.strDescriptionFR; |
| | 125 | | } |
| 0 | 126 | | else if (string.Equals(preferredLanguage, "nl", StringComparison.OrdinalIgnoreCase)) |
| | 127 | | { |
| 0 | 128 | | overview = result.strDescriptionNL; |
| | 129 | | } |
| 0 | 130 | | else if (string.Equals(preferredLanguage, "ru", StringComparison.OrdinalIgnoreCase)) |
| | 131 | | { |
| 0 | 132 | | overview = result.strDescriptionRU; |
| | 133 | | } |
| 0 | 134 | | else if (string.Equals(preferredLanguage, "it", StringComparison.OrdinalIgnoreCase)) |
| | 135 | | { |
| 0 | 136 | | overview = result.strDescriptionIT; |
| | 137 | | } |
| 0 | 138 | | else if ((preferredLanguage ?? string.Empty).StartsWith("pt", StringComparison.OrdinalIgnoreCase)) |
| | 139 | | { |
| 0 | 140 | | overview = result.strDescriptionPT; |
| | 141 | | } |
| | 142 | |
|
| 0 | 143 | | if (string.IsNullOrWhiteSpace(overview)) |
| | 144 | | { |
| 0 | 145 | | overview = result.strDescriptionEN; |
| | 146 | | } |
| | 147 | |
|
| 0 | 148 | | item.Overview = (overview ?? string.Empty).StripHtml(); |
| 0 | 149 | | } |
| | 150 | |
|
| | 151 | | internal async Task EnsureInfo(string musicBrainzReleaseGroupId, CancellationToken cancellationToken) |
| | 152 | | { |
| | 153 | | var xmlPath = GetAlbumInfoPath(_config.ApplicationPaths, musicBrainzReleaseGroupId); |
| | 154 | |
|
| | 155 | | var fileInfo = _fileSystem.GetFileSystemInfo(xmlPath); |
| | 156 | |
|
| | 157 | | if (fileInfo.Exists |
| | 158 | | && (DateTime.UtcNow - _fileSystem.GetLastWriteTimeUtc(fileInfo)).TotalDays <= 2) |
| | 159 | | { |
| | 160 | | return; |
| | 161 | | } |
| | 162 | |
|
| | 163 | | await DownloadInfo(musicBrainzReleaseGroupId, cancellationToken).ConfigureAwait(false); |
| | 164 | | } |
| | 165 | |
|
| | 166 | | internal async Task DownloadInfo(string musicBrainzReleaseGroupId, CancellationToken cancellationToken) |
| | 167 | | { |
| | 168 | | cancellationToken.ThrowIfCancellationRequested(); |
| | 169 | |
|
| | 170 | | var url = AudioDbArtistProvider.BaseUrl + "/album-mb.php?i=" + musicBrainzReleaseGroupId; |
| | 171 | |
|
| | 172 | | var path = GetAlbumInfoPath(_config.ApplicationPaths, musicBrainzReleaseGroupId); |
| | 173 | |
|
| | 174 | | Directory.CreateDirectory(Path.GetDirectoryName(path)); |
| | 175 | |
|
| | 176 | | using var response = await _httpClientFactory.CreateClient(NamedClient.Default).GetAsync(url, cancellationTo |
| | 177 | | var fileStreamOptions = AsyncFile.WriteOptions; |
| | 178 | | fileStreamOptions.Mode = FileMode.Create; |
| | 179 | | var fs = new FileStream(path, fileStreamOptions); |
| | 180 | | await using (fs.ConfigureAwait(false)) |
| | 181 | | { |
| | 182 | | await response.Content.CopyToAsync(fs, cancellationToken).ConfigureAwait(false); |
| | 183 | | } |
| | 184 | | } |
| | 185 | |
|
| | 186 | | private static string GetAlbumDataPath(IApplicationPaths appPaths, string musicBrainzReleaseGroupId) |
| | 187 | | { |
| 0 | 188 | | var dataPath = Path.Combine(GetAlbumDataPath(appPaths), musicBrainzReleaseGroupId); |
| | 189 | |
|
| 0 | 190 | | return dataPath; |
| | 191 | | } |
| | 192 | |
|
| | 193 | | private static string GetAlbumDataPath(IApplicationPaths appPaths) |
| | 194 | | { |
| 0 | 195 | | var dataPath = Path.Combine(appPaths.CachePath, "audiodb-album"); |
| | 196 | |
|
| 0 | 197 | | return dataPath; |
| | 198 | | } |
| | 199 | |
|
| | 200 | | internal static string GetAlbumInfoPath(IApplicationPaths appPaths, string musicBrainzReleaseGroupId) |
| | 201 | | { |
| 0 | 202 | | var dataPath = GetAlbumDataPath(appPaths, musicBrainzReleaseGroupId); |
| | 203 | |
|
| 0 | 204 | | return Path.Combine(dataPath, "album.json"); |
| | 205 | | } |
| | 206 | |
|
| | 207 | | /// <inheritdoc /> |
| | 208 | | public Task<HttpResponseMessage> GetImageResponse(string url, CancellationToken cancellationToken) |
| | 209 | | { |
| 0 | 210 | | throw new NotImplementedException(); |
| | 211 | | } |
| | 212 | |
|
| | 213 | | #pragma warning disable CA1034, CA2227 |
| | 214 | | public class Album |
| | 215 | | { |
| | 216 | | public string idAlbum { get; set; } |
| | 217 | |
|
| | 218 | | public string idArtist { get; set; } |
| | 219 | |
|
| | 220 | | public string strAlbum { get; set; } |
| | 221 | |
|
| | 222 | | public string strArtist { get; set; } |
| | 223 | |
|
| | 224 | | public string intYearReleased { get; set; } |
| | 225 | |
|
| | 226 | | public string strGenre { get; set; } |
| | 227 | |
|
| | 228 | | public string strSubGenre { get; set; } |
| | 229 | |
|
| | 230 | | public string strReleaseFormat { get; set; } |
| | 231 | |
|
| | 232 | | public string intSales { get; set; } |
| | 233 | |
|
| | 234 | | public string strAlbumThumb { get; set; } |
| | 235 | |
|
| | 236 | | public string strAlbumCDart { get; set; } |
| | 237 | |
|
| | 238 | | public string strDescriptionEN { get; set; } |
| | 239 | |
|
| | 240 | | public string strDescriptionDE { get; set; } |
| | 241 | |
|
| | 242 | | public string strDescriptionFR { get; set; } |
| | 243 | |
|
| | 244 | | public string strDescriptionCN { get; set; } |
| | 245 | |
|
| | 246 | | public string strDescriptionIT { get; set; } |
| | 247 | |
|
| | 248 | | public string strDescriptionJP { get; set; } |
| | 249 | |
|
| | 250 | | public string strDescriptionRU { get; set; } |
| | 251 | |
|
| | 252 | | public string strDescriptionES { get; set; } |
| | 253 | |
|
| | 254 | | public string strDescriptionPT { get; set; } |
| | 255 | |
|
| | 256 | | public string strDescriptionSE { get; set; } |
| | 257 | |
|
| | 258 | | public string strDescriptionNL { get; set; } |
| | 259 | |
|
| | 260 | | public string strDescriptionHU { get; set; } |
| | 261 | |
|
| | 262 | | public string strDescriptionNO { get; set; } |
| | 263 | |
|
| | 264 | | public string strDescriptionIL { get; set; } |
| | 265 | |
|
| | 266 | | public string strDescriptionPL { get; set; } |
| | 267 | |
|
| | 268 | | public object intLoved { get; set; } |
| | 269 | |
|
| | 270 | | public object intScore { get; set; } |
| | 271 | |
|
| | 272 | | public string strReview { get; set; } |
| | 273 | |
|
| | 274 | | public object strMood { get; set; } |
| | 275 | |
|
| | 276 | | public object strTheme { get; set; } |
| | 277 | |
|
| | 278 | | public object strSpeed { get; set; } |
| | 279 | |
|
| | 280 | | public object strLocation { get; set; } |
| | 281 | |
|
| | 282 | | public string strMusicBrainzID { get; set; } |
| | 283 | |
|
| | 284 | | public string strMusicBrainzArtistID { get; set; } |
| | 285 | |
|
| | 286 | | public object strItunesID { get; set; } |
| | 287 | |
|
| | 288 | | public object strAmazonID { get; set; } |
| | 289 | |
|
| | 290 | | public string strLocked { get; set; } |
| | 291 | | } |
| | 292 | |
|
| | 293 | | public class RootObject |
| | 294 | | { |
| | 295 | | public List<Album> album { get; set; } |
| | 296 | | } |
| | 297 | | } |
| | 298 | | } |