jellyfin/Emby.Server.Implementations/Dto/DtoService.cs

1691 lines
57 KiB
C#
Raw Normal View History

2014-10-24 06:54:35 +02:00
using MediaBrowser.Common;
2014-05-17 23:23:48 +02:00
using MediaBrowser.Controller.Channels;
2014-01-30 06:20:18 +01:00
using MediaBrowser.Controller.Configuration;
2015-01-24 20:03:55 +01:00
using MediaBrowser.Controller.Devices;
2013-09-18 20:49:06 +02:00
using MediaBrowser.Controller.Drawing;
2013-09-04 19:02:19 +02:00
using MediaBrowser.Controller.Dto;
using MediaBrowser.Controller.Entities;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Controller.Entities.Audio;
using MediaBrowser.Controller.Entities.Movies;
using MediaBrowser.Controller.Entities.TV;
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.LiveTv;
using MediaBrowser.Controller.Persistence;
2014-02-21 19:48:15 +01:00
using MediaBrowser.Controller.Providers;
2014-07-22 18:36:34 +02:00
using MediaBrowser.Controller.Sync;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Model.Drawing;
using MediaBrowser.Model.Dto;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Model.Entities;
2013-02-21 07:38:23 +01:00
using MediaBrowser.Model.Logging;
using MediaBrowser.Model.Querying;
2015-01-24 20:03:55 +01:00
using MediaBrowser.Model.Sync;
2013-02-21 02:33:05 +01:00
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
2016-03-02 19:42:39 +01:00
using System.Threading.Tasks;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Common.IO;
using MediaBrowser.Controller.IO;
using MediaBrowser.Model.IO;
2016-10-22 04:08:34 +02:00
using MediaBrowser.Model.Extensions;
2013-02-21 02:33:05 +01:00
namespace Emby.Server.Implementations.Dto
2013-02-21 02:33:05 +01:00
{
2013-09-04 19:02:19 +02:00
public class DtoService : IDtoService
2013-02-21 02:33:05 +01:00
{
private readonly ILogger _logger;
private readonly ILibraryManager _libraryManager;
2013-10-02 18:08:58 +02:00
private readonly IUserDataManager _userDataRepository;
2013-06-18 21:16:27 +02:00
private readonly IItemRepository _itemRepo;
2013-09-18 20:49:06 +02:00
private readonly IImageProcessor _imageProcessor;
2014-01-30 06:20:18 +01:00
private readonly IServerConfigurationManager _config;
2014-02-07 21:30:41 +01:00
private readonly IFileSystem _fileSystem;
2014-02-21 19:48:15 +01:00
private readonly IProviderManager _providerManager;
2013-10-02 18:08:58 +02:00
private readonly Func<IChannelManager> _channelManagerFactory;
2014-07-22 18:36:34 +02:00
private readonly ISyncManager _syncManager;
2014-10-24 06:54:35 +02:00
private readonly IApplicationHost _appHost;
2015-01-24 20:03:55 +01:00
private readonly Func<IDeviceManager> _deviceManager;
2015-03-07 23:43:53 +01:00
private readonly Func<IMediaSourceManager> _mediaSourceManager;
2015-05-31 20:22:51 +02:00
private readonly Func<ILiveTvManager> _livetvManager;
2015-05-31 20:22:51 +02:00
public DtoService(ILogger logger, ILibraryManager libraryManager, IUserDataManager userDataRepository, IItemRepository itemRepo, IImageProcessor imageProcessor, IServerConfigurationManager config, IFileSystem fileSystem, IProviderManager providerManager, Func<IChannelManager> channelManagerFactory, ISyncManager syncManager, IApplicationHost appHost, Func<IDeviceManager> deviceManager, Func<IMediaSourceManager> mediaSourceManager, Func<ILiveTvManager> livetvManager)
{
_logger = logger;
_libraryManager = libraryManager;
_userDataRepository = userDataRepository;
2013-06-18 21:16:27 +02:00
_itemRepo = itemRepo;
2013-09-18 20:49:06 +02:00
_imageProcessor = imageProcessor;
2014-01-30 06:20:18 +01:00
_config = config;
2014-02-07 21:30:41 +01:00
_fileSystem = fileSystem;
2014-02-21 19:48:15 +01:00
_providerManager = providerManager;
_channelManagerFactory = channelManagerFactory;
2014-07-22 18:36:34 +02:00
_syncManager = syncManager;
2014-10-24 06:54:35 +02:00
_appHost = appHost;
2015-01-24 20:03:55 +01:00
_deviceManager = deviceManager;
2015-03-07 23:43:53 +01:00
_mediaSourceManager = mediaSourceManager;
2015-05-31 20:22:51 +02:00
_livetvManager = livetvManager;
}
2013-02-21 02:33:05 +01:00
/// <summary>
2013-05-15 18:56:38 +02:00
/// Converts a BaseItem to a DTOBaseItem
2013-02-21 02:33:05 +01:00
/// </summary>
/// <param name="item">The item.</param>
/// <param name="fields">The fields.</param>
2013-05-15 18:56:38 +02:00
/// <param name="user">The user.</param>
/// <param name="owner">The owner.</param>
2013-02-21 02:33:05 +01:00
/// <returns>Task{DtoBaseItem}.</returns>
/// <exception cref="System.ArgumentNullException">item</exception>
2013-09-17 04:44:06 +02:00
public BaseItemDto GetBaseItemDto(BaseItem item, List<ItemFields> fields, User user = null, BaseItem owner = null)
2014-06-28 21:35:30 +02:00
{
2014-11-30 20:01:33 +01:00
var options = new DtoOptions
{
2014-12-21 06:57:06 +01:00
Fields = fields
2014-11-30 20:01:33 +01:00
};
2015-01-24 20:03:55 +01:00
2014-11-30 20:01:33 +01:00
return GetBaseItemDto(item, options, user, owner);
}
2016-06-19 08:18:29 +02:00
public async Task<List<BaseItemDto>> GetBaseItemDtos(IEnumerable<BaseItem> items, DtoOptions options, User user = null, BaseItem owner = null)
2015-01-24 20:03:55 +01:00
{
2016-06-26 22:35:03 +02:00
if (items == null)
{
throw new ArgumentNullException("items");
}
if (options == null)
{
throw new ArgumentNullException("options");
}
2016-08-03 08:38:19 +02:00
var syncDictionary = GetSyncedItemProgress(options);
2015-01-24 20:03:55 +01:00
var list = new List<BaseItemDto>();
var programTuples = new List<Tuple<BaseItem, BaseItemDto>>();
var channelTuples = new List<Tuple<BaseItemDto, LiveTvChannel>>();
2015-01-24 20:03:55 +01:00
foreach (var item in items)
{
2016-08-03 08:38:19 +02:00
var dto = await GetBaseItemDtoInternal(item, options, user, owner).ConfigureAwait(false);
2015-01-24 20:03:55 +01:00
2016-03-22 07:49:36 +01:00
var tvChannel = item as LiveTvChannel;
if (tvChannel != null)
{
channelTuples.Add(new Tuple<BaseItemDto, LiveTvChannel>(dto, tvChannel));
}
else if (item is LiveTvProgram)
2016-03-02 19:42:39 +01:00
{
programTuples.Add(new Tuple<BaseItem, BaseItemDto>(item, dto));
}
2015-01-24 20:03:55 +01:00
var byName = item as IItemByName;
if (byName != null)
2015-01-24 20:03:55 +01:00
{
2015-04-04 04:34:53 +02:00
if (options.Fields.Contains(ItemFields.ItemCounts))
2015-03-26 05:44:24 +01:00
{
2016-05-11 04:21:28 +02:00
var libraryItems = byName.GetTaggedItems(new InternalItemsQuery(user)
{
Recursive = true
});
2015-01-24 20:03:55 +01:00
2015-03-26 05:44:24 +01:00
SetItemByNameInfo(item, dto, libraryItems.ToList(), user);
}
2015-01-24 20:03:55 +01:00
}
2016-08-03 08:38:19 +02:00
FillSyncInfo(dto, item, options, user, syncDictionary);
2015-01-24 20:03:55 +01:00
list.Add(dto);
}
2016-03-02 19:42:39 +01:00
if (programTuples.Count > 0)
{
2016-06-19 08:18:29 +02:00
await _livetvManager().AddInfoToProgramDto(programTuples, options.Fields, user).ConfigureAwait(false);
2016-03-02 19:42:39 +01:00
}
2016-03-22 07:49:36 +01:00
if (channelTuples.Count > 0)
{
_livetvManager().AddChannelInfo(channelTuples, options, user);
}
2015-01-24 20:03:55 +01:00
return list;
}
2014-11-30 20:01:33 +01:00
public BaseItemDto GetBaseItemDto(BaseItem item, DtoOptions options, User user = null, BaseItem owner = null)
{
2016-08-03 08:38:19 +02:00
var syncDictionary = GetSyncedItemProgress(options);
2015-06-02 19:46:44 +02:00
2016-08-03 08:38:19 +02:00
var dto = GetBaseItemDtoInternal(item, options, user, owner).Result;
2016-03-22 07:49:36 +01:00
var tvChannel = item as LiveTvChannel;
if (tvChannel != null)
{
var list = new List<Tuple<BaseItemDto, LiveTvChannel>> { new Tuple<BaseItemDto, LiveTvChannel>(dto, tvChannel) };
_livetvManager().AddChannelInfo(list, options, user);
}
else if (item is LiveTvProgram)
2016-03-02 19:42:39 +01:00
{
var list = new List<Tuple<BaseItem, BaseItemDto>> { new Tuple<BaseItem, BaseItemDto>(item, dto) };
var task = _livetvManager().AddInfoToProgramDto(list, options.Fields, user);
Task.WaitAll(task);
}
2014-06-28 21:35:30 +02:00
var byName = item as IItemByName;
if (byName != null)
2014-06-28 21:35:30 +02:00
{
2015-04-04 04:34:53 +02:00
if (options.Fields.Contains(ItemFields.ItemCounts))
2015-03-26 05:44:24 +01:00
{
2015-07-08 18:10:34 +02:00
SetItemByNameInfo(item, dto, GetTaggedItems(byName, user), user);
2015-03-26 05:44:24 +01:00
}
2014-06-28 21:35:30 +02:00
2016-08-03 08:38:19 +02:00
FillSyncInfo(dto, item, options, user, syncDictionary);
2014-06-28 21:35:30 +02:00
return dto;
}
2016-08-03 08:38:19 +02:00
FillSyncInfo(dto, item, options, user, syncDictionary);
2015-01-24 20:03:55 +01:00
2014-07-28 00:01:29 +02:00
return dto;
2014-06-28 21:35:30 +02:00
}
2015-07-08 18:10:34 +02:00
private List<BaseItem> GetTaggedItems(IItemByName byName, User user)
{
2016-05-10 21:20:17 +02:00
var items = byName.GetTaggedItems(new InternalItemsQuery(user)
2015-07-08 18:10:34 +02:00
{
2016-05-10 21:20:17 +02:00
Recursive = true
2015-07-08 18:10:34 +02:00
2016-05-10 21:20:17 +02:00
}).ToList();
2015-07-08 18:10:34 +02:00
2016-05-10 21:20:17 +02:00
return items;
2015-07-08 18:10:34 +02:00
}
2016-08-03 08:38:19 +02:00
public Dictionary<string, SyncedItemProgress> GetSyncedItemProgress(DtoOptions options)
2015-01-24 20:03:55 +01:00
{
2016-08-03 08:38:19 +02:00
if (!options.Fields.Contains(ItemFields.BasicSyncInfo) &&
!options.Fields.Contains(ItemFields.SyncInfo))
2015-01-24 20:03:55 +01:00
{
2016-08-03 08:38:19 +02:00
return new Dictionary<string, SyncedItemProgress>();
2015-01-24 20:03:55 +01:00
}
var deviceId = options.DeviceId;
if (string.IsNullOrWhiteSpace(deviceId))
{
2016-08-03 08:38:19 +02:00
return new Dictionary<string, SyncedItemProgress>();
2015-01-24 20:03:55 +01:00
}
var caps = _deviceManager().GetCapabilities(deviceId);
if (caps == null || !caps.SupportsSync)
{
2016-08-03 08:38:19 +02:00
return new Dictionary<string, SyncedItemProgress>();
2015-01-24 20:03:55 +01:00
}
2015-06-02 19:46:44 +02:00
return _syncManager.GetSyncedItemProgresses(new SyncJobItemQuery
2015-01-24 20:03:55 +01:00
{
2015-01-25 07:34:50 +01:00
TargetId = deviceId,
2015-04-04 04:16:42 +02:00
Statuses = new[]
2015-01-25 07:34:50 +01:00
{
SyncJobItemStatus.Converting,
SyncJobItemStatus.Queued,
2015-02-05 04:01:37 +01:00
SyncJobItemStatus.Transferring,
2015-06-02 19:46:44 +02:00
SyncJobItemStatus.ReadyToTransfer,
2015-04-04 04:16:42 +02:00
SyncJobItemStatus.Synced
}
2016-08-03 08:38:19 +02:00
});
2015-01-24 20:03:55 +01:00
}
2016-02-11 19:29:42 +01:00
public void FillSyncInfo(IEnumerable<Tuple<BaseItem, BaseItemDto>> tuples, DtoOptions options, User user)
2015-04-12 20:58:21 +02:00
{
2016-08-03 08:38:19 +02:00
if (options.Fields.Contains(ItemFields.BasicSyncInfo) ||
options.Fields.Contains(ItemFields.SyncInfo))
2015-04-12 20:58:21 +02:00
{
2015-06-02 19:46:44 +02:00
var syncProgress = GetSyncedItemProgress(options);
2015-04-12 20:58:21 +02:00
2016-02-11 19:29:42 +01:00
foreach (var tuple in tuples)
2015-04-12 20:58:21 +02:00
{
2016-02-11 19:29:42 +01:00
var item = tuple.Item1;
2015-04-12 20:58:21 +02:00
2016-08-02 07:55:52 +02:00
FillSyncInfo(tuple.Item2, item, options, user, syncProgress);
2015-04-12 20:58:21 +02:00
}
}
}
2016-08-03 08:38:19 +02:00
private void FillSyncInfo(IHasSyncInfo dto, BaseItem item, DtoOptions options, User user, Dictionary<string, SyncedItemProgress> syncProgress)
2015-01-24 20:03:55 +01:00
{
2016-08-02 07:55:52 +02:00
var hasFullSyncInfo = options.Fields.Contains(ItemFields.SyncInfo);
2015-04-12 20:58:21 +02:00
2016-08-03 08:38:19 +02:00
if (!options.Fields.Contains(ItemFields.BasicSyncInfo) &&
!hasFullSyncInfo)
2015-01-24 20:03:55 +01:00
{
2016-08-03 08:38:19 +02:00
return;
2015-01-24 20:03:55 +01:00
}
if (dto.SupportsSync ?? false)
{
2016-08-03 08:38:19 +02:00
SyncedItemProgress syncStatus;
if (syncProgress.TryGetValue(dto.Id, out syncStatus))
2015-04-12 20:58:21 +02:00
{
2016-08-03 08:38:19 +02:00
if (syncStatus.Status == SyncJobItemStatus.Synced)
2016-08-02 07:55:52 +02:00
{
2016-08-03 08:38:19 +02:00
dto.SyncPercent = 100;
}
else
{
dto.SyncPercent = syncStatus.Progress;
2016-08-02 07:55:52 +02:00
}
2015-04-12 20:58:21 +02:00
2016-08-03 08:38:19 +02:00
if (hasFullSyncInfo)
2016-08-02 07:55:52 +02:00
{
2016-08-03 08:38:19 +02:00
dto.HasSyncJob = true;
dto.SyncStatus = syncStatus.Status;
2016-08-02 07:55:52 +02:00
}
2015-04-12 20:58:21 +02:00
}
2015-01-24 20:03:55 +01:00
}
}
2016-08-03 08:38:19 +02:00
private async Task<BaseItemDto> GetBaseItemDtoInternal(BaseItem item, DtoOptions options, User user = null, BaseItem owner = null)
2013-02-21 02:33:05 +01:00
{
2014-11-30 20:01:33 +01:00
var fields = options.Fields;
2013-02-21 02:33:05 +01:00
if (item == null)
{
throw new ArgumentNullException("item");
}
2013-05-15 18:56:38 +02:00
2013-02-21 02:33:05 +01:00
if (fields == null)
{
throw new ArgumentNullException("fields");
}
2014-10-24 06:54:35 +02:00
var dto = new BaseItemDto
{
ServerId = _appHost.SystemId
};
2013-02-21 02:33:05 +01:00
2016-03-19 20:32:37 +01:00
if (item.SourceType == SourceType.Channel)
{
dto.SourceType = item.SourceType.ToString();
}
2013-04-03 04:59:27 +02:00
if (fields.Contains(ItemFields.People))
{
AttachPeople(dto, item);
2013-04-03 04:59:27 +02:00
}
if (fields.Contains(ItemFields.PrimaryImageAspectRatio))
{
try
{
2016-01-16 06:01:57 +01:00
AttachPrimaryImageAspectRatio(dto, item);
2013-04-03 04:59:27 +02:00
}
catch (Exception ex)
{
// Have to use a catch-all unfortunately because some .net image methods throw plain Exceptions
_logger.ErrorException("Error generating PrimaryImageAspectRatio for {0}", ex, item.Name);
}
}
if (fields.Contains(ItemFields.DisplayPreferencesId))
{
dto.DisplayPreferencesId = item.DisplayPreferencesId.ToString("N");
}
2013-06-17 22:35:43 +02:00
if (user != null)
{
2016-08-17 21:28:43 +02:00
await AttachUserSpecificInfo(dto, item, user, options).ConfigureAwait(false);
2013-06-17 22:35:43 +02:00
}
var hasMediaSources = item as IHasMediaSources;
if (hasMediaSources != null)
{
if (fields.Contains(ItemFields.MediaSources))
{
if (user == null)
{
2015-03-31 18:24:16 +02:00
dto.MediaSources = _mediaSourceManager().GetStaticMediaSources(hasMediaSources, true).ToList();
}
else
{
2015-03-07 23:43:53 +01:00
dto.MediaSources = _mediaSourceManager().GetStaticMediaSources(hasMediaSources, true, user).ToList();
}
}
}
2015-04-04 04:16:42 +02:00
if (fields.Contains(ItemFields.Studios))
{
AttachStudios(dto, item);
}
2014-11-30 20:01:33 +01:00
AttachBasicFields(dto, item, owner, options);
2013-02-21 02:33:05 +01:00
2015-07-29 22:31:15 +02:00
var collectionFolder = item as ICollectionFolder;
if (collectionFolder != null)
{
2015-11-19 06:19:54 +01:00
dto.OriginalCollectionType = collectionFolder.CollectionType;
dto.CollectionType = collectionFolder.CollectionType;
2015-07-29 22:31:15 +02:00
}
2015-02-06 06:39:07 +01:00
if (fields.Contains(ItemFields.CanDelete))
{
dto.CanDelete = user == null
? item.CanDelete()
: item.CanDelete(user);
}
if (fields.Contains(ItemFields.CanDownload))
{
dto.CanDownload = user == null
? item.CanDownload()
: item.CanDownload(user);
}
2015-04-15 17:41:42 +02:00
if (fields.Contains(ItemFields.Etag))
{
dto.Etag = item.GetEtag(user);
}
2015-04-14 05:45:17 +02:00
2015-05-31 20:22:51 +02:00
if (item is ILiveTvRecording)
{
_livetvManager().AddInfoToRecordingDto(item, dto, user);
}
2013-02-21 02:33:05 +01:00
return dto;
}
2016-08-03 08:38:19 +02:00
public BaseItemDto GetItemByNameDto(BaseItem item, DtoOptions options, List<BaseItem> taggedItems, Dictionary<string, SyncedItemProgress> syncProgress, User user = null)
{
2016-08-03 08:38:19 +02:00
var dto = GetBaseItemDtoInternal(item, options, user).Result;
2014-06-28 21:35:30 +02:00
2016-06-17 15:06:13 +02:00
if (taggedItems != null && options.Fields.Contains(ItemFields.ItemCounts))
2015-03-26 05:44:24 +01:00
{
SetItemByNameInfo(item, dto, taggedItems, user);
}
2015-06-02 19:46:44 +02:00
FillSyncInfo(dto, item, options, user, syncProgress);
2014-06-28 21:35:30 +02:00
return dto;
}
2014-06-28 21:35:30 +02:00
private void SetItemByNameInfo(BaseItem item, BaseItemDto dto, List<BaseItem> taggedItems, User user = null)
{
2016-08-13 22:54:29 +02:00
if (item is MusicArtist)
{
dto.AlbumCount = taggedItems.Count(i => i is MusicAlbum);
dto.MusicVideoCount = taggedItems.Count(i => i is MusicVideo);
dto.SongCount = taggedItems.Count(i => i is Audio);
}
2016-08-13 22:54:29 +02:00
else if (item is MusicGenre)
{
dto.ArtistCount = taggedItems.Count(i => i is MusicArtist);
dto.AlbumCount = taggedItems.Count(i => i is MusicAlbum);
dto.MusicVideoCount = taggedItems.Count(i => i is MusicVideo);
dto.SongCount = taggedItems.Count(i => i is Audio);
}
else if (item is GameGenre)
{
dto.GameCount = taggedItems.Count(i => i is Game);
}
else
{
// This populates them all and covers Genre, Person, Studio, Year
2016-08-13 22:54:29 +02:00
dto.ArtistCount = taggedItems.Count(i => i is MusicArtist);
dto.AlbumCount = taggedItems.Count(i => i is MusicAlbum);
dto.EpisodeCount = taggedItems.Count(i => i is Episode);
dto.GameCount = taggedItems.Count(i => i is Game);
dto.MovieCount = taggedItems.Count(i => i is Movie);
2016-03-19 22:55:42 +01:00
dto.TrailerCount = taggedItems.Count(i => i is Trailer);
dto.MusicVideoCount = taggedItems.Count(i => i is MusicVideo);
dto.SeriesCount = taggedItems.Count(i => i is Series);
dto.ProgramCount = taggedItems.Count(i => i is LiveTvProgram);
dto.SongCount = taggedItems.Count(i => i is Audio);
}
2013-12-02 22:46:22 +01:00
dto.ChildCount = taggedItems.Count;
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Attaches the user specific info.
/// </summary>
2016-08-17 21:28:43 +02:00
private async Task AttachUserSpecificInfo(BaseItemDto dto, BaseItem item, User user, DtoOptions dtoOptions)
2013-02-21 02:33:05 +01:00
{
2016-08-17 21:28:43 +02:00
var fields = dtoOptions.Fields;
2013-02-21 02:33:05 +01:00
if (item.IsFolder)
{
var folder = (Folder)item;
2013-07-25 21:17:44 +02:00
2016-08-17 21:28:43 +02:00
if (dtoOptions.EnableUserData)
{
2016-12-13 08:36:30 +01:00
dto.UserData = await _userDataRepository.GetUserDataDto(item, dto, user, dtoOptions.Fields).ConfigureAwait(false);
2016-08-17 21:28:43 +02:00
}
2016-06-15 20:56:37 +02:00
2016-08-16 19:08:37 +02:00
if (!dto.ChildCount.HasValue && item.SourceType == SourceType.Library)
2016-06-15 20:56:37 +02:00
{
2016-12-13 08:36:30 +01:00
// For these types we can try to optimize and assume these values will be equal
if (item is MusicAlbum || item is Season)
{
dto.ChildCount = dto.RecursiveItemCount;
}
if (dtoOptions.Fields.Contains(ItemFields.ChildCount))
{
dto.ChildCount = dto.ChildCount ?? GetChildCount(folder, user);
}
2013-02-21 02:33:05 +01:00
}
2013-05-08 03:17:41 +02:00
2016-05-09 05:13:38 +02:00
if (fields.Contains(ItemFields.CumulativeRunTimeTicks))
{
2016-05-10 20:13:26 +02:00
dto.CumulativeRunTimeTicks = item.RunTimeTicks;
2016-05-09 05:13:38 +02:00
}
if (fields.Contains(ItemFields.DateLastMediaAdded))
{
dto.DateLastMediaAdded = folder.DateLastMediaAdded;
}
}
2013-05-08 03:17:41 +02:00
else
2013-07-16 19:18:32 +02:00
{
2016-08-17 21:28:43 +02:00
if (dtoOptions.EnableUserData)
{
2016-11-21 09:54:53 +01:00
dto.UserData = await _userDataRepository.GetUserDataDto(item, user).ConfigureAwait(false);
2016-08-17 21:28:43 +02:00
}
2013-05-08 03:17:41 +02:00
}
2014-02-21 06:35:56 +01:00
dto.PlayAccess = item.GetPlayAccess(user);
2014-12-27 06:08:39 +01:00
2016-08-03 08:38:19 +02:00
if (fields.Contains(ItemFields.BasicSyncInfo) || fields.Contains(ItemFields.SyncInfo))
{
var userCanSync = user != null && user.Policy.EnableSync;
2016-08-17 21:28:43 +02:00
if (userCanSync && _syncManager.SupportsSync(item))
{
dto.SupportsSync = true;
}
2016-08-03 08:38:19 +02:00
}
2014-12-27 06:08:39 +01:00
if (fields.Contains(ItemFields.SeasonUserData))
{
var episode = item as Episode;
if (episode != null)
{
var season = episode.Season;
if (season != null)
{
2016-06-19 08:18:29 +02:00
dto.SeasonUserData = await _userDataRepository.GetUserDataDto(season, user).ConfigureAwait(false);
2014-12-27 06:08:39 +01:00
}
}
}
var userView = item as UserView;
if (userView != null)
{
dto.HasDynamicCategories = userView.ContainsDynamicCategories(user);
}
var collectionFolder = item as ICollectionFolder;
if (collectionFolder != null)
{
dto.HasDynamicCategories = false;
}
2013-02-21 02:33:05 +01:00
}
private int GetChildCount(Folder folder, User user)
{
2016-06-18 19:26:42 +02:00
// Right now this is too slow to calculate for top level folders on a per-user basis
// Just return something so that apps that are expecting a value won't think the folders are empty
if (folder is ICollectionFolder || folder is UserView)
{
return new Random().Next(1, 10);
}
2016-06-16 15:24:12 +02:00
return folder.GetChildCount(user);
}
2013-09-04 19:02:19 +02:00
/// <summary>
/// Gets client-side Id of a server-side BaseItem
/// </summary>
/// <param name="item">The item.</param>
/// <returns>System.String.</returns>
/// <exception cref="System.ArgumentNullException">item</exception>
public string GetDtoId(BaseItem item)
{
if (item == null)
{
2013-09-04 19:02:19 +02:00
throw new ArgumentNullException("item");
}
2013-09-04 19:02:19 +02:00
return item.Id.ToString("N");
}
2013-02-21 02:33:05 +01:00
2013-09-04 19:02:19 +02:00
/// <summary>
/// Converts a UserItemData to a DTOUserItemData
/// </summary>
/// <param name="data">The data.</param>
/// <returns>DtoUserItemData.</returns>
/// <exception cref="System.ArgumentNullException"></exception>
public UserItemDataDto GetUserItemDataDto(UserItemData data)
{
if (data == null)
2013-02-21 02:33:05 +01:00
{
2013-09-04 19:02:19 +02:00
throw new ArgumentNullException("data");
2013-02-21 02:33:05 +01:00
}
2013-09-04 19:02:19 +02:00
return new UserItemDataDto
{
2013-09-04 19:02:19 +02:00
IsFavorite = data.IsFavorite,
Likes = data.Likes,
PlaybackPositionTicks = data.PlaybackPositionTicks,
PlayCount = data.PlayCount,
Rating = data.Rating,
Played = data.Played,
LastPlayedDate = data.LastPlayedDate,
Key = data.Key
2013-09-04 19:02:19 +02:00
};
}
private void SetBookProperties(BaseItemDto dto, Book item)
{
dto.SeriesName = item.SeriesName;
}
private void SetPhotoProperties(BaseItemDto dto, Photo item)
{
dto.Width = item.Width;
dto.Height = item.Height;
dto.CameraMake = item.CameraMake;
dto.CameraModel = item.CameraModel;
dto.Software = item.Software;
dto.ExposureTime = item.ExposureTime;
dto.FocalLength = item.FocalLength;
dto.ImageOrientation = item.Orientation;
dto.Aperture = item.Aperture;
dto.ShutterSpeed = item.ShutterSpeed;
2014-08-30 16:26:29 +02:00
dto.Latitude = item.Latitude;
dto.Longitude = item.Longitude;
dto.Altitude = item.Altitude;
dto.IsoSpeedRating = item.IsoSpeedRating;
2014-10-12 17:18:26 +02:00
2016-10-11 08:46:59 +02:00
var album = item.AlbumEntity;
2014-08-30 16:26:29 +02:00
if (album != null)
{
2014-09-03 04:30:24 +02:00
dto.Album = album.Name;
dto.AlbumId = album.Id.ToString("N");
2014-08-30 16:26:29 +02:00
}
}
2013-02-21 02:33:05 +01:00
2013-09-04 19:02:19 +02:00
private void SetMusicVideoProperties(BaseItemDto dto, MusicVideo item)
{
if (!string.IsNullOrEmpty(item.Album))
{
2016-05-11 16:36:28 +02:00
var parentAlbum = _libraryManager.GetItemList(new InternalItemsQuery
{
IncludeItemTypes = new[] { typeof(MusicAlbum).Name },
Name = item.Album
}).FirstOrDefault();
2013-09-04 19:02:19 +02:00
if (parentAlbum != null)
{
2013-09-04 19:02:19 +02:00
dto.AlbumId = GetDtoId(parentAlbum);
}
2013-02-21 02:33:05 +01:00
}
2013-09-04 19:02:19 +02:00
dto.Album = item.Album;
}
2013-02-21 02:33:05 +01:00
2013-09-04 19:02:19 +02:00
private void SetGameProperties(BaseItemDto dto, Game item)
{
dto.Players = item.PlayersSupported;
dto.GameSystem = item.GameSystem;
2014-04-27 05:42:05 +02:00
dto.MultiPartGameFiles = item.MultiPartGameFiles;
2013-09-04 19:02:19 +02:00
}
2013-02-21 02:33:05 +01:00
2013-10-27 22:40:42 +01:00
private void SetGameSystemProperties(BaseItemDto dto, GameSystem item)
{
dto.GameSystem = item.GameSystemName;
}
2016-07-05 07:40:18 +02:00
private List<string> GetImageTags(BaseItem item, List<ItemImageInfo> images)
2013-09-04 19:02:19 +02:00
{
2016-07-05 07:40:18 +02:00
return images
.Select(p => GetImageCacheTag(item, p))
.Where(i => i != null)
.ToList();
2014-02-07 21:30:41 +01:00
}
2014-05-08 22:09:53 +02:00
private string GetImageCacheTag(BaseItem item, ImageType type)
2014-02-07 21:30:41 +01:00
{
try
{
return _imageProcessor.GetImageCacheTag(item, type);
}
2014-04-13 19:27:13 +02:00
catch (Exception ex)
2014-02-07 21:30:41 +01:00
{
_logger.ErrorException("Error getting {0} image info", ex, type);
return null;
}
}
2014-05-08 22:09:53 +02:00
private string GetImageCacheTag(BaseItem item, ItemImageInfo image)
2013-09-04 19:02:19 +02:00
{
try
2013-02-21 02:33:05 +01:00
{
2014-02-07 21:30:41 +01:00
return _imageProcessor.GetImageCacheTag(item, image);
}
2014-04-13 19:27:13 +02:00
catch (Exception ex)
2013-02-21 02:33:05 +01:00
{
2014-02-07 21:30:41 +01:00
_logger.ErrorException("Error getting {0} image info for {1}", ex, image.Type, image.Path);
2013-09-04 19:02:19 +02:00
return null;
2013-02-21 02:33:05 +01:00
}
}
/// <summary>
2013-09-04 19:02:19 +02:00
/// Attaches People DTO's to a DTOBaseItem
/// </summary>
/// <param name="dto">The dto.</param>
/// <param name="item">The item.</param>
/// <returns>Task.</returns>
private void AttachPeople(BaseItemDto dto, BaseItem item)
2013-09-04 19:02:19 +02:00
{
// Ordering by person type to ensure actors and artists are at the front.
// This is taking advantage of the fact that they both begin with A
// This should be improved in the future
2015-06-21 05:35:22 +02:00
var people = _libraryManager.GetPeople(item).OrderBy(i => i.SortOrder ?? int.MaxValue)
2014-06-30 15:28:38 +02:00
.ThenBy(i =>
{
if (i.IsType(PersonType.Actor))
{
return 0;
}
if (i.IsType(PersonType.GuestStar))
{
return 1;
}
if (i.IsType(PersonType.Director))
{
return 2;
}
if (i.IsType(PersonType.Writer))
{
return 3;
}
if (i.IsType(PersonType.Producer))
{
return 4;
}
if (i.IsType(PersonType.Composer))
{
return 4;
}
return 10;
})
.ToList();
2013-02-21 02:33:05 +01:00
2014-11-21 15:28:30 +01:00
var list = new List<BaseItemPerson>();
2013-02-21 02:33:05 +01:00
var dictionary = people.Select(p => p.Name)
2013-09-04 19:02:19 +02:00
.Distinct(StringComparer.OrdinalIgnoreCase).Select(c =>
{
try
{
return _libraryManager.GetPerson(c);
}
2014-08-25 05:54:45 +02:00
catch (Exception ex)
2013-09-04 19:02:19 +02:00
{
_logger.ErrorException("Error getting person {0}", ex, c);
return null;
}
}).Where(i => i != null)
2015-07-01 17:47:41 +02:00
.DistinctBy(i => i.Name, StringComparer.OrdinalIgnoreCase)
2013-09-04 19:02:19 +02:00
.ToDictionary(i => i.Name, StringComparer.OrdinalIgnoreCase);
for (var i = 0; i < people.Count; i++)
2013-02-21 02:33:05 +01:00
{
2013-09-04 19:02:19 +02:00
var person = people[i];
2013-02-21 02:33:05 +01:00
2013-09-04 19:02:19 +02:00
var baseItemPerson = new BaseItemPerson
2013-02-21 02:33:05 +01:00
{
2013-09-04 19:02:19 +02:00
Name = person.Name,
Role = person.Role,
Type = person.Type
};
2013-02-21 02:33:05 +01:00
2013-09-04 19:02:19 +02:00
Person entity;
if (dictionary.TryGetValue(person.Name, out entity))
{
2014-02-07 21:30:41 +01:00
baseItemPerson.PrimaryImageTag = GetImageCacheTag(entity, ImageType.Primary);
2014-05-12 00:38:10 +02:00
baseItemPerson.Id = entity.Id.ToString("N");
2014-11-21 15:28:30 +01:00
list.Add(baseItemPerson);
2013-02-21 02:33:05 +01:00
}
}
2014-11-21 15:28:30 +01:00
dto.People = list.ToArray();
2013-09-04 19:02:19 +02:00
}
2013-02-21 02:33:05 +01:00
2013-09-04 19:02:19 +02:00
/// <summary>
/// Attaches the studios.
/// </summary>
/// <param name="dto">The dto.</param>
/// <param name="item">The item.</param>
/// <returns>Task.</returns>
private void AttachStudios(BaseItemDto dto, BaseItem item)
2013-09-04 19:02:19 +02:00
{
var studios = item.Studios.ToList();
dto.Studios = new StudioDto[studios.Count];
var dictionary = studios.Distinct(StringComparer.OrdinalIgnoreCase).Select(name =>
{
try
{
return _libraryManager.GetStudio(name);
}
catch (IOException ex)
{
_logger.ErrorException("Error getting studio {0}", ex, name);
return null;
}
})
.Where(i => i != null)
2015-07-02 07:08:05 +02:00
.DistinctBy(i => i.Name, StringComparer.OrdinalIgnoreCase)
.ToDictionary(i => i.Name, StringComparer.OrdinalIgnoreCase);
2013-09-04 19:02:19 +02:00
for (var i = 0; i < studios.Count; i++)
2013-07-08 21:31:45 +02:00
{
2013-09-04 19:02:19 +02:00
var studio = studios[i];
2013-07-08 21:31:45 +02:00
2013-09-04 19:02:19 +02:00
var studioDto = new StudioDto
2013-07-08 21:31:45 +02:00
{
2013-09-04 19:02:19 +02:00
Name = studio
};
2013-07-08 21:31:45 +02:00
2013-09-04 19:02:19 +02:00
Studio entity;
if (dictionary.TryGetValue(studio, out entity))
{
2014-07-01 23:13:32 +02:00
studioDto.Id = entity.Id.ToString("N");
2014-02-07 21:30:41 +01:00
studioDto.PrimaryImageTag = GetImageCacheTag(entity, ImageType.Primary);
2013-07-08 21:31:45 +02:00
}
2013-09-04 19:02:19 +02:00
dto.Studios[i] = studioDto;
2013-02-21 02:33:05 +01:00
}
2013-09-04 19:02:19 +02:00
}
2013-02-21 02:33:05 +01:00
2013-09-04 19:02:19 +02:00
/// <summary>
/// Gets the chapter info dto.
/// </summary>
/// <param name="chapterInfo">The chapter info.</param>
/// <param name="item">The item.</param>
/// <returns>ChapterInfoDto.</returns>
2014-10-12 17:18:26 +02:00
private ChapterInfoDto GetChapterInfoDto(ChapterInfo chapterInfo, BaseItem item)
2013-09-04 19:02:19 +02:00
{
var dto = new ChapterInfoDto
{
2013-09-04 19:02:19 +02:00
Name = chapterInfo.Name,
StartPositionTicks = chapterInfo.StartPositionTicks
};
2013-09-04 19:02:19 +02:00
if (!string.IsNullOrEmpty(chapterInfo.ImagePath))
2013-02-21 02:33:05 +01:00
{
2014-02-07 21:30:41 +01:00
dto.ImageTag = GetImageCacheTag(item, new ItemImageInfo
{
Path = chapterInfo.ImagePath,
Type = ImageType.Chapter,
2016-07-06 19:44:44 +02:00
DateModified = chapterInfo.ImageDateModified
2014-02-07 21:30:41 +01:00
});
2013-02-21 02:33:05 +01:00
}
2013-09-04 19:02:19 +02:00
return dto;
}
2014-10-12 17:18:26 +02:00
public List<ChapterInfoDto> GetChapterInfoDtos(BaseItem item)
{
return _itemRepo.GetChapters(item.Id)
.Select(c => GetChapterInfoDto(c, item))
.ToList();
}
2013-09-04 19:02:19 +02:00
/// <summary>
/// Sets simple property values on a DTOBaseItem
/// </summary>
/// <param name="dto">The dto.</param>
/// <param name="item">The item.</param>
/// <param name="owner">The owner.</param>
2014-11-30 20:01:33 +01:00
/// <param name="options">The options.</param>
private void AttachBasicFields(BaseItemDto dto, BaseItem item, BaseItem owner, DtoOptions options)
2013-09-04 19:02:19 +02:00
{
2014-11-30 20:01:33 +01:00
var fields = options.Fields;
2013-09-04 19:02:19 +02:00
if (fields.Contains(ItemFields.DateCreated))
2013-05-24 06:02:42 +02:00
{
2013-09-04 19:02:19 +02:00
dto.DateCreated = item.DateCreated;
2013-05-24 06:02:42 +02:00
}
2014-03-21 17:55:47 +01:00
if (fields.Contains(ItemFields.DisplayMediaType))
{
dto.DisplayMediaType = item.DisplayMediaType;
}
2014-12-21 06:57:06 +01:00
if (fields.Contains(ItemFields.Settings))
2013-09-04 19:02:19 +02:00
{
dto.LockedFields = item.LockedFields;
2014-03-22 17:16:43 +01:00
dto.LockData = item.IsLocked;
2014-03-24 18:54:45 +01:00
dto.ForcedSortName = item.ForcedSortName;
2013-07-16 18:03:28 +02:00
}
2016-07-17 18:59:50 +02:00
dto.Container = item.Container;
2013-02-21 02:33:05 +01:00
2013-12-02 17:16:03 +01:00
var hasBudget = item as IHasBudget;
if (hasBudget != null)
2013-07-16 18:03:28 +02:00
{
2013-12-02 17:16:03 +01:00
if (fields.Contains(ItemFields.Budget))
{
dto.Budget = hasBudget.Budget;
}
2013-02-21 02:33:05 +01:00
2013-12-02 17:16:03 +01:00
if (fields.Contains(ItemFields.Revenue))
{
dto.Revenue = hasBudget.Revenue;
}
2013-02-21 02:33:05 +01:00
}
2013-04-25 00:34:38 +02:00
2013-09-04 19:02:19 +02:00
dto.EndDate = item.EndDate;
2013-04-25 00:34:38 +02:00
2013-09-04 19:02:19 +02:00
if (fields.Contains(ItemFields.HomePageUrl))
2013-04-25 00:34:38 +02:00
{
2013-09-04 19:02:19 +02:00
dto.HomePageUrl = item.HomePageUrl;
2013-04-25 00:34:38 +02:00
}
2013-07-12 21:56:40 +02:00
2014-02-21 19:48:15 +01:00
if (fields.Contains(ItemFields.ExternalUrls))
{
dto.ExternalUrls = _providerManager.GetExternalUrls(item).ToArray();
}
2013-09-04 19:02:19 +02:00
if (fields.Contains(ItemFields.Tags))
{
2016-06-02 19:43:29 +02:00
dto.Tags = item.Tags;
2013-09-04 19:02:19 +02:00
}
2013-07-12 21:56:40 +02:00
2014-01-14 16:50:39 +01:00
if (fields.Contains(ItemFields.Keywords))
{
dto.Keywords = item.Keywords;
2014-01-14 16:50:39 +01:00
}
var hasAspectRatio = item as IHasAspectRatio;
if (hasAspectRatio != null)
{
dto.AspectRatio = hasAspectRatio.AspectRatio;
}
2013-08-31 01:55:17 +02:00
2014-12-20 19:56:32 +01:00
if (fields.Contains(ItemFields.Metascore))
2014-01-15 06:01:58 +01:00
{
2014-11-30 20:01:33 +01:00
var hasMetascore = item as IHasMetascore;
if (hasMetascore != null)
{
dto.Metascore = hasMetascore.Metascore;
}
2014-01-15 06:01:58 +01:00
}
if (fields.Contains(ItemFields.AwardSummary))
{
var hasAwards = item as IHasAwards;
if (hasAwards != null)
{
dto.AwardSummary = hasAwards.AwardSummary;
}
}
2014-11-30 20:01:33 +01:00
var backdropLimit = options.GetImageLimit(ImageType.Backdrop);
if (backdropLimit > 0)
{
2016-07-05 07:40:18 +02:00
dto.BackdropImageTags = GetImageTags(item, item.GetImages(ImageType.Backdrop).Take(backdropLimit).ToList());
2014-11-30 20:01:33 +01:00
}
2013-09-18 04:43:34 +02:00
if (fields.Contains(ItemFields.ScreenshotImageTags))
{
2014-11-30 20:01:33 +01:00
var screenshotLimit = options.GetImageLimit(ImageType.Screenshot);
if (screenshotLimit > 0)
{
2016-07-05 08:05:43 +02:00
dto.ScreenshotImageTags = GetImageTags(item, item.GetImages(ImageType.Screenshot).Take(screenshotLimit).ToList());
2014-11-30 20:01:33 +01:00
}
2013-09-18 04:43:34 +02:00
}
2013-09-04 19:02:19 +02:00
if (fields.Contains(ItemFields.Genres))
2013-08-31 01:55:17 +02:00
{
2013-09-04 19:02:19 +02:00
dto.Genres = item.Genres;
2013-08-31 01:55:17 +02:00
}
2013-07-12 21:56:40 +02:00
2016-08-18 07:56:10 +02:00
if (options.EnableImages)
{
2016-08-18 07:56:10 +02:00
dto.ImageTags = new Dictionary<ImageType, string>();
2014-11-30 20:01:33 +01:00
2016-08-18 07:56:10 +02:00
// Prevent implicitly captured closure
var currentItem = item;
foreach (var image in currentItem.ImageInfos.Where(i => !currentItem.AllowsMultipleImages(i.Type))
.ToList())
{
if (options.GetImageLimit(image.Type) > 0)
2014-11-30 20:01:33 +01:00
{
2016-08-18 07:56:10 +02:00
var tag = GetImageCacheTag(item, image);
if (tag != null)
{
dto.ImageTags[image.Type] = tag;
}
2014-11-30 20:01:33 +01:00
}
}
}
2013-09-04 19:02:19 +02:00
dto.Id = GetDtoId(item);
dto.IndexNumber = item.IndexNumber;
2016-07-05 07:40:18 +02:00
dto.ParentIndexNumber = item.ParentIndexNumber;
2016-08-17 21:28:43 +02:00
if (item.IsFolder)
{
dto.IsFolder = true;
}
else if (item is IHasMediaSources)
{
dto.IsFolder = false;
}
2013-09-04 19:02:19 +02:00
dto.MediaType = item.MediaType;
dto.LocationType = item.LocationType;
2015-10-28 20:40:38 +01:00
if (item.IsHD.HasValue && item.IsHD.Value)
{
dto.IsHD = item.IsHD;
}
dto.Audio = item.Audio;
2013-09-11 19:54:59 +02:00
2016-10-08 07:57:38 +02:00
if (fields.Contains(ItemFields.Settings))
{
dto.PreferredMetadataCountryCode = item.PreferredMetadataCountryCode;
dto.PreferredMetadataLanguage = item.PreferredMetadataLanguage;
}
2016-07-04 22:11:30 +02:00
dto.CriticRating = item.CriticRating;
2013-11-06 17:06:16 +01:00
2016-07-04 22:11:30 +02:00
if (fields.Contains(ItemFields.CriticRatingSummary))
{
dto.CriticRatingSummary = item.CriticRatingSummary;
2013-09-04 19:02:19 +02:00
}
2013-02-21 02:33:05 +01:00
2013-12-02 17:46:25 +01:00
var hasTrailers = item as IHasTrailers;
if (hasTrailers != null)
{
2014-12-11 07:20:28 +01:00
dto.LocalTrailerCount = hasTrailers.GetTrailerIds().Count;
2013-12-02 17:46:25 +01:00
}
2013-02-21 02:33:05 +01:00
var hasDisplayOrder = item as IHasDisplayOrder;
if (hasDisplayOrder != null)
{
dto.DisplayOrder = hasDisplayOrder.DisplayOrder;
}
2014-06-05 04:32:40 +02:00
var userView = item as UserView;
if (userView != null)
{
dto.CollectionType = userView.ViewType;
}
2013-12-02 17:46:25 +01:00
if (fields.Contains(ItemFields.RemoteTrailers))
2013-02-21 02:33:05 +01:00
{
2013-12-02 17:46:25 +01:00
dto.RemoteTrailers = hasTrailers != null ?
hasTrailers.RemoteTrailers :
new List<MediaUrl>();
2013-09-04 19:02:19 +02:00
}
2013-02-21 02:33:05 +01:00
2013-09-04 19:02:19 +02:00
dto.Name = item.Name;
dto.OfficialRating = item.OfficialRating;
2013-03-09 06:15:51 +01:00
2014-05-27 16:30:21 +02:00
if (fields.Contains(ItemFields.Overview))
2013-09-04 19:02:19 +02:00
{
dto.Overview = item.Overview;
2013-02-21 02:33:05 +01:00
}
2016-04-20 07:21:40 +02:00
if (fields.Contains(ItemFields.OriginalTitle))
{
dto.OriginalTitle = item.OriginalTitle;
}
2014-06-24 06:18:02 +02:00
if (fields.Contains(ItemFields.ShortOverview))
{
2016-07-04 22:11:30 +02:00
dto.ShortOverview = item.ShortOverview;
2014-06-24 06:18:02 +02:00
}
2014-10-24 06:54:35 +02:00
if (fields.Contains(ItemFields.ParentId))
2013-07-25 21:17:44 +02:00
{
2016-04-09 06:16:53 +02:00
var displayParentId = item.DisplayParentId;
if (displayParentId.HasValue)
2014-10-24 06:54:35 +02:00
{
2016-04-09 06:16:53 +02:00
dto.ParentId = displayParentId.Value.ToString("N");
2014-10-24 06:54:35 +02:00
}
2013-07-25 21:17:44 +02:00
}
2013-02-21 02:33:05 +01:00
2016-07-05 07:40:18 +02:00
AddInheritedImages(dto, item, options, owner);
2013-10-24 19:49:24 +02:00
2013-09-04 19:02:19 +02:00
if (fields.Contains(ItemFields.Path))
{
2014-06-02 21:32:41 +02:00
dto.Path = GetMappedPath(item);
2013-02-21 02:33:05 +01:00
}
2013-09-04 19:02:19 +02:00
dto.PremiereDate = item.PremiereDate;
dto.ProductionYear = item.ProductionYear;
2013-05-04 05:13:28 +02:00
2013-09-04 19:02:19 +02:00
if (fields.Contains(ItemFields.ProviderIds))
{
dto.ProviderIds = item.ProviderIds;
}
2013-05-04 05:13:28 +02:00
2013-09-04 19:02:19 +02:00
dto.RunTimeTicks = item.RunTimeTicks;
2013-05-04 05:13:28 +02:00
2013-09-04 19:02:19 +02:00
if (fields.Contains(ItemFields.SortName))
{
dto.SortName = item.SortName;
}
2013-05-04 05:13:28 +02:00
2013-09-04 19:02:19 +02:00
if (fields.Contains(ItemFields.CustomRating))
{
dto.CustomRating = item.CustomRating;
}
2013-05-04 05:13:28 +02:00
2013-09-04 19:02:19 +02:00
if (fields.Contains(ItemFields.Taglines))
{
2016-10-08 07:57:38 +02:00
if (!string.IsNullOrWhiteSpace(item.Tagline))
{
2016-10-08 07:57:38 +02:00
dto.Taglines = new List<string> { item.Tagline };
}
if (dto.Taglines == null)
{
dto.Taglines = new List<string>();
}
2013-09-04 19:02:19 +02:00
}
2013-05-04 05:13:28 +02:00
2013-11-21 21:48:26 +01:00
dto.Type = item.GetClientTypeName();
2013-09-04 19:02:19 +02:00
dto.CommunityRating = item.CommunityRating;
2014-11-30 20:01:33 +01:00
if (fields.Contains(ItemFields.VoteCount))
{
dto.VoteCount = item.VoteCount;
}
2013-05-04 05:13:28 +02:00
2015-11-11 15:56:31 +01:00
//if (item.IsFolder)
//{
// var folder = (Folder)item;
2013-05-04 05:13:28 +02:00
2015-11-11 15:56:31 +01:00
// if (fields.Contains(ItemFields.IndexOptions))
// {
// dto.IndexOptions = folder.IndexByOptionStrings.ToArray();
// }
//}
2013-02-21 02:33:05 +01:00
var supportsPlaceHolders = item as ISupportsPlaceHolders;
if (supportsPlaceHolders != null)
{
dto.IsPlaceHolder = supportsPlaceHolders.IsPlaceHolder;
}
2014-03-22 17:16:43 +01:00
2013-09-04 19:02:19 +02:00
// Add audio info
var audio = item as Audio;
if (audio != null)
2013-02-21 02:33:05 +01:00
{
2013-09-04 19:02:19 +02:00
dto.Album = audio.Album;
2016-03-19 05:22:33 +01:00
dto.ExtraType = audio.ExtraType;
2013-02-21 02:33:05 +01:00
2015-05-04 16:35:38 +02:00
var albumParent = audio.AlbumEntity;
2013-02-21 02:33:05 +01:00
2013-09-04 19:02:19 +02:00
if (albumParent != null)
{
dto.AlbumId = GetDtoId(albumParent);
2013-02-21 02:33:05 +01:00
2014-02-07 21:30:41 +01:00
dto.AlbumPrimaryImageTag = GetImageCacheTag(albumParent, ImageType.Primary);
2013-02-21 02:33:05 +01:00
}
2014-03-21 04:31:40 +01:00
2014-12-01 13:43:34 +01:00
//if (fields.Contains(ItemFields.MediaSourceCount))
//{
2015-01-24 20:03:55 +01:00
// Songs always have one
2014-12-01 13:43:34 +01:00
//}
2013-02-21 02:33:05 +01:00
}
2015-03-13 18:25:28 +01:00
var hasArtist = item as IHasArtist;
if (hasArtist != null)
{
dto.Artists = hasArtist.Artists;
2016-12-13 08:36:30 +01:00
//var artistItems = _libraryManager.GetArtists(new InternalItemsQuery
//{
// EnableTotalRecordCount = false,
// ItemIds = new[] { item.Id.ToString("N") }
//});
//dto.ArtistItems = artistItems.Items
// .Select(i =>
// {
// var artist = i.Item1;
// return new NameIdPair
// {
// Name = artist.Name,
// Id = artist.Id.ToString("N")
// };
// })
// .ToList();
2016-09-06 07:02:05 +02:00
// Include artists that are not in the database yet, e.g., just added via metadata editor
2016-12-13 08:36:30 +01:00
//var foundArtists = artistItems.Items.Select(i => i.Item1.Name).ToList();
dto.ArtistItems = new List<NameIdPair>();
2016-09-06 07:02:05 +02:00
dto.ArtistItems.AddRange(hasArtist.Artists
2016-12-13 08:36:30 +01:00
//.Except(foundArtists, new DistinctNameComparer())
2016-09-06 07:02:05 +02:00
.Select(i =>
{
2016-10-06 20:55:01 +02:00
// This should not be necessary but we're seeing some cases of it
if (string.IsNullOrWhiteSpace(i))
{
return null;
}
2016-09-06 07:02:05 +02:00
var artist = _libraryManager.GetArtist(i);
if (artist != null)
{
return new NameIdPair
{
Name = artist.Name,
Id = artist.Id.ToString("N")
};
}
return null;
}).Where(i => i != null));
2015-03-13 18:25:28 +01:00
}
2015-03-13 18:25:28 +01:00
var hasAlbumArtist = item as IHasAlbumArtist;
if (hasAlbumArtist != null)
{
2014-06-23 18:05:19 +02:00
dto.AlbumArtist = hasAlbumArtist.AlbumArtists.FirstOrDefault();
2015-03-13 16:54:20 +01:00
2016-12-13 08:36:30 +01:00
//var artistItems = _libraryManager.GetAlbumArtists(new InternalItemsQuery
//{
// EnableTotalRecordCount = false,
// ItemIds = new[] { item.Id.ToString("N") }
//});
//dto.AlbumArtists = artistItems.Items
// .Select(i =>
// {
// var artist = i.Item1;
// return new NameIdPair
// {
// Name = artist.Name,
// Id = artist.Id.ToString("N")
// };
// })
// .ToList();
dto.AlbumArtists = new List<NameIdPair>();
dto.AlbumArtists.AddRange(hasAlbumArtist.AlbumArtists
//.Except(foundArtists, new DistinctNameComparer())
2015-03-13 16:54:20 +01:00
.Select(i =>
{
2016-12-13 08:36:30 +01:00
// This should not be necessary but we're seeing some cases of it
if (string.IsNullOrWhiteSpace(i))
2015-03-13 16:54:20 +01:00
{
2016-12-13 08:36:30 +01:00
return null;
}
var artist = _libraryManager.GetArtist(i);
if (artist != null)
{
return new NameIdPair
{
Name = artist.Name,
Id = artist.Id.ToString("N")
};
}
return null;
}).Where(i => i != null));
}
2013-09-04 19:02:19 +02:00
// Add video info
var video = item as Video;
if (video != null)
2013-02-21 02:33:05 +01:00
{
2013-09-04 19:02:19 +02:00
dto.VideoType = video.VideoType;
dto.Video3DFormat = video.Video3DFormat;
dto.IsoType = video.IsoType;
2013-02-21 02:33:05 +01:00
2015-10-24 17:33:22 +02:00
if (video.HasSubtitles)
{
dto.HasSubtitles = video.HasSubtitles;
}
2014-12-03 04:13:03 +01:00
if (video.AdditionalParts.Count != 0)
2014-11-30 20:01:33 +01:00
{
2014-12-03 04:13:03 +01:00
dto.PartCount = video.AdditionalParts.Count + 1;
2014-11-30 20:01:33 +01:00
}
if (fields.Contains(ItemFields.MediaSourceCount))
{
2016-05-01 22:56:06 +02:00
var mediaSourceCount = video.MediaSourceCount;
if (mediaSourceCount != 1)
2014-12-01 13:43:34 +01:00
{
2016-05-01 22:56:06 +02:00
dto.MediaSourceCount = mediaSourceCount;
2014-12-01 13:43:34 +01:00
}
2014-11-30 20:01:33 +01:00
}
2014-03-21 04:31:40 +01:00
if (fields.Contains(ItemFields.Chapters))
2014-03-20 16:55:22 +01:00
{
2014-10-12 17:18:26 +02:00
dto.Chapters = GetChapterInfoDtos(item);
2014-03-20 16:55:22 +01:00
}
2016-03-19 05:22:33 +01:00
dto.ExtraType = video.ExtraType;
2013-02-21 02:33:05 +01:00
}
2013-09-04 19:02:19 +02:00
if (fields.Contains(ItemFields.MediaStreams))
2013-02-21 02:33:05 +01:00
{
2013-09-04 19:02:19 +02:00
// Add VideoInfo
2014-06-11 21:31:33 +02:00
var iHasMediaSources = item as IHasMediaSources;
2013-02-21 02:33:05 +01:00
2014-06-11 21:31:33 +02:00
if (iHasMediaSources != null)
2013-09-04 19:02:19 +02:00
{
2014-03-21 04:31:40 +01:00
List<MediaStream> mediaStreams;
2014-03-22 17:16:43 +01:00
if (dto.MediaSources != null && dto.MediaSources.Count > 0)
2013-12-06 04:39:44 +01:00
{
2014-03-22 17:31:21 +01:00
mediaStreams = dto.MediaSources.Where(i => new Guid(i.Id) == item.Id)
2014-03-21 04:31:40 +01:00
.SelectMany(i => i.MediaStreams)
.ToList();
}
else
{
2015-03-31 18:24:16 +02:00
mediaStreams = _mediaSourceManager().GetStaticMediaSources(iHasMediaSources, true).First().MediaStreams;
2014-03-21 04:31:40 +01:00
}
2013-12-06 04:39:44 +01:00
2014-03-21 04:31:40 +01:00
dto.MediaStreams = mediaStreams;
2013-09-04 19:02:19 +02:00
}
}
var hasSpecialFeatures = item as IHasSpecialFeatures;
if (hasSpecialFeatures != null)
{
var specialFeatureCount = hasSpecialFeatures.SpecialFeatureIds.Count;
if (specialFeatureCount > 0)
{
dto.SpecialFeatureCount = specialFeatureCount;
}
2013-02-21 02:33:05 +01:00
}
2013-09-04 19:02:19 +02:00
// Add EpisodeInfo
var episode = item as Episode;
if (episode != null)
2013-02-21 02:33:05 +01:00
{
2013-09-04 19:02:19 +02:00
dto.IndexNumberEnd = episode.IndexNumberEnd;
2016-05-23 00:37:50 +02:00
dto.SeriesName = episode.SeriesName;
2014-12-01 13:43:34 +01:00
if (fields.Contains(ItemFields.AlternateEpisodeNumbers))
{
dto.DvdSeasonNumber = episode.DvdSeasonNumber;
dto.DvdEpisodeNumber = episode.DvdEpisodeNumber;
dto.AbsoluteEpisodeNumber = episode.AbsoluteEpisodeNumber;
}
2015-01-12 06:07:19 +01:00
if (fields.Contains(ItemFields.SpecialEpisodeNumbers))
2014-12-19 05:20:07 +01:00
{
dto.AirsAfterSeasonNumber = episode.AirsAfterSeasonNumber;
dto.AirsBeforeEpisodeNumber = episode.AirsBeforeEpisodeNumber;
dto.AirsBeforeSeasonNumber = episode.AirsBeforeSeasonNumber;
}
2016-05-23 00:37:50 +02:00
var seasonId = episode.SeasonId;
if (seasonId.HasValue)
{
dto.SeasonId = seasonId.Value.ToString("N");
}
2016-07-04 22:11:30 +02:00
dto.SeasonName = episode.SeasonName;
2014-12-13 04:56:30 +01:00
2016-07-05 08:01:31 +02:00
var seriesId = episode.SeriesId;
if (seriesId.HasValue)
{
dto.SeriesId = seriesId.Value.ToString("N");
}
2016-07-05 07:40:18 +02:00
Series episodeSeries = null;
2016-05-23 00:37:50 +02:00
2016-07-05 07:40:18 +02:00
if (fields.Contains(ItemFields.SeriesGenres))
2014-12-13 04:56:30 +01:00
{
2016-07-05 07:40:18 +02:00
episodeSeries = episodeSeries ?? episode.Series;
if (episodeSeries != null)
2014-12-13 04:56:30 +01:00
{
2016-05-23 00:37:50 +02:00
dto.SeriesGenres = episodeSeries.Genres.ToList();
2014-12-13 04:56:30 +01:00
}
2016-07-05 07:40:18 +02:00
}
2016-07-14 05:36:23 +02:00
//if (fields.Contains(ItemFields.SeriesPrimaryImage))
2016-07-05 07:40:18 +02:00
{
episodeSeries = episodeSeries ?? episode.Series;
if (episodeSeries != null)
2014-12-01 13:43:34 +01:00
{
2016-05-23 00:37:50 +02:00
dto.SeriesPrimaryImageTag = GetImageCacheTag(episodeSeries, ImageType.Primary);
2014-12-01 13:43:34 +01:00
}
2016-07-05 07:40:18 +02:00
}
2014-12-01 13:43:34 +01:00
2016-07-05 07:40:18 +02:00
if (fields.Contains(ItemFields.SeriesStudio))
{
episodeSeries = episodeSeries ?? episode.Series;
if (episodeSeries != null)
2014-12-01 13:43:34 +01:00
{
2016-05-23 00:37:50 +02:00
dto.SeriesStudio = episodeSeries.Studios.FirstOrDefault();
2016-12-08 06:58:38 +01:00
if (!string.IsNullOrWhiteSpace(dto.SeriesStudio))
{
try
{
var studio = _libraryManager.GetStudio(dto.SeriesStudio);
if (studio != null)
{
dto.SeriesStudioInfo = new StudioDto
{
Name = dto.SeriesStudio,
Id = studio.Id.ToString("N"),
PrimaryImageTag = GetImageCacheTag(studio, ImageType.Primary)
};
}
}
catch (Exception ex)
{
}
}
2014-12-01 13:43:34 +01:00
}
}
}
2013-02-21 02:33:05 +01:00
2016-05-23 00:37:50 +02:00
// Add SeriesInfo
var series = item as Series;
if (series != null)
{
dto.AirDays = series.AirDays;
dto.AirTime = series.AirTime;
dto.SeriesStatus = series.Status;
dto.AnimeSeriesIndex = series.AnimeSeriesIndex;
}
2013-09-04 19:02:19 +02:00
// Add SeasonInfo
var season = item as Season;
if (season != null)
2013-02-21 02:33:05 +01:00
{
2016-07-04 22:11:30 +02:00
dto.SeriesName = season.SeriesName;
2016-07-05 08:01:31 +02:00
var seriesId = season.SeriesId;
if (seriesId.HasValue)
{
2016-07-05 08:01:31 +02:00
dto.SeriesId = seriesId.Value.ToString("N");
}
series = null;
2016-07-04 22:11:30 +02:00
2016-07-05 08:01:31 +02:00
if (fields.Contains(ItemFields.SeriesStudio))
{
series = series ?? season.Series;
if (series != null)
2016-07-04 22:11:30 +02:00
{
dto.SeriesStudio = series.Studios.FirstOrDefault();
}
2016-07-05 08:01:31 +02:00
}
2013-11-09 19:44:09 +01:00
2016-07-05 08:01:31 +02:00
if (fields.Contains(ItemFields.SeriesPrimaryImage))
{
series = series ?? season.Series;
if (series != null)
2014-12-01 13:43:34 +01:00
{
dto.SeriesPrimaryImageTag = GetImageCacheTag(series, ImageType.Primary);
}
}
2013-02-21 02:33:05 +01:00
}
2013-09-04 19:02:19 +02:00
var game = item as Game;
2013-02-21 02:33:05 +01:00
2013-09-04 19:02:19 +02:00
if (game != null)
2013-02-21 02:33:05 +01:00
{
2013-09-04 19:02:19 +02:00
SetGameProperties(dto, game);
2013-02-21 02:33:05 +01:00
}
2013-10-27 22:40:42 +01:00
var gameSystem = item as GameSystem;
if (gameSystem != null)
{
SetGameSystemProperties(dto, gameSystem);
}
2013-09-04 19:02:19 +02:00
var musicVideo = item as MusicVideo;
if (musicVideo != null)
{
SetMusicVideoProperties(dto, musicVideo);
2013-02-21 02:33:05 +01:00
}
2013-09-04 19:02:19 +02:00
var book = item as Book;
if (book != null)
{
SetBookProperties(dto, book);
}
2016-10-09 09:18:43 +02:00
if (item.ProductionLocations.Count > 0 || item is Movie)
2016-10-08 20:51:07 +02:00
{
2016-10-09 09:18:43 +02:00
dto.ProductionLocations = item.ProductionLocations.ToArray();
2016-10-08 20:51:07 +02:00
}
var photo = item as Photo;
if (photo != null)
{
SetPhotoProperties(dto, photo);
}
2015-08-17 06:08:33 +02:00
dto.ChannelId = item.ChannelId;
2015-10-29 14:28:05 +01:00
2016-03-19 06:04:38 +01:00
if (item.SourceType == SourceType.Channel && !string.IsNullOrWhiteSpace(item.ChannelId))
2014-05-17 23:23:48 +02:00
{
2016-03-19 06:04:38 +01:00
var channel = _libraryManager.GetItemById(item.ChannelId);
if (channel != null)
{
dto.ChannelName = channel.Name;
}
2014-05-17 23:23:48 +02:00
}
}
2016-12-17 09:27:41 +01:00
private BaseItem GetImageDisplayParent(BaseItem item)
{
var musicAlbum = item as MusicAlbum;
if (musicAlbum != null)
{
var artist = musicAlbum.MusicArtist;
if (artist != null)
{
return artist;
}
}
return item.GetParent();
}
2016-07-05 07:40:18 +02:00
private void AddInheritedImages(BaseItemDto dto, BaseItem item, DtoOptions options, BaseItem owner)
{
2016-11-21 09:54:53 +01:00
if (!item.SupportsInheritedParentImages)
{
return;
}
2016-07-05 07:40:18 +02:00
var logoLimit = options.GetImageLimit(ImageType.Logo);
var artLimit = options.GetImageLimit(ImageType.Art);
var thumbLimit = options.GetImageLimit(ImageType.Thumb);
var backdropLimit = options.GetImageLimit(ImageType.Backdrop);
2016-11-21 09:54:53 +01:00
// For now. Emby apps are not using this
artLimit = 0;
2016-07-05 07:40:18 +02:00
if (logoLimit == 0 && artLimit == 0 && thumbLimit == 0 && backdropLimit == 0)
{
return;
}
BaseItem parent = null;
var isFirst = true;
2016-08-03 08:38:19 +02:00
while (((!dto.HasLogo && logoLimit > 0) || (!dto.HasArtImage && artLimit > 0) || (!dto.HasThumb && thumbLimit > 0) || parent is Series) &&
2016-12-17 09:27:41 +01:00
(parent = parent ?? (isFirst ? GetImageDisplayParent(item) ?? owner : parent)) != null)
2016-07-05 07:40:18 +02:00
{
2016-07-08 05:22:02 +02:00
if (parent == null)
{
break;
}
var allImages = parent.ImageInfos;
2016-07-05 07:40:18 +02:00
if (logoLimit > 0 && !dto.HasLogo && dto.ParentLogoItemId == null)
{
2016-07-08 05:22:02 +02:00
var image = allImages.FirstOrDefault(i => i.Type == ImageType.Logo);
2016-07-05 07:40:18 +02:00
if (image != null)
{
dto.ParentLogoItemId = GetDtoId(parent);
dto.ParentLogoImageTag = GetImageCacheTag(parent, image);
}
}
if (artLimit > 0 && !dto.HasArtImage && dto.ParentArtItemId == null)
{
2016-07-08 05:22:02 +02:00
var image = allImages.FirstOrDefault(i => i.Type == ImageType.Art);
2016-07-05 07:40:18 +02:00
if (image != null)
{
dto.ParentArtItemId = GetDtoId(parent);
dto.ParentArtImageTag = GetImageCacheTag(parent, image);
}
}
if (thumbLimit > 0 && !dto.HasThumb && (dto.ParentThumbItemId == null || parent is Series))
{
2016-07-08 05:22:02 +02:00
var image = allImages.FirstOrDefault(i => i.Type == ImageType.Thumb);
2016-07-05 07:40:18 +02:00
if (image != null)
{
dto.ParentThumbItemId = GetDtoId(parent);
dto.ParentThumbImageTag = GetImageCacheTag(parent, image);
}
}
if (backdropLimit > 0 && !dto.HasBackdrop)
{
2016-07-08 05:22:02 +02:00
var images = allImages.Where(i => i.Type == ImageType.Backdrop).Take(backdropLimit).ToList();
2016-07-05 07:40:18 +02:00
if (images.Count > 0)
{
dto.ParentBackdropItemId = GetDtoId(parent);
dto.ParentBackdropImageTags = GetImageTags(parent, images);
}
}
isFirst = false;
2016-11-21 09:54:53 +01:00
if (!parent.SupportsInheritedParentImages)
{
break;
}
2016-12-17 09:27:41 +01:00
parent = GetImageDisplayParent(parent);
2016-07-05 07:40:18 +02:00
}
}
private string GetMappedPath(BaseItem item)
2014-03-20 16:55:22 +01:00
{
2014-03-21 04:31:40 +01:00
var path = item.Path;
2014-03-20 16:55:22 +01:00
2014-03-21 04:31:40 +01:00
var locationType = item.LocationType;
2014-03-20 16:55:22 +01:00
2014-06-02 21:32:41 +02:00
if (locationType == LocationType.FileSystem || locationType == LocationType.Offline)
2014-03-20 16:55:22 +01:00
{
path = _libraryManager.GetPathAfterNetworkSubstitution(path, item);
2014-03-20 16:55:22 +01:00
}
return path;
}
2013-02-21 02:33:05 +01:00
/// <summary>
2013-09-04 19:02:19 +02:00
/// Attaches the primary image aspect ratio.
2013-02-21 02:33:05 +01:00
/// </summary>
2013-09-04 19:02:19 +02:00
/// <param name="dto">The dto.</param>
2013-02-21 02:33:05 +01:00
/// <param name="item">The item.</param>
2013-09-04 19:02:19 +02:00
/// <returns>Task.</returns>
2016-01-16 06:01:57 +01:00
public void AttachPrimaryImageAspectRatio(IItemDto dto, IHasImages item)
{
dto.PrimaryImageAspectRatio = GetPrimaryImageAspectRatio(item);
}
public double? GetPrimaryImageAspectRatio(IHasImages item)
2013-02-21 02:33:05 +01:00
{
2014-02-07 21:30:41 +01:00
var imageInfo = item.GetImageInfo(ImageType.Primary, 0);
2013-05-05 06:49:49 +02:00
2015-10-16 19:06:31 +02:00
if (imageInfo == null || !imageInfo.IsLocalFile)
2013-09-04 19:02:19 +02:00
{
2016-01-16 06:01:57 +01:00
return null;
2013-09-04 19:02:19 +02:00
}
ImageSize size;
try
2013-05-05 06:49:49 +02:00
{
2015-02-28 14:42:47 +01:00
size = _imageProcessor.GetImageSize(imageInfo);
2013-09-04 19:02:19 +02:00
}
catch
{
2015-08-14 19:24:07 +02:00
//_logger.ErrorException("Failed to determine primary image aspect ratio for {0}", ex, path);
2016-01-16 06:01:57 +01:00
return null;
2013-09-04 19:02:19 +02:00
}
2013-09-18 20:49:06 +02:00
var supportedEnhancers = _imageProcessor.GetSupportedEnhancers(item, ImageType.Primary).ToList();
2013-09-04 19:02:19 +02:00
foreach (var enhancer in supportedEnhancers)
{
try
{
size = enhancer.GetEnhancedImageSize(item, ImageType.Primary, 0, size);
}
catch (Exception ex)
{
_logger.ErrorException("Error in image enhancer: {0}", ex, enhancer.GetType().Name);
}
2013-05-05 06:49:49 +02:00
}
2013-09-04 19:02:19 +02:00
2016-01-21 09:23:02 +01:00
var width = size.Width;
var height = size.Height;
if (width == 0 || height == 0)
2015-01-30 22:17:19 +01:00
{
2016-01-21 09:23:02 +01:00
return null;
2015-01-30 22:17:19 +01:00
}
2016-01-21 09:23:02 +01:00
var photo = item as Photo;
if (photo != null && photo.Orientation.HasValue)
{
switch (photo.Orientation.Value)
{
case ImageOrientation.LeftBottom:
case ImageOrientation.LeftTop:
case ImageOrientation.RightBottom:
case ImageOrientation.RightTop:
var temp = height;
height = width;
width = temp;
break;
}
}
return width / height;
2013-05-05 06:49:49 +02:00
}
2013-02-21 02:33:05 +01:00
}
}