mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Don't expose hwaccel type for non-admin (#12663)
This commit is contained in:
parent
97d2f778f8
commit
569a41fc2a
@ -16,6 +16,7 @@ using MediaBrowser.Controller.Devices;
|
|||||||
using MediaBrowser.Controller.Library;
|
using MediaBrowser.Controller.Library;
|
||||||
using MediaBrowser.Controller.Session;
|
using MediaBrowser.Controller.Session;
|
||||||
using MediaBrowser.Model.Dto;
|
using MediaBrowser.Model.Dto;
|
||||||
|
using MediaBrowser.Model.Entities;
|
||||||
using MediaBrowser.Model.Session;
|
using MediaBrowser.Model.Session;
|
||||||
using Microsoft.AspNetCore.Authorization;
|
using Microsoft.AspNetCore.Authorization;
|
||||||
using Microsoft.AspNetCore.Http;
|
using Microsoft.AspNetCore.Http;
|
||||||
@ -66,6 +67,7 @@ public class SessionController : BaseJellyfinApiController
|
|||||||
[FromQuery] int? activeWithinSeconds)
|
[FromQuery] int? activeWithinSeconds)
|
||||||
{
|
{
|
||||||
var result = _sessionManager.Sessions;
|
var result = _sessionManager.Sessions;
|
||||||
|
var isRequestingFromAdmin = User.IsInRole(UserRoles.Administrator);
|
||||||
|
|
||||||
if (!string.IsNullOrEmpty(deviceId))
|
if (!string.IsNullOrEmpty(deviceId))
|
||||||
{
|
{
|
||||||
@ -106,7 +108,7 @@ public class SessionController : BaseJellyfinApiController
|
|||||||
return true;
|
return true;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
else if (!User.IsInRole(UserRoles.Administrator))
|
else if (!isRequestingFromAdmin)
|
||||||
{
|
{
|
||||||
// Request isn't from administrator, limit to "own" sessions.
|
// Request isn't from administrator, limit to "own" sessions.
|
||||||
result = result.Where(i => i.UserId.IsEmpty() || i.ContainsUser(User.GetUserId()));
|
result = result.Where(i => i.UserId.IsEmpty() || i.ContainsUser(User.GetUserId()));
|
||||||
@ -118,6 +120,16 @@ public class SessionController : BaseJellyfinApiController
|
|||||||
result = result.Where(i => i.LastActivityDate >= minActiveDate);
|
result = result.Where(i => i.LastActivityDate >= minActiveDate);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Request isn't from administrator, don't report acceleration type.
|
||||||
|
if (!isRequestingFromAdmin)
|
||||||
|
{
|
||||||
|
result = result.Select(r =>
|
||||||
|
{
|
||||||
|
r.TranscodingInfo.HardwareAccelerationType = HardwareAccelerationType.none;
|
||||||
|
return r;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
return Ok(result);
|
return Ok(result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user