mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-01 12:44:25 -04:00
Apply suggestions from review
This commit is contained in:
parent
b5a7a74e89
commit
09b1e571f4
@ -54,35 +54,18 @@ namespace Jellyfin.Api.Controllers
|
|||||||
[FromQuery, ModelBinder(typeof(CommaDelimitedArrayModelBinder))] string[] includeItemTypes,
|
[FromQuery, ModelBinder(typeof(CommaDelimitedArrayModelBinder))] string[] includeItemTypes,
|
||||||
[FromQuery, ModelBinder(typeof(CommaDelimitedArrayModelBinder))] string[] mediaTypes)
|
[FromQuery, ModelBinder(typeof(CommaDelimitedArrayModelBinder))] string[] mediaTypes)
|
||||||
{
|
{
|
||||||
var parentItem = parentId.HasValue
|
|
||||||
? _libraryManager.GetItemById(parentId.Value)
|
|
||||||
: null;
|
|
||||||
|
|
||||||
var user = userId.HasValue && !userId.Equals(Guid.Empty)
|
var user = userId.HasValue && !userId.Equals(Guid.Empty)
|
||||||
? _userManager.GetUserById(userId.Value)
|
? _userManager.GetUserById(userId.Value)
|
||||||
: null;
|
: null;
|
||||||
|
|
||||||
if (includeItemTypes.Length == 1
|
BaseItem? item = null;
|
||||||
&& (string.Equals(includeItemTypes[0], nameof(BoxSet), StringComparison.OrdinalIgnoreCase)
|
if (includeItemTypes.Length != 1
|
||||||
|| string.Equals(includeItemTypes[0], nameof(Playlist), StringComparison.OrdinalIgnoreCase)
|
|| !(string.Equals(includeItemTypes[0], nameof(BoxSet), StringComparison.OrdinalIgnoreCase)
|
||||||
|| string.Equals(includeItemTypes[0], nameof(Trailer), StringComparison.OrdinalIgnoreCase)
|
|| string.Equals(includeItemTypes[0], nameof(Playlist), StringComparison.OrdinalIgnoreCase)
|
||||||
|| string.Equals(includeItemTypes[0], "Program", StringComparison.OrdinalIgnoreCase)))
|
|| string.Equals(includeItemTypes[0], nameof(Trailer), StringComparison.OrdinalIgnoreCase)
|
||||||
|
|| string.Equals(includeItemTypes[0], "Program", StringComparison.OrdinalIgnoreCase)))
|
||||||
{
|
{
|
||||||
parentItem = null;
|
item = _libraryManager.GetParentItem(parentId, user?.Id);
|
||||||
}
|
|
||||||
|
|
||||||
BaseItem? item;
|
|
||||||
if (parentId.HasValue)
|
|
||||||
{
|
|
||||||
item = parentItem;
|
|
||||||
}
|
|
||||||
else if (user == null)
|
|
||||||
{
|
|
||||||
item = _libraryManager.RootFolder;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
item = _libraryManager.GetUserRootFolder();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var query = new InternalItemsQuery
|
var query = new InternalItemsQuery
|
||||||
@ -158,14 +141,11 @@ namespace Jellyfin.Api.Controllers
|
|||||||
[FromQuery] bool? isSeries,
|
[FromQuery] bool? isSeries,
|
||||||
[FromQuery] bool? recursive)
|
[FromQuery] bool? recursive)
|
||||||
{
|
{
|
||||||
var parentItem = parentId.HasValue
|
|
||||||
? _libraryManager.GetItemById(parentId.Value)
|
|
||||||
: null;
|
|
||||||
|
|
||||||
var user = userId.HasValue && !userId.Equals(Guid.Empty)
|
var user = userId.HasValue && !userId.Equals(Guid.Empty)
|
||||||
? _userManager.GetUserById(userId.Value)
|
? _userManager.GetUserById(userId.Value)
|
||||||
: null;
|
: null;
|
||||||
|
|
||||||
|
BaseItem? parentItem = null;
|
||||||
if (includeItemTypes.Length == 1
|
if (includeItemTypes.Length == 1
|
||||||
&& (string.Equals(includeItemTypes[0], nameof(BoxSet), StringComparison.OrdinalIgnoreCase)
|
&& (string.Equals(includeItemTypes[0], nameof(BoxSet), StringComparison.OrdinalIgnoreCase)
|
||||||
|| string.Equals(includeItemTypes[0], nameof(Playlist), StringComparison.OrdinalIgnoreCase)
|
|| string.Equals(includeItemTypes[0], nameof(Playlist), StringComparison.OrdinalIgnoreCase)
|
||||||
@ -174,6 +154,10 @@ namespace Jellyfin.Api.Controllers
|
|||||||
{
|
{
|
||||||
parentItem = null;
|
parentItem = null;
|
||||||
}
|
}
|
||||||
|
else if (parentId.HasValue)
|
||||||
|
{
|
||||||
|
parentItem = _libraryManager.GetItemById(parentId.Value);
|
||||||
|
}
|
||||||
|
|
||||||
var filters = new QueryFilters();
|
var filters = new QueryFilters();
|
||||||
var genreQuery = new InternalItemsQuery(user)
|
var genreQuery = new InternalItemsQuery(user)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user