|
@@ -144,5 +144,31 @@ namespace Jellyfin.Api.Helpers
|
|
|
: Split(filters, ',', true)
|
|
|
.Select(v => Enum.Parse<ItemFilter>(v, true)).ToArray();
|
|
|
}
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// Gets the item fields.
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="fields">The fields string.</param>
|
|
|
+ /// <returns>IEnumerable{ItemFields}.</returns>
|
|
|
+ internal static ItemFields[] GetItemFields(string? fields)
|
|
|
+ {
|
|
|
+ if (string.IsNullOrEmpty(fields))
|
|
|
+ {
|
|
|
+ return Array.Empty<ItemFields>();
|
|
|
+ }
|
|
|
+
|
|
|
+ return Split(fields, ',', true)
|
|
|
+ .Select(v =>
|
|
|
+ {
|
|
|
+ if (Enum.TryParse(v, true, out ItemFields value))
|
|
|
+ {
|
|
|
+ return (ItemFields?)value;
|
|
|
+ }
|
|
|
+
|
|
|
+ return null;
|
|
|
+ }).Where(i => i.HasValue)
|
|
|
+ .Select(i => i!.Value)
|
|
|
+ .ToArray();
|
|
|
+ }
|
|
|
}
|
|
|
}
|