123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- using MediaBrowser.Common.Net;
- using MediaBrowser.Controller.Entities;
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Threading;
- using System.Threading.Tasks;
- using MediaBrowser.Common.Progress;
- using MediaBrowser.Model.IO;
- namespace MediaBrowser.Providers.ImagesByName
- {
- public static class ImageUtils
- {
- /// <summary>
- /// Ensures the list.
- /// </summary>
- /// <param name="url">The URL.</param>
- /// <param name="file">The file.</param>
- /// <param name="httpClient">The HTTP client.</param>
- /// <param name="fileSystem">The file system.</param>
- /// <param name="cancellationToken">The cancellation token.</param>
- /// <returns>Task.</returns>
- public static async Task<string> EnsureList(string url, string file, IHttpClient httpClient, IFileSystem fileSystem, CancellationToken cancellationToken)
- {
- var fileInfo = fileSystem.GetFileInfo(file);
- if (!fileInfo.Exists || (DateTime.UtcNow - fileSystem.GetLastWriteTimeUtc(fileInfo)).TotalDays > 1)
- {
- var temp = await httpClient.GetTempFile(new HttpRequestOptions
- {
- CancellationToken = cancellationToken,
- Progress = new SimpleProgress<double>(),
- Url = url
- }).ConfigureAwait(false);
- fileSystem.CreateDirectory(fileSystem.GetDirectoryName(file));
- try
- {
- fileSystem.CopyFile(temp, file, true);
- }
- catch
- {
-
- }
- return temp;
- }
- return file;
- }
- public static string FindMatch(IHasMetadata item, IEnumerable<string> images)
- {
- var name = GetComparableName(item.Name);
- return images.FirstOrDefault(i => string.Equals(name, GetComparableName(i), StringComparison.OrdinalIgnoreCase));
- }
- private static string GetComparableName(string name)
- {
- return name.Replace(" ", string.Empty)
- .Replace(".", string.Empty)
- .Replace("&", string.Empty)
- .Replace("!", string.Empty)
- .Replace(",", string.Empty)
- .Replace("/", string.Empty);
- }
- public static IEnumerable<string> GetAvailableImages(string file, IFileSystem fileSystem)
- {
- using (var fileStream = fileSystem.GetFileStream(file, FileOpenMode.Open, FileAccessMode.Read, FileShareMode.Read))
- {
- using (var reader = new StreamReader(fileStream))
- {
- var lines = new List<string>();
- while (!reader.EndOfStream)
- {
- var text = reader.ReadLine();
- if (!string.IsNullOrWhiteSpace(text))
- {
- lines.Add(text);
- }
- }
- return lines;
- }
- }
- }
- }
- }
|