You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
3.0 KiB
72 lines
3.0 KiB
using MediaBrowser.Common.IO;
|
|
using MediaBrowser.Controller.Configuration;
|
|
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Controller.Entities.Movies;
|
|
using MediaBrowser.Controller.Library;
|
|
using MediaBrowser.Controller.Localization;
|
|
using MediaBrowser.Controller.Providers;
|
|
using MediaBrowser.Model.Entities;
|
|
using MediaBrowser.Model.Logging;
|
|
using MediaBrowser.Providers.Manager;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MediaBrowser.Providers.BoxSets
|
|
{
|
|
public class BoxSetMetadataService : MetadataService<BoxSet, BoxSetInfo>
|
|
{
|
|
private readonly ILocalizationManager _iLocalizationManager;
|
|
|
|
public BoxSetMetadataService(IServerConfigurationManager serverConfigurationManager, ILogger logger, IProviderManager providerManager, IProviderRepository providerRepo, IFileSystem fileSystem, IUserDataManager userDataManager, ILocalizationManager iLocalizationManager) : base(serverConfigurationManager, logger, providerManager, providerRepo, fileSystem, userDataManager)
|
|
{
|
|
_iLocalizationManager = iLocalizationManager;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Merges the specified source.
|
|
/// </summary>
|
|
/// <param name="source">The source.</param>
|
|
/// <param name="target">The target.</param>
|
|
/// <param name="lockedFields">The locked fields.</param>
|
|
/// <param name="replaceData">if set to <c>true</c> [replace data].</param>
|
|
/// <param name="mergeMetadataSettings">if set to <c>true</c> [merge metadata settings].</param>
|
|
protected override void MergeData(BoxSet source, BoxSet target, List<MetadataFields> lockedFields, bool replaceData, bool mergeMetadataSettings)
|
|
{
|
|
ProviderUtils.MergeBaseItemData(source, target, lockedFields, replaceData, mergeMetadataSettings);
|
|
|
|
if (mergeMetadataSettings)
|
|
{
|
|
var list = source.LinkedChildren.Where(i => i.Type != LinkedChildType.Manual).ToList();
|
|
|
|
list.AddRange(target.LinkedChildren.Where(i => i.Type == LinkedChildType.Manual));
|
|
|
|
target.LinkedChildren = list;
|
|
}
|
|
|
|
if (replaceData || target.Shares.Count == 0)
|
|
{
|
|
target.Shares = source.Shares;
|
|
}
|
|
}
|
|
|
|
protected override async Task<ItemUpdateType> BeforeSave(BoxSet item, bool isFullRefresh, ItemUpdateType currentUpdateType)
|
|
{
|
|
var updateType = await base.BeforeSave(item, isFullRefresh, currentUpdateType).ConfigureAwait(false);
|
|
|
|
if (isFullRefresh || currentUpdateType > ItemUpdateType.None)
|
|
{
|
|
if (!item.LockedFields.Contains(MetadataFields.OfficialRating))
|
|
{
|
|
if (item.UpdateRatingToContent())
|
|
{
|
|
updateType = updateType | ItemUpdateType.MetadataEdit;
|
|
}
|
|
}
|
|
}
|
|
|
|
return updateType;
|
|
}
|
|
}
|
|
}
|