jellyfin/MediaBrowser.Providers/Photos/PhotoProvider.cs

179 lines
6.0 KiB
C#
Raw Normal View History

using MediaBrowser.Controller.Drawing;
using MediaBrowser.Controller.Entities;
2014-02-13 00:11:54 -05:00
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Logging;
using System;
using System.Linq;
2014-02-13 00:11:54 -05:00
using System.Threading;
using System.Threading.Tasks;
using TagLib;
using TagLib.IFD;
using TagLib.IFD.Entries;
using TagLib.IFD.Tags;
2014-02-13 00:11:54 -05:00
namespace MediaBrowser.Providers.Photos
{
2015-01-23 01:15:15 -05:00
public class PhotoProvider : ICustomMetadataProvider<Photo>, IHasItemChangeMonitor, IForcedProvider
2014-02-13 00:11:54 -05:00
{
private readonly ILogger _logger;
private readonly IImageProcessor _imageProcessor;
2014-02-13 00:11:54 -05:00
public PhotoProvider(ILogger logger, IImageProcessor imageProcessor)
2014-02-13 00:11:54 -05:00
{
_logger = logger;
_imageProcessor = imageProcessor;
2014-02-13 00:11:54 -05:00
}
2014-06-09 15:16:14 -04:00
public Task<ItemUpdateType> FetchAsync(Photo item, MetadataRefreshOptions options, CancellationToken cancellationToken)
2014-02-13 00:11:54 -05:00
{
item.SetImagePath(ImageType.Primary, item.Path);
// Examples: https://github.com/mono/taglib-sharp/blob/a5f6949a53d09ce63ee7495580d6802921a21f14/tests/fixtures/TagLib.Tests.Images/NullOrientationTest.cs
try
2014-02-13 00:11:54 -05:00
{
var file = File.Create(item.Path);
2014-02-13 00:11:54 -05:00
var image = file as TagLib.Image.File;
2014-02-13 00:11:54 -05:00
var tag = file.GetTag(TagTypes.TiffIFD) as IFDTag;
2014-02-13 00:11:54 -05:00
if (tag != null)
{
var structure = tag.Structure;
2014-02-13 00:11:54 -05:00
if (structure != null)
{
var exif = structure.GetEntry(0, (ushort)IFDEntryTag.ExifIFD) as SubIFDEntry;
2014-02-13 00:11:54 -05:00
if (exif != null)
2014-02-13 00:11:54 -05:00
{
var exifStructure = exif.Structure;
if (exifStructure != null)
{
var entry = exifStructure.GetEntry(0, (ushort)ExifEntryTag.ApertureValue) as RationalIFDEntry;
if (entry != null)
{
double val = entry.Value.Numerator;
val /= entry.Value.Denominator;
item.Aperture = val;
}
entry = exifStructure.GetEntry(0, (ushort)ExifEntryTag.ShutterSpeedValue) as RationalIFDEntry;
if (entry != null)
{
double val = entry.Value.Numerator;
val /= entry.Value.Denominator;
item.ShutterSpeed = val;
}
}
2014-02-13 00:11:54 -05:00
}
}
}
2014-02-13 00:11:54 -05:00
item.CameraMake = image.ImageTag.Make;
item.CameraModel = image.ImageTag.Model;
2014-02-13 00:11:54 -05:00
var rating = image.ImageTag.Rating;
if (rating.HasValue)
{
item.CommunityRating = rating;
}
else
{
item.CommunityRating = null;
}
2014-02-19 11:24:06 -05:00
item.Overview = image.ImageTag.Comment;
2014-02-13 00:11:54 -05:00
if (!string.IsNullOrWhiteSpace(image.ImageTag.Title))
{
item.Name = image.ImageTag.Title;
2014-02-13 00:11:54 -05:00
}
var dateTaken = image.ImageTag.DateTime;
if (dateTaken.HasValue)
2014-02-13 00:11:54 -05:00
{
item.DateCreated = dateTaken.Value;
item.PremiereDate = dateTaken.Value;
item.ProductionYear = dateTaken.Value.Year;
2014-02-13 00:11:54 -05:00
}
item.Genres = image.ImageTag.Genres.ToList();
item.Tags = image.ImageTag.Keywords.ToList();
item.Software = image.ImageTag.Software;
if (image.ImageTag.Orientation == TagLib.Image.ImageOrientation.None)
{
item.Orientation = null;
}
else
{
Model.Drawing.ImageOrientation orientation;
if (Enum.TryParse(image.ImageTag.Orientation.ToString(), true, out orientation))
{
item.Orientation = orientation;
}
}
item.ExposureTime = image.ImageTag.ExposureTime;
item.FocalLength = image.ImageTag.FocalLength;
2014-08-30 10:26:29 -04:00
item.Latitude = image.ImageTag.Latitude;
item.Longitude = image.ImageTag.Longitude;
item.Altitude = image.ImageTag.Altitude;
if (image.ImageTag.ISOSpeedRatings.HasValue)
{
item.IsoSpeedRating = Convert.ToInt32(image.ImageTag.ISOSpeedRatings.Value);
}
else
{
item.IsoSpeedRating = null;
}
}
catch (Exception e)
{
_logger.ErrorException("Image Provider - Error reading image tag for {0}", e, item.Path);
}
2014-02-13 00:11:54 -05:00
2014-10-12 11:18:26 -04:00
var imageInfo = item.GetImageInfo(ImageType.Primary, 0);
try
{
2015-02-28 08:42:47 -05:00
var size = _imageProcessor.GetImageSize(imageInfo);
item.Width = Convert.ToInt32(size.Width);
item.Height = Convert.ToInt32(size.Height);
}
catch
{
2014-10-12 11:18:26 -04:00
}
2014-02-13 00:11:54 -05:00
const ItemUpdateType result = ItemUpdateType.ImageUpdate | ItemUpdateType.MetadataImport;
return Task.FromResult(result);
}
public string Name
{
get { return "Embedded Information"; }
}
2014-09-10 21:57:11 -04:00
public bool HasChanged(IHasMetadata item, MetadataStatus status, IDirectoryService directoryService)
2014-02-13 00:11:54 -05:00
{
2014-09-10 21:57:11 -04:00
if (status.ItemDateModified.HasValue)
{
2014-09-10 21:57:11 -04:00
return status.ItemDateModified.Value != item.DateModified;
}
2014-09-10 21:57:11 -04:00
return false;
2014-02-13 00:11:54 -05:00
}
}
}