jellyfin/MediaBrowser.Controller/Dto/DtoOptions.cs

71 lines
1.9 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
using System;
2018-12-27 18:27:57 -05:00
using System.Linq;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Querying;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Controller.Dto
{
public class DtoOptions
{
private static readonly ItemFields[] DefaultExcludedFields = new[]
2018-12-27 18:27:57 -05:00
{
ItemFields.SeasonUserData,
ItemFields.RefreshState
};
public ItemFields[] Fields { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public ImageType[] ImageTypes { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public int ImageTypeLimit { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public bool EnableImages { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public bool AddProgramRecordingInfo { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public bool EnableUserData { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05: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 14:47:23 -05:00
=> Fields.Contains(field);
2018-12-27 18:27:57 -05:00
public DtoOptions(bool allFields)
{
ImageTypeLimit = int.MaxValue;
EnableImages = true;
EnableUserData = true;
AddCurrentProgram = true;
2019-02-26 14:47:23 -05:00
Fields = allFields ? AllItemFields : Array.Empty<ItemFields>();
2018-12-27 18:27:57 -05:00
ImageTypes = AllImageTypes;
}
public int GetImageLimit(ImageType type)
{
if (EnableImages && ImageTypes.Contains(type))
{
return ImageTypeLimit;
}
return 0;
}
}
}