2018-12-27 16:27:57 -07:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
2021-02-19 08:06:54 -07:00
|
|
|
using System.Diagnostics.CodeAnalysis;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Entities
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-02-03 17:49:27 -07:00
|
|
|
/// Class ProviderIdsExtensions.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
|
|
|
public static class ProviderIdsExtensions
|
|
|
|
{
|
2021-03-01 12:35:38 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Checks if this instance has an id for the given provider.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="instance">The instance.</param>
|
|
|
|
/// <param name="name">The of the provider name.</param>
|
|
|
|
/// <returns><c>true</c> if a provider id with the given name was found; otherwise <c>false</c>.</returns>
|
|
|
|
public static bool HasProviderId(this IHasProviderIds instance, string name)
|
|
|
|
{
|
|
|
|
if (instance == null)
|
|
|
|
{
|
|
|
|
throw new ArgumentNullException(nameof(instance));
|
|
|
|
}
|
|
|
|
|
2021-03-03 04:28:40 -07:00
|
|
|
return instance.TryGetProviderId(name, out _);
|
2021-03-01 12:35:38 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Checks if this instance has an id for the given provider.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="instance">The instance.</param>
|
|
|
|
/// <param name="provider">The provider.</param>
|
|
|
|
/// <returns><c>true</c> if a provider id with the given name was found; otherwise <c>false</c>.</returns>
|
|
|
|
public static bool HasProviderId(this IHasProviderIds instance, MetadataProvider provider)
|
|
|
|
{
|
|
|
|
return instance.HasProviderId(provider.ToString());
|
|
|
|
}
|
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
/// <summary>
|
2020-04-05 09:10:56 -07:00
|
|
|
/// Gets a provider id.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
|
|
|
/// <param name="instance">The instance.</param>
|
|
|
|
/// <param name="name">The name.</param>
|
2021-02-19 08:06:54 -07:00
|
|
|
/// <param name="id">The provider id.</param>
|
|
|
|
/// <returns><c>true</c> if a provider id with the given name was found; otherwise <c>false</c>.</returns>
|
2021-02-27 16:10:36 -07:00
|
|
|
public static bool TryGetProviderId(this IHasProviderIds instance, string name, [NotNullWhen(true)] out string? id)
|
2018-12-27 16:27:57 -07:00
|
|
|
{
|
|
|
|
if (instance == null)
|
|
|
|
{
|
2019-01-06 13:50:43 -07:00
|
|
|
throw new ArgumentNullException(nameof(instance));
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|
|
|
|
|
2021-03-03 01:37:21 -07:00
|
|
|
if (instance.ProviderIds == null)
|
|
|
|
{
|
|
|
|
id = null;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-03-03 01:09:57 -07:00
|
|
|
var foundProviderId = instance.ProviderIds.TryGetValue(name, out id);
|
|
|
|
// This occurs when searching with Identify (and possibly in other places)
|
|
|
|
if (string.IsNullOrEmpty(id))
|
2018-12-27 16:27:57 -07:00
|
|
|
{
|
2021-02-19 09:01:52 -07:00
|
|
|
id = null;
|
2021-03-03 01:09:57 -07:00
|
|
|
foundProviderId = false;
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|
|
|
|
|
2021-03-03 01:09:57 -07:00
|
|
|
return foundProviderId;
|
2021-02-19 08:06:54 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets a provider id.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="instance">The instance.</param>
|
|
|
|
/// <param name="provider">The provider.</param>
|
|
|
|
/// <param name="id">The provider id.</param>
|
|
|
|
/// <returns><c>true</c> if a provider id with the given name was found; otherwise <c>false</c>.</returns>
|
2021-02-27 16:10:36 -07:00
|
|
|
public static bool TryGetProviderId(this IHasProviderIds instance, MetadataProvider provider, [NotNullWhen(true)] out string? id)
|
2021-02-19 08:06:54 -07:00
|
|
|
{
|
|
|
|
return instance.TryGetProviderId(provider.ToString(), out id);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets a provider id.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="instance">The instance.</param>
|
|
|
|
/// <param name="name">The name.</param>
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
public static string? GetProviderId(this IHasProviderIds instance, string name)
|
|
|
|
{
|
|
|
|
instance.TryGetProviderId(name, out string? id);
|
|
|
|
return id;
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|
|
|
|
|
2021-02-19 09:01:52 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets a provider id.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="instance">The instance.</param>
|
|
|
|
/// <param name="provider">The provider.</param>
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
public static string? GetProviderId(this IHasProviderIds instance, MetadataProvider provider)
|
|
|
|
{
|
|
|
|
return instance.GetProviderId(provider.ToString());
|
|
|
|
}
|
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
/// <summary>
|
2020-04-05 09:10:56 -07:00
|
|
|
/// Sets a provider id.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
|
|
|
/// <param name="instance">The instance.</param>
|
|
|
|
/// <param name="name">The name.</param>
|
|
|
|
/// <param name="value">The value.</param>
|
|
|
|
public static void SetProviderId(this IHasProviderIds instance, string name, string value)
|
|
|
|
{
|
|
|
|
if (instance == null)
|
|
|
|
{
|
2019-01-06 13:50:43 -07:00
|
|
|
throw new ArgumentNullException(nameof(instance));
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|
2019-01-07 16:27:46 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
// If it's null remove the key from the dictionary
|
|
|
|
if (string.IsNullOrEmpty(value))
|
|
|
|
{
|
2021-02-19 09:01:52 -07:00
|
|
|
instance.ProviderIds?.Remove(name);
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Ensure it exists
|
|
|
|
if (instance.ProviderIds == null)
|
|
|
|
{
|
|
|
|
instance.ProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
|
|
|
|
}
|
|
|
|
|
|
|
|
instance.ProviderIds[name] = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2020-04-05 09:10:56 -07:00
|
|
|
/// Sets a provider id.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
|
|
|
/// <param name="instance">The instance.</param>
|
|
|
|
/// <param name="provider">The provider.</param>
|
|
|
|
/// <param name="value">The value.</param>
|
2020-06-06 12:17:49 -07:00
|
|
|
public static void SetProviderId(this IHasProviderIds instance, MetadataProvider provider, string value)
|
2018-12-27 16:27:57 -07:00
|
|
|
{
|
|
|
|
instance.SetProviderId(provider.ToString(), value);
|
|
|
|
}
|
|
|
|
}
|
2019-01-13 12:31:15 -07:00
|
|
|
}
|