2014-06-01 03:19:06 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2014-02-02 19:31:56 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities.Audio;
|
2015-06-29 01:10:45 +00:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2014-01-28 18:37:01 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2014-06-01 03:19:06 +00:00
|
|
|
|
using System;
|
2014-01-28 18:37:01 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2014-02-08 20:02:35 +00:00
|
|
|
|
namespace MediaBrowser.Providers.Manager
|
2014-01-28 18:37:01 +00:00
|
|
|
|
{
|
|
|
|
|
public static class ProviderUtils
|
|
|
|
|
{
|
2015-06-29 01:10:45 +00:00
|
|
|
|
public static void MergeBaseItemData<T>(MetadataResult<T> sourceResult,
|
2016-04-13 20:49:16 +00:00
|
|
|
|
MetadataResult<T> targetResult,
|
|
|
|
|
List<MetadataFields> lockedFields,
|
|
|
|
|
bool replaceData,
|
2014-10-28 23:17:55 +00:00
|
|
|
|
bool mergeMetadataSettings)
|
2015-06-29 01:10:45 +00:00
|
|
|
|
where T : BaseItem
|
2014-01-28 18:37:01 +00:00
|
|
|
|
{
|
2015-06-29 01:10:45 +00:00
|
|
|
|
var source = sourceResult.Item;
|
|
|
|
|
var target = targetResult.Item;
|
|
|
|
|
|
2015-05-08 16:28:06 +00:00
|
|
|
|
if (source == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("source");
|
|
|
|
|
}
|
|
|
|
|
if (target == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("target");
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-28 18:37:01 +00:00
|
|
|
|
if (!lockedFields.Contains(MetadataFields.Name))
|
|
|
|
|
{
|
|
|
|
|
if (replaceData || string.IsNullOrEmpty(target.Name))
|
|
|
|
|
{
|
2014-06-01 03:19:06 +00:00
|
|
|
|
// Safeguard against incoming data having an emtpy name
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(source.Name))
|
|
|
|
|
{
|
|
|
|
|
target.Name = source.Name;
|
|
|
|
|
}
|
2014-01-28 18:37:01 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-20 05:21:40 +00:00
|
|
|
|
if (replaceData || string.IsNullOrEmpty(target.OriginalTitle))
|
|
|
|
|
{
|
|
|
|
|
// Safeguard against incoming data having an emtpy name
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(source.OriginalTitle))
|
|
|
|
|
{
|
|
|
|
|
target.OriginalTitle = source.OriginalTitle;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-28 18:37:01 +00:00
|
|
|
|
if (replaceData || !target.CommunityRating.HasValue)
|
|
|
|
|
{
|
|
|
|
|
target.CommunityRating = source.CommunityRating;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (replaceData || !target.EndDate.HasValue)
|
|
|
|
|
{
|
|
|
|
|
target.EndDate = source.EndDate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!lockedFields.Contains(MetadataFields.Genres))
|
|
|
|
|
{
|
|
|
|
|
if (replaceData || target.Genres.Count == 0)
|
|
|
|
|
{
|
|
|
|
|
target.Genres = source.Genres;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (replaceData || string.IsNullOrEmpty(target.HomePageUrl))
|
|
|
|
|
{
|
|
|
|
|
target.HomePageUrl = source.HomePageUrl;
|
2014-10-09 22:22:04 +00:00
|
|
|
|
if (!string.IsNullOrWhiteSpace(target.HomePageUrl) && target.HomePageUrl.IndexOf("http", StringComparison.OrdinalIgnoreCase) != 0)
|
|
|
|
|
{
|
|
|
|
|
target.HomePageUrl = "http://" + target.HomePageUrl;
|
|
|
|
|
}
|
2014-01-28 18:37:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (replaceData || !target.IndexNumber.HasValue)
|
|
|
|
|
{
|
|
|
|
|
target.IndexNumber = source.IndexNumber;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!lockedFields.Contains(MetadataFields.OfficialRating))
|
|
|
|
|
{
|
|
|
|
|
if (replaceData || string.IsNullOrEmpty(target.OfficialRating))
|
|
|
|
|
{
|
|
|
|
|
target.OfficialRating = source.OfficialRating;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (replaceData || string.IsNullOrEmpty(target.OfficialRatingDescription))
|
|
|
|
|
{
|
|
|
|
|
target.OfficialRatingDescription = source.OfficialRatingDescription;
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-01 17:53:56 +00:00
|
|
|
|
if (replaceData || string.IsNullOrEmpty(target.CustomRating))
|
|
|
|
|
{
|
|
|
|
|
target.CustomRating = source.CustomRating;
|
|
|
|
|
}
|
2016-04-13 20:49:16 +00:00
|
|
|
|
|
2014-01-28 18:37:01 +00:00
|
|
|
|
if (!lockedFields.Contains(MetadataFields.Overview))
|
|
|
|
|
{
|
|
|
|
|
if (replaceData || string.IsNullOrEmpty(target.Overview))
|
|
|
|
|
{
|
|
|
|
|
target.Overview = source.Overview;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (replaceData || !target.ParentIndexNumber.HasValue)
|
|
|
|
|
{
|
|
|
|
|
target.ParentIndexNumber = source.ParentIndexNumber;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!lockedFields.Contains(MetadataFields.Cast))
|
|
|
|
|
{
|
2015-07-24 02:48:10 +00:00
|
|
|
|
if (replaceData || targetResult.People == null || targetResult.People.Count == 0)
|
2014-01-28 18:37:01 +00:00
|
|
|
|
{
|
2016-04-13 20:49:16 +00:00
|
|
|
|
targetResult.People = sourceResult.People;
|
2014-01-28 18:37:01 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (replaceData || !target.PremiereDate.HasValue)
|
|
|
|
|
{
|
|
|
|
|
target.PremiereDate = source.PremiereDate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (replaceData || !target.ProductionYear.HasValue)
|
|
|
|
|
{
|
|
|
|
|
target.ProductionYear = source.ProductionYear;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!lockedFields.Contains(MetadataFields.Runtime))
|
|
|
|
|
{
|
|
|
|
|
if (replaceData || !target.RunTimeTicks.HasValue)
|
|
|
|
|
{
|
2014-02-06 04:39:16 +00:00
|
|
|
|
if (!(target is Audio) && !(target is Video))
|
|
|
|
|
{
|
|
|
|
|
target.RunTimeTicks = source.RunTimeTicks;
|
|
|
|
|
}
|
2014-01-28 18:37:01 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!lockedFields.Contains(MetadataFields.Studios))
|
|
|
|
|
{
|
|
|
|
|
if (replaceData || target.Studios.Count == 0)
|
|
|
|
|
{
|
|
|
|
|
target.Studios = source.Studios;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-31 04:50:09 +00:00
|
|
|
|
if (!lockedFields.Contains(MetadataFields.Tags))
|
|
|
|
|
{
|
2016-06-02 17:43:29 +00:00
|
|
|
|
if (replaceData || target.Tags.Count == 0)
|
2014-01-31 04:50:09 +00:00
|
|
|
|
{
|
2016-06-02 17:43:29 +00:00
|
|
|
|
target.Tags = source.Tags;
|
2014-01-31 04:50:09 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!lockedFields.Contains(MetadataFields.Keywords))
|
|
|
|
|
{
|
2016-05-31 18:07:54 +00:00
|
|
|
|
if (replaceData || target.Keywords.Count == 0)
|
2014-01-31 04:50:09 +00:00
|
|
|
|
{
|
2016-05-31 18:07:54 +00:00
|
|
|
|
target.Keywords = source.Keywords;
|
2014-01-31 04:50:09 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!lockedFields.Contains(MetadataFields.ProductionLocations))
|
|
|
|
|
{
|
|
|
|
|
var sourceHasProductionLocations = source as IHasProductionLocations;
|
|
|
|
|
var targetHasProductionLocations = target as IHasProductionLocations;
|
|
|
|
|
|
|
|
|
|
if (sourceHasProductionLocations != null && targetHasProductionLocations != null)
|
|
|
|
|
{
|
|
|
|
|
if (replaceData || targetHasProductionLocations.ProductionLocations.Count == 0)
|
|
|
|
|
{
|
|
|
|
|
targetHasProductionLocations.ProductionLocations = sourceHasProductionLocations.ProductionLocations;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-28 18:37:01 +00:00
|
|
|
|
if (replaceData || !target.VoteCount.HasValue)
|
|
|
|
|
{
|
|
|
|
|
target.VoteCount = source.VoteCount;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach (var id in source.ProviderIds)
|
|
|
|
|
{
|
2014-02-13 05:11:54 +00:00
|
|
|
|
var key = id.Key;
|
|
|
|
|
|
|
|
|
|
// Don't replace existing Id's.
|
2014-07-08 01:41:03 +00:00
|
|
|
|
if (replaceData || !target.ProviderIds.ContainsKey(key))
|
2014-02-13 05:11:54 +00:00
|
|
|
|
{
|
|
|
|
|
target.ProviderIds[key] = id.Value;
|
|
|
|
|
}
|
2014-01-28 18:37:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-02 19:31:56 +00:00
|
|
|
|
MergeAlbumArtist(source, target, lockedFields, replaceData);
|
2014-02-04 20:19:29 +00:00
|
|
|
|
MergeBudget(source, target, lockedFields, replaceData);
|
2014-02-06 04:39:16 +00:00
|
|
|
|
MergeMetascore(source, target, lockedFields, replaceData);
|
|
|
|
|
MergeCriticRating(source, target, lockedFields, replaceData);
|
|
|
|
|
MergeAwards(source, target, lockedFields, replaceData);
|
|
|
|
|
MergeTaglines(source, target, lockedFields, replaceData);
|
|
|
|
|
MergeTrailers(source, target, lockedFields, replaceData);
|
2014-06-24 04:18:02 +00:00
|
|
|
|
MergeShortOverview(source, target, lockedFields, replaceData);
|
2014-02-02 19:31:56 +00:00
|
|
|
|
|
2014-01-28 18:37:01 +00:00
|
|
|
|
if (mergeMetadataSettings)
|
|
|
|
|
{
|
2014-10-28 23:17:55 +00:00
|
|
|
|
MergeMetadataSettings(source, target);
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-01-31 04:50:09 +00:00
|
|
|
|
|
2014-10-28 23:17:55 +00:00
|
|
|
|
public static void MergeMetadataSettings(BaseItem source,
|
|
|
|
|
BaseItem target)
|
|
|
|
|
{
|
|
|
|
|
target.ForcedSortName = source.ForcedSortName;
|
|
|
|
|
target.LockedFields = source.LockedFields;
|
|
|
|
|
target.IsLocked = source.IsLocked;
|
|
|
|
|
target.DisplayMediaType = source.DisplayMediaType;
|
2014-05-02 02:54:33 +00:00
|
|
|
|
|
2014-10-28 23:17:55 +00:00
|
|
|
|
// Grab the value if it's there, but if not then don't overwrite the default
|
|
|
|
|
if (source.DateCreated != default(DateTime))
|
|
|
|
|
{
|
|
|
|
|
target.DateCreated = source.DateCreated;
|
|
|
|
|
}
|
2014-01-31 04:50:09 +00:00
|
|
|
|
|
2015-09-29 17:35:23 +00:00
|
|
|
|
target.PreferredMetadataCountryCode = source.PreferredMetadataCountryCode;
|
|
|
|
|
target.PreferredMetadataLanguage = source.PreferredMetadataLanguage;
|
2014-01-31 04:50:09 +00:00
|
|
|
|
|
2014-10-28 23:17:55 +00:00
|
|
|
|
var sourceHasDisplayOrder = source as IHasDisplayOrder;
|
|
|
|
|
var targetHasDisplayOrder = target as IHasDisplayOrder;
|
|
|
|
|
|
|
|
|
|
if (sourceHasDisplayOrder != null && targetHasDisplayOrder != null)
|
|
|
|
|
{
|
|
|
|
|
targetHasDisplayOrder.DisplayOrder = sourceHasDisplayOrder.DisplayOrder;
|
2014-01-28 18:37:01 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-04-13 20:49:16 +00:00
|
|
|
|
|
2014-06-24 04:18:02 +00:00
|
|
|
|
private static void MergeShortOverview(BaseItem source, BaseItem target, List<MetadataFields> lockedFields, bool replaceData)
|
|
|
|
|
{
|
|
|
|
|
var sourceHasShortOverview = source as IHasShortOverview;
|
|
|
|
|
var targetHasShortOverview = target as IHasShortOverview;
|
|
|
|
|
|
|
|
|
|
if (sourceHasShortOverview != null && targetHasShortOverview != null)
|
|
|
|
|
{
|
|
|
|
|
if (replaceData || string.IsNullOrEmpty(targetHasShortOverview.ShortOverview))
|
|
|
|
|
{
|
|
|
|
|
targetHasShortOverview.ShortOverview = sourceHasShortOverview.ShortOverview;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-02 19:31:56 +00:00
|
|
|
|
private static void MergeAlbumArtist(BaseItem source, BaseItem target, List<MetadataFields> lockedFields, bool replaceData)
|
|
|
|
|
{
|
|
|
|
|
var sourceHasAlbumArtist = source as IHasAlbumArtist;
|
|
|
|
|
var targetHasAlbumArtist = target as IHasAlbumArtist;
|
|
|
|
|
|
|
|
|
|
if (sourceHasAlbumArtist != null && targetHasAlbumArtist != null)
|
|
|
|
|
{
|
2015-03-13 01:55:22 +00:00
|
|
|
|
if (replaceData || targetHasAlbumArtist.AlbumArtists.Count == 0)
|
2014-02-02 19:31:56 +00:00
|
|
|
|
{
|
2014-06-23 16:05:19 +00:00
|
|
|
|
targetHasAlbumArtist.AlbumArtists = sourceHasAlbumArtist.AlbumArtists;
|
2014-02-02 19:31:56 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-02-04 20:19:29 +00:00
|
|
|
|
|
|
|
|
|
private static void MergeBudget(BaseItem source, BaseItem target, List<MetadataFields> lockedFields, bool replaceData)
|
|
|
|
|
{
|
|
|
|
|
var sourceHasBudget = source as IHasBudget;
|
|
|
|
|
var targetHasBudget = target as IHasBudget;
|
|
|
|
|
|
|
|
|
|
if (sourceHasBudget != null && targetHasBudget != null)
|
|
|
|
|
{
|
|
|
|
|
if (replaceData || !targetHasBudget.Budget.HasValue)
|
|
|
|
|
{
|
|
|
|
|
targetHasBudget.Budget = sourceHasBudget.Budget;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (replaceData || !targetHasBudget.Revenue.HasValue)
|
|
|
|
|
{
|
|
|
|
|
targetHasBudget.Revenue = sourceHasBudget.Revenue;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-02-06 04:39:16 +00:00
|
|
|
|
|
|
|
|
|
private static void MergeMetascore(BaseItem source, BaseItem target, List<MetadataFields> lockedFields, bool replaceData)
|
|
|
|
|
{
|
|
|
|
|
var sourceCast = source as IHasMetascore;
|
|
|
|
|
var targetCast = target as IHasMetascore;
|
|
|
|
|
|
|
|
|
|
if (sourceCast != null && targetCast != null)
|
|
|
|
|
{
|
|
|
|
|
if (replaceData || !targetCast.Metascore.HasValue)
|
|
|
|
|
{
|
|
|
|
|
targetCast.Metascore = sourceCast.Metascore;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void MergeAwards(BaseItem source, BaseItem target, List<MetadataFields> lockedFields, bool replaceData)
|
|
|
|
|
{
|
|
|
|
|
var sourceCast = source as IHasAwards;
|
|
|
|
|
var targetCast = target as IHasAwards;
|
|
|
|
|
|
|
|
|
|
if (sourceCast != null && targetCast != null)
|
|
|
|
|
{
|
|
|
|
|
if (replaceData || string.IsNullOrEmpty(targetCast.AwardSummary))
|
|
|
|
|
{
|
|
|
|
|
targetCast.AwardSummary = sourceCast.AwardSummary;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void MergeCriticRating(BaseItem source, BaseItem target, List<MetadataFields> lockedFields, bool replaceData)
|
|
|
|
|
{
|
|
|
|
|
var sourceCast = source as IHasCriticRating;
|
|
|
|
|
var targetCast = target as IHasCriticRating;
|
|
|
|
|
|
|
|
|
|
if (sourceCast != null && targetCast != null)
|
|
|
|
|
{
|
|
|
|
|
if (replaceData || !targetCast.CriticRating.HasValue)
|
|
|
|
|
{
|
|
|
|
|
targetCast.CriticRating = sourceCast.CriticRating;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (replaceData || string.IsNullOrEmpty(targetCast.CriticRatingSummary))
|
|
|
|
|
{
|
|
|
|
|
targetCast.CriticRatingSummary = sourceCast.CriticRatingSummary;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void MergeTaglines(BaseItem source, BaseItem target, List<MetadataFields> lockedFields, bool replaceData)
|
|
|
|
|
{
|
|
|
|
|
var sourceCast = source as IHasTaglines;
|
|
|
|
|
var targetCast = target as IHasTaglines;
|
|
|
|
|
|
|
|
|
|
if (sourceCast != null && targetCast != null)
|
|
|
|
|
{
|
|
|
|
|
if (replaceData || targetCast.Taglines.Count == 0)
|
|
|
|
|
{
|
|
|
|
|
targetCast.Taglines = sourceCast.Taglines;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void MergeTrailers(BaseItem source, BaseItem target, List<MetadataFields> lockedFields, bool replaceData)
|
|
|
|
|
{
|
|
|
|
|
var sourceCast = source as IHasTrailers;
|
|
|
|
|
var targetCast = target as IHasTrailers;
|
|
|
|
|
|
|
|
|
|
if (sourceCast != null && targetCast != null)
|
|
|
|
|
{
|
|
|
|
|
if (replaceData || targetCast.RemoteTrailers.Count == 0)
|
|
|
|
|
{
|
|
|
|
|
targetCast.RemoteTrailers = sourceCast.RemoteTrailers;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-01-28 18:37:01 +00:00
|
|
|
|
}
|
|
|
|
|
}
|