2020-10-27 23:57:52 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using MediaBrowser.Controller.Channels;
|
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
|
using MediaBrowser.Model.Configuration;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.BaseItemManager
|
|
|
|
|
{
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public class BaseItemManager : IBaseItemManager
|
|
|
|
|
{
|
|
|
|
|
private readonly IServerConfigurationManager _serverConfigurationManager;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the <see cref="BaseItemManager"/> class.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="serverConfigurationManager">Instance of the <see cref="IServerConfigurationManager"/> interface.</param>
|
|
|
|
|
public BaseItemManager(IServerConfigurationManager serverConfigurationManager)
|
|
|
|
|
{
|
|
|
|
|
_serverConfigurationManager = serverConfigurationManager;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public bool IsMetadataFetcherEnabled(BaseItem baseItem, LibraryOptions libraryOptions, string name)
|
|
|
|
|
{
|
|
|
|
|
if (baseItem is Channel)
|
|
|
|
|
{
|
2020-11-08 13:42:54 +00:00
|
|
|
|
// Hack alert.
|
2020-10-27 23:57:52 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (baseItem.SourceType == SourceType.Channel)
|
|
|
|
|
{
|
2020-11-08 13:42:49 +00:00
|
|
|
|
// Hack alert.
|
2020-10-27 23:57:52 +00:00
|
|
|
|
return !baseItem.EnableMediaSourceDisplay;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var typeOptions = libraryOptions.GetTypeOptions(GetType().Name);
|
|
|
|
|
if (typeOptions != null)
|
|
|
|
|
{
|
|
|
|
|
return typeOptions.ImageFetchers.Contains(name, StringComparer.OrdinalIgnoreCase);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!libraryOptions.EnableInternetProviders)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var itemConfig = _serverConfigurationManager.Configuration.MetadataOptions.FirstOrDefault(i => string.Equals(i.ItemType, GetType().Name, StringComparison.OrdinalIgnoreCase));
|
|
|
|
|
|
|
|
|
|
return itemConfig == null || !itemConfig.DisabledImageFetchers.Contains(name, StringComparer.OrdinalIgnoreCase);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public bool IsImageFetcherEnabled(BaseItem baseItem, LibraryOptions libraryOptions, string name)
|
|
|
|
|
{
|
|
|
|
|
if (baseItem is Channel)
|
|
|
|
|
{
|
2020-11-08 13:42:40 +00:00
|
|
|
|
// Hack alert.
|
2020-10-27 23:57:52 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (baseItem.SourceType == SourceType.Channel)
|
|
|
|
|
{
|
2020-11-08 13:42:33 +00:00
|
|
|
|
// Hack alert.
|
2020-10-27 23:57:52 +00:00
|
|
|
|
return !baseItem.EnableMediaSourceDisplay;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var typeOptions = libraryOptions.GetTypeOptions(GetType().Name);
|
|
|
|
|
if (typeOptions != null)
|
|
|
|
|
{
|
|
|
|
|
return typeOptions.ImageFetchers.Contains(name, StringComparer.OrdinalIgnoreCase);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!libraryOptions.EnableInternetProviders)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var itemConfig = _serverConfigurationManager.Configuration.MetadataOptions.FirstOrDefault(i => string.Equals(i.ItemType, GetType().Name, StringComparison.OrdinalIgnoreCase));
|
|
|
|
|
|
|
|
|
|
return itemConfig == null || !itemConfig.DisabledImageFetchers.Contains(name, StringComparer.OrdinalIgnoreCase);
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-11-08 13:42:33 +00:00
|
|
|
|
}
|