| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 | 
							- using MediaBrowser.Controller.Entities;
 
- using MediaBrowser.Controller.Library;
 
- using MediaBrowser.Model.Entities;
 
- using System;
 
- using System.IO;
 
- using System.Linq;
 
- namespace MediaBrowser.Server.Implementations.Library.Resolvers
 
- {
 
-     public class PhotoResolver : ItemResolver<Photo>
 
-     {
 
-         /// <summary>
 
-         /// Resolves the specified args.
 
-         /// </summary>
 
-         /// <param name="args">The args.</param>
 
-         /// <returns>Trailer.</returns>
 
-         protected override Photo Resolve(ItemResolveArgs args)
 
-         {
 
-             // Must be an image file within a photo collection
 
-             if (string.Equals(args.GetCollectionType(), CollectionType.Photos, StringComparison.OrdinalIgnoreCase) &&
 
-                 !args.IsDirectory &&
 
-                 IsImageFile(args.Path))
 
-             {
 
-                 return new Photo
 
-                 {
 
-                     Path = args.Path
 
-                 };
 
-             }
 
-             return null;
 
-         }
 
-         // Some common file name extensions for RAW picture files include: .cr2, .crw, .dng, .nef, .orf, .rw2, .pef, .arw, .sr2, .srf, and .tif.
 
-         protected static string[] ImageExtensions = { ".tiff", ".jpeg", ".jpg", ".png", ".aiff", ".cr2", ".crw", ".dng", ".nef", ".orf", ".pef", ".arw", ".webp" };
 
-         private static readonly string[] IgnoreFiles =
 
-         {
 
-             "folder",
 
-             "thumb",
 
-             "landscape",
 
-             "fanart",
 
-             "backdrop",
 
-             "poster"
 
-         };
 
-         internal static bool IsImageFile(string path)
 
-         {
 
-             var filename = Path.GetFileNameWithoutExtension(path) ?? string.Empty;
 
-             return !IgnoreFiles.Contains(filename, StringComparer.OrdinalIgnoreCase)
 
-                 && ImageExtensions.Contains(Path.GetExtension(path) ?? string.Empty, StringComparer.OrdinalIgnoreCase);
 
-         }
 
-     }
 
- }
 
 
  |