jellyfin/MediaBrowser.Controller/Providers/MetadataResult.cs

100 lines
2.5 KiB
C#
Raw Normal View History

#nullable disable
#pragma warning disable CA1002, CA2227, CS1591
2018-12-28 00:27:57 +01:00
using System;
using System.Collections.Generic;
using System.Globalization;
using MediaBrowser.Controller.Entities;
2021-02-27 22:46:03 +01:00
using MediaBrowser.Model.Entities;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Controller.Providers
{
public class MetadataResult<T>
{
2021-05-24 00:30:41 +02:00
// Images aren't always used so the allocation is a waste a lot of the time
private List<LocalImageInfo> _images;
2021-12-24 22:18:24 +01:00
private List<(string Url, ImageType Type)> _remoteImages;
2021-05-24 00:30:41 +02:00
2018-12-28 00:27:57 +01:00
public MetadataResult()
{
ResultLanguage = "en";
}
2021-05-24 00:30:41 +02:00
public List<LocalImageInfo> Images
{
get => _images ??= new List<LocalImageInfo>();
set => _images = value;
}
2021-02-27 22:46:03 +01:00
2021-12-24 22:18:24 +01:00
public List<(string Url, ImageType Type)> RemoteImages
2021-05-24 00:30:41 +02:00
{
2021-12-24 22:18:24 +01:00
get => _remoteImages ??= new List<(string Url, ImageType Type)>();
2021-05-24 00:30:41 +02:00
set => _remoteImages = value;
}
2021-02-27 22:46:03 +01:00
public List<UserItemData> UserDataList { get; set; }
2018-12-28 00:27:57 +01:00
public List<PersonInfo> People { get; set; }
public bool HasMetadata { get; set; }
2018-12-28 00:27:57 +01:00
public T Item { get; set; }
2018-12-28 00:27:57 +01:00
public string ResultLanguage { get; set; }
2018-12-28 00:27:57 +01:00
public string Provider { get; set; }
2018-12-28 00:27:57 +01:00
public bool QueriedById { get; set; }
2018-12-28 00:27:57 +01:00
public void AddPerson(PersonInfo p)
{
People ??= new List<PersonInfo>();
2018-12-28 00:27:57 +01:00
PeopleHelper.AddPerson(People, p);
}
/// <summary>
/// Not only does this clear, but initializes the list so that services can differentiate between a null list and zero people.
2018-12-28 00:27:57 +01:00
/// </summary>
public void ResetPeople()
{
2022-12-05 15:00:20 +01:00
if (People is null)
2018-12-28 00:27:57 +01:00
{
People = new List<PersonInfo>();
}
else
{
People.Clear();
}
2018-12-28 00:27:57 +01:00
}
public UserItemData GetOrAddUserData(string userId)
{
UserDataList ??= new List<UserItemData>();
2018-12-28 00:27:57 +01:00
UserItemData userData = null;
foreach (var i in UserDataList)
{
if (string.Equals(userId, i.UserId.ToString("N", CultureInfo.InvariantCulture), StringComparison.OrdinalIgnoreCase))
2018-12-28 00:27:57 +01:00
{
userData = i;
}
}
2022-12-05 15:00:20 +01:00
if (userData is null)
2018-12-28 00:27:57 +01:00
{
userData = new UserItemData()
{
UserId = new Guid(userId)
};
UserDataList.Add(userData);
}
return userData;
}
}
2018-12-27 22:43:48 +01:00
}