jellyfin/MediaBrowser.Controller/Dto/DtoOptions.cs

72 lines
1.9 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
using System;
using System.Collections.Generic;
2018-12-28 00:27:57 +01:00
using System.Linq;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Querying;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Controller.Dto
{
public class DtoOptions
{
private static readonly ItemFields[] DefaultExcludedFields = new[]
2018-12-28 00:27:57 +01:00
{
ItemFields.SeasonUserData,
ItemFields.RefreshState
};
public IReadOnlyList<ItemFields> Fields { get; set; }
2020-06-15 23:43:52 +02:00
public IReadOnlyList<ImageType> ImageTypes { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public int ImageTypeLimit { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public bool EnableImages { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public bool AddProgramRecordingInfo { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public bool EnableUserData { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public bool AddCurrentProgram { get; set; }
public DtoOptions()
: this(true)
{
}
private static readonly ImageType[] AllImageTypes = Enum.GetNames(typeof(ImageType))
.Select(i => (ImageType)Enum.Parse(typeof(ImageType), i, true))
.ToArray();
private static readonly ItemFields[] AllItemFields = Enum.GetNames(typeof(ItemFields))
.Select(i => (ItemFields)Enum.Parse(typeof(ItemFields), i, true))
.Except(DefaultExcludedFields)
.ToArray();
public bool ContainsField(ItemFields field)
2019-02-26 20:47:23 +01:00
=> Fields.Contains(field);
2018-12-28 00:27:57 +01:00
public DtoOptions(bool allFields)
{
ImageTypeLimit = int.MaxValue;
EnableImages = true;
EnableUserData = true;
AddCurrentProgram = true;
2019-02-26 20:47:23 +01:00
Fields = allFields ? AllItemFields : Array.Empty<ItemFields>();
2018-12-28 00:27:57 +01:00
ImageTypes = AllImageTypes;
}
public int GetImageLimit(ImageType type)
{
if (EnableImages && ImageTypes.Contains(type))
{
return ImageTypeLimit;
}
return 0;
}
}
}