jellyfin/MediaBrowser.Model/Entities/ProviderIdsExtensions.cs

154 lines
5.8 KiB
C#
Raw Normal View History

2018-12-27 18:27:57 -05:00
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Model.Entities
{
/// <summary>
2020-02-03 19:49:27 -05:00
/// Class ProviderIdsExtensions.
2018-12-27 18:27:57 -05:00
/// </summary>
public static class ProviderIdsExtensions
{
/// <summary>
/// Case insensitive dictionary of <see cref="MetadataProvider"/> string representation.
/// </summary>
private static readonly Dictionary<string, string> _metadataProviderEnumDictionary =
Enum.GetValues<MetadataProvider>()
.ToDictionary(
enumValue => enumValue.ToString(),
enumValue => enumValue.ToString(),
StringComparer.OrdinalIgnoreCase);
2021-03-01 14:35:38 -05: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)
{
ArgumentNullException.ThrowIfNull(instance);
2021-03-01 14:35:38 -05:00
2021-03-03 06:28:40 -05:00
return instance.TryGetProviderId(name, out _);
2021-03-01 14:35:38 -05: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 18:27:57 -05:00
/// <summary>
/// Gets a provider id.
2018-12-27 18:27:57 -05:00
/// </summary>
/// <param name="instance">The instance.</param>
/// <param name="name">The name.</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>
public static bool TryGetProviderId(this IHasProviderIds instance, string name, [NotNullWhen(true)] out string? id)
2018-12-27 18:27:57 -05:00
{
ArgumentNullException.ThrowIfNull(instance);
2018-12-27 18:27:57 -05:00
2022-12-05 09:00:20 -05:00
if (instance.ProviderIds is null)
2021-03-03 03:37:21 -05:00
{
id = null;
return false;
}
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 18:27:57 -05:00
{
2021-02-19 11:01:52 -05:00
id = null;
foundProviderId = false;
2018-12-27 18:27:57 -05:00
}
return foundProviderId;
}
/// <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>
public static bool TryGetProviderId(this IHasProviderIds instance, MetadataProvider provider, [NotNullWhen(true)] out string? id)
{
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 18:27:57 -05:00
}
2021-02-19 11:01:52 -05: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 18:27:57 -05:00
/// <summary>
/// Sets a provider id.
2018-12-27 18:27:57 -05: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)
2018-12-27 18:27:57 -05:00
{
ArgumentNullException.ThrowIfNull(instance);
2019-01-07 18:27:46 -05:00
2018-12-27 18:27:57 -05:00
// If it's null remove the key from the dictionary
if (string.IsNullOrEmpty(value))
{
2021-02-19 11:01:52 -05:00
instance.ProviderIds?.Remove(name);
2018-12-27 18:27:57 -05:00
}
else
{
// Ensure it exists
instance.ProviderIds ??= new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
2018-12-27 18:27:57 -05:00
// Match on internal MetadataProvider enum string values before adding arbitrary providers
if (_metadataProviderEnumDictionary.TryGetValue(name, out var enumValue))
{
instance.ProviderIds[enumValue] = value;
}
else
{
instance.ProviderIds[name] = value;
}
2018-12-27 18:27:57 -05:00
}
}
/// <summary>
/// Sets a provider id.
2018-12-27 18:27:57 -05:00
/// </summary>
/// <param name="instance">The instance.</param>
/// <param name="provider">The provider.</param>
/// <param name="value">The value.</param>
2020-06-06 15:17:49 -04:00
public static void SetProviderId(this IHasProviderIds instance, MetadataProvider provider, string value)
2018-12-27 18:27:57 -05:00
{
instance.SetProviderId(provider.ToString(), value);
}
}
}