|
@@ -1,6 +1,13 @@
|
|
|
|
+#pragma warning disable CS1591
|
|
|
|
+#pragma warning disable SA1402
|
|
|
|
+#pragma warning disable SA1600
|
|
|
|
+#pragma warning disable SA1649
|
|
|
|
+
|
|
using System;
|
|
using System;
|
|
|
|
+using System.Buffers;
|
|
using System.Collections.Generic;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.Globalization;
|
|
|
|
+using System.Text.Json;
|
|
using System.Linq;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using System.Threading.Tasks;
|
|
@@ -54,7 +61,7 @@ namespace MediaBrowser.Api.Playback
|
|
public class GetBitrateTestBytes
|
|
public class GetBitrateTestBytes
|
|
{
|
|
{
|
|
[ApiMember(Name = "Size", Description = "Size", IsRequired = true, DataType = "int", ParameterType = "query", Verb = "GET")]
|
|
[ApiMember(Name = "Size", Description = "Size", IsRequired = true, DataType = "int", ParameterType = "query", Verb = "GET")]
|
|
- public long Size { get; set; }
|
|
|
|
|
|
+ public int Size { get; set; }
|
|
|
|
|
|
public GetBitrateTestBytes()
|
|
public GetBitrateTestBytes()
|
|
{
|
|
{
|
|
@@ -72,7 +79,6 @@ namespace MediaBrowser.Api.Playback
|
|
private readonly INetworkManager _networkManager;
|
|
private readonly INetworkManager _networkManager;
|
|
private readonly IMediaEncoder _mediaEncoder;
|
|
private readonly IMediaEncoder _mediaEncoder;
|
|
private readonly IUserManager _userManager;
|
|
private readonly IUserManager _userManager;
|
|
- private readonly IJsonSerializer _json;
|
|
|
|
private readonly IAuthorizationContext _authContext;
|
|
private readonly IAuthorizationContext _authContext;
|
|
|
|
|
|
public MediaInfoService(
|
|
public MediaInfoService(
|
|
@@ -85,7 +91,6 @@ namespace MediaBrowser.Api.Playback
|
|
INetworkManager networkManager,
|
|
INetworkManager networkManager,
|
|
IMediaEncoder mediaEncoder,
|
|
IMediaEncoder mediaEncoder,
|
|
IUserManager userManager,
|
|
IUserManager userManager,
|
|
- IJsonSerializer json,
|
|
|
|
IAuthorizationContext authContext)
|
|
IAuthorizationContext authContext)
|
|
: base(logger, serverConfigurationManager, httpResultFactory)
|
|
: base(logger, serverConfigurationManager, httpResultFactory)
|
|
{
|
|
{
|
|
@@ -95,20 +100,35 @@ namespace MediaBrowser.Api.Playback
|
|
_networkManager = networkManager;
|
|
_networkManager = networkManager;
|
|
_mediaEncoder = mediaEncoder;
|
|
_mediaEncoder = mediaEncoder;
|
|
_userManager = userManager;
|
|
_userManager = userManager;
|
|
- _json = json;
|
|
|
|
_authContext = authContext;
|
|
_authContext = authContext;
|
|
}
|
|
}
|
|
|
|
|
|
public object Get(GetBitrateTestBytes request)
|
|
public object Get(GetBitrateTestBytes request)
|
|
{
|
|
{
|
|
- var bytes = new byte[request.Size];
|
|
|
|
|
|
+ const int MaxSize = 10_000_000;
|
|
|
|
+
|
|
|
|
+ var size = request.Size;
|
|
|
|
+
|
|
|
|
+ if (size <= 0)
|
|
|
|
+ {
|
|
|
|
+ throw new ArgumentException($"The requested size ({size}) is equal to or smaller than 0.", nameof(request));
|
|
|
|
+ }
|
|
|
|
|
|
- for (var i = 0; i < bytes.Length; i++)
|
|
|
|
|
|
+ if (size > MaxSize)
|
|
{
|
|
{
|
|
- bytes[i] = 0;
|
|
|
|
|
|
+ throw new ArgumentException($"The requested size ({size}) is larger than the max allowed value ({MaxSize}).", nameof(request));
|
|
}
|
|
}
|
|
|
|
|
|
- return ResultFactory.GetResult(null, bytes, "application/octet-stream");
|
|
|
|
|
|
+ byte[] buffer = ArrayPool<byte>.Shared.Rent(size);
|
|
|
|
+ try
|
|
|
|
+ {
|
|
|
|
+ new Random().NextBytes(buffer);
|
|
|
|
+ return ResultFactory.GetResult(null, buffer, "application/octet-stream");
|
|
|
|
+ }
|
|
|
|
+ finally
|
|
|
|
+ {
|
|
|
|
+ ArrayPool<byte>.Shared.Return(buffer);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
public async Task<object> Get(GetPlaybackInfo request)
|
|
public async Task<object> Get(GetPlaybackInfo request)
|
|
@@ -166,8 +186,7 @@ namespace MediaBrowser.Api.Playback
|
|
|
|
|
|
public void Post(CloseMediaSource request)
|
|
public void Post(CloseMediaSource request)
|
|
{
|
|
{
|
|
- var task = _mediaSourceManager.CloseLiveStream(request.LiveStreamId);
|
|
|
|
- Task.WaitAll(task);
|
|
|
|
|
|
+ _mediaSourceManager.CloseLiveStream(request.LiveStreamId).GetAwaiter().GetResult();
|
|
}
|
|
}
|
|
|
|
|
|
public async Task<PlaybackInfoResponse> GetPlaybackInfo(GetPostedPlaybackInfo request)
|
|
public async Task<PlaybackInfoResponse> GetPlaybackInfo(GetPostedPlaybackInfo request)
|
|
@@ -176,7 +195,7 @@ namespace MediaBrowser.Api.Playback
|
|
|
|
|
|
var profile = request.DeviceProfile;
|
|
var profile = request.DeviceProfile;
|
|
|
|
|
|
- //Logger.LogInformation("GetPostedPlaybackInfo profile: {profile}", _json.SerializeToString(profile));
|
|
|
|
|
|
+ Logger.LogInformation("GetPostedPlaybackInfo profile: {@Profile}", profile);
|
|
|
|
|
|
if (profile == null)
|
|
if (profile == null)
|
|
{
|
|
{
|
|
@@ -215,9 +234,7 @@ namespace MediaBrowser.Api.Playback
|
|
StartTimeTicks = request.StartTimeTicks,
|
|
StartTimeTicks = request.StartTimeTicks,
|
|
SubtitleStreamIndex = request.SubtitleStreamIndex,
|
|
SubtitleStreamIndex = request.SubtitleStreamIndex,
|
|
UserId = request.UserId,
|
|
UserId = request.UserId,
|
|
- OpenToken = mediaSource.OpenToken,
|
|
|
|
- //EnableMediaProbe = request.EnableMediaProbe
|
|
|
|
-
|
|
|
|
|
|
+ OpenToken = mediaSource.OpenToken
|
|
}).ConfigureAwait(false);
|
|
}).ConfigureAwait(false);
|
|
|
|
|
|
info.MediaSources = new MediaSourceInfo[] { openStreamResult.MediaSource };
|
|
info.MediaSources = new MediaSourceInfo[] { openStreamResult.MediaSource };
|
|
@@ -251,9 +268,8 @@ namespace MediaBrowser.Api.Playback
|
|
{
|
|
{
|
|
// Since we're going to be setting properties on MediaSourceInfos that come out of _mediaSourceManager, we should clone it
|
|
// Since we're going to be setting properties on MediaSourceInfos that come out of _mediaSourceManager, we should clone it
|
|
// Should we move this directly into MediaSourceManager?
|
|
// Should we move this directly into MediaSourceManager?
|
|
-
|
|
|
|
- var json = _json.SerializeToString(obj);
|
|
|
|
- return _json.DeserializeFromString<T>(json);
|
|
|
|
|
|
+ var json = JsonSerializer.SerializeToUtf8Bytes(obj);
|
|
|
|
+ return JsonSerializer.Deserialize<T>(json);
|
|
}
|
|
}
|
|
|
|
|
|
private async Task<PlaybackInfoResponse> GetPlaybackInfo(Guid id, Guid userId, string[] supportedLiveMediaTypes, string mediaSourceId = null, string liveStreamId = null)
|
|
private async Task<PlaybackInfoResponse> GetPlaybackInfo(Guid id, Guid userId, string[] supportedLiveMediaTypes, string mediaSourceId = null, string liveStreamId = null)
|
|
@@ -294,7 +310,7 @@ namespace MediaBrowser.Api.Playback
|
|
result.MediaSources = new MediaSourceInfo[] { mediaSource };
|
|
result.MediaSources = new MediaSourceInfo[] { mediaSource };
|
|
}
|
|
}
|
|
|
|
|
|
- if (result.MediaSources.Length == 0)
|
|
|
|
|
|
+ if (result.MediaSources.Count == 0)
|
|
{
|
|
{
|
|
if (!result.ErrorCode.HasValue)
|
|
if (!result.ErrorCode.HasValue)
|
|
{
|
|
{
|
|
@@ -311,7 +327,8 @@ namespace MediaBrowser.Api.Playback
|
|
return result;
|
|
return result;
|
|
}
|
|
}
|
|
|
|
|
|
- private void SetDeviceSpecificData(Guid itemId,
|
|
|
|
|
|
+ private void SetDeviceSpecificData(
|
|
|
|
+ Guid itemId,
|
|
PlaybackInfoResponse result,
|
|
PlaybackInfoResponse result,
|
|
DeviceProfile profile,
|
|
DeviceProfile profile,
|
|
AuthorizationInfo auth,
|
|
AuthorizationInfo auth,
|
|
@@ -339,7 +356,8 @@ namespace MediaBrowser.Api.Playback
|
|
SortMediaSources(result, maxBitrate);
|
|
SortMediaSources(result, maxBitrate);
|
|
}
|
|
}
|
|
|
|
|
|
- private void SetDeviceSpecificData(BaseItem item,
|
|
|
|
|
|
+ private void SetDeviceSpecificData(
|
|
|
|
+ BaseItem item,
|
|
MediaSourceInfo mediaSource,
|
|
MediaSourceInfo mediaSource,
|
|
DeviceProfile profile,
|
|
DeviceProfile profile,
|
|
AuthorizationInfo auth,
|
|
AuthorizationInfo auth,
|
|
@@ -383,10 +401,12 @@ namespace MediaBrowser.Api.Playback
|
|
{
|
|
{
|
|
mediaSource.SupportsDirectPlay = false;
|
|
mediaSource.SupportsDirectPlay = false;
|
|
}
|
|
}
|
|
|
|
+
|
|
if (!enableDirectStream)
|
|
if (!enableDirectStream)
|
|
{
|
|
{
|
|
mediaSource.SupportsDirectStream = false;
|
|
mediaSource.SupportsDirectStream = false;
|
|
}
|
|
}
|
|
|
|
+
|
|
if (!enableTranscoding)
|
|
if (!enableTranscoding)
|
|
{
|
|
{
|
|
mediaSource.SupportsTranscoding = false;
|
|
mediaSource.SupportsTranscoding = false;
|
|
@@ -434,9 +454,9 @@ namespace MediaBrowser.Api.Playback
|
|
}
|
|
}
|
|
|
|
|
|
// The MediaSource supports direct stream, now test to see if the client supports it
|
|
// The MediaSource supports direct stream, now test to see if the client supports it
|
|
- var streamInfo = string.Equals(item.MediaType, MediaType.Audio, StringComparison.OrdinalIgnoreCase) ?
|
|
|
|
- streamBuilder.BuildAudioItem(options) :
|
|
|
|
- streamBuilder.BuildVideoItem(options);
|
|
|
|
|
|
+ var streamInfo = string.Equals(item.MediaType, MediaType.Audio, StringComparison.OrdinalIgnoreCase)
|
|
|
|
+ ? streamBuilder.BuildAudioItem(options)
|
|
|
|
+ : streamBuilder.BuildVideoItem(options);
|
|
|
|
|
|
if (streamInfo == null || !streamInfo.IsDirectStream)
|
|
if (streamInfo == null || !streamInfo.IsDirectStream)
|
|
{
|
|
{
|
|
@@ -473,9 +493,9 @@ namespace MediaBrowser.Api.Playback
|
|
}
|
|
}
|
|
|
|
|
|
// The MediaSource supports direct stream, now test to see if the client supports it
|
|
// The MediaSource supports direct stream, now test to see if the client supports it
|
|
- var streamInfo = string.Equals(item.MediaType, MediaType.Audio, StringComparison.OrdinalIgnoreCase) ?
|
|
|
|
- streamBuilder.BuildAudioItem(options) :
|
|
|
|
- streamBuilder.BuildVideoItem(options);
|
|
|
|
|
|
+ var streamInfo = string.Equals(item.MediaType, MediaType.Audio, StringComparison.OrdinalIgnoreCase)
|
|
|
|
+ ? streamBuilder.BuildAudioItem(options)
|
|
|
|
+ : streamBuilder.BuildVideoItem(options);
|
|
|
|
|
|
if (streamInfo == null || !streamInfo.IsDirectStream)
|
|
if (streamInfo == null || !streamInfo.IsDirectStream)
|
|
{
|
|
{
|
|
@@ -493,9 +513,9 @@ namespace MediaBrowser.Api.Playback
|
|
options.MaxBitrate = GetMaxBitrate(maxBitrate, user);
|
|
options.MaxBitrate = GetMaxBitrate(maxBitrate, user);
|
|
|
|
|
|
// The MediaSource supports direct stream, now test to see if the client supports it
|
|
// The MediaSource supports direct stream, now test to see if the client supports it
|
|
- var streamInfo = string.Equals(item.MediaType, MediaType.Audio, StringComparison.OrdinalIgnoreCase) ?
|
|
|
|
- streamBuilder.BuildAudioItem(options) :
|
|
|
|
- streamBuilder.BuildVideoItem(options);
|
|
|
|
|
|
+ var streamInfo = string.Equals(item.MediaType, MediaType.Audio, StringComparison.OrdinalIgnoreCase)
|
|
|
|
+ ? streamBuilder.BuildAudioItem(options)
|
|
|
|
+ : streamBuilder.BuildVideoItem(options);
|
|
|
|
|
|
if (streamInfo != null)
|
|
if (streamInfo != null)
|
|
{
|
|
{
|
|
@@ -510,10 +530,12 @@ namespace MediaBrowser.Api.Playback
|
|
{
|
|
{
|
|
mediaSource.TranscodingUrl += "&allowVideoStreamCopy=false";
|
|
mediaSource.TranscodingUrl += "&allowVideoStreamCopy=false";
|
|
}
|
|
}
|
|
|
|
+
|
|
if (!allowAudioStreamCopy)
|
|
if (!allowAudioStreamCopy)
|
|
{
|
|
{
|
|
mediaSource.TranscodingUrl += "&allowAudioStreamCopy=false";
|
|
mediaSource.TranscodingUrl += "&allowAudioStreamCopy=false";
|
|
}
|
|
}
|
|
|
|
+
|
|
mediaSource.TranscodingContainer = streamInfo.Container;
|
|
mediaSource.TranscodingContainer = streamInfo.Container;
|
|
mediaSource.TranscodingSubProtocol = streamInfo.SubProtocol;
|
|
mediaSource.TranscodingSubProtocol = streamInfo.SubProtocol;
|
|
}
|
|
}
|
|
@@ -609,14 +631,11 @@ namespace MediaBrowser.Api.Playback
|
|
|
|
|
|
}).ThenBy(i =>
|
|
}).ThenBy(i =>
|
|
{
|
|
{
|
|
- switch (i.Protocol)
|
|
|
|
|
|
+ return i.Protocol switch
|
|
{
|
|
{
|
|
- case MediaProtocol.File:
|
|
|
|
- return 0;
|
|
|
|
- default:
|
|
|
|
- return 1;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
|
|
+ MediaProtocol.File => 0,
|
|
|
|
+ _ => 1,
|
|
|
|
+ };
|
|
}).ThenBy(i =>
|
|
}).ThenBy(i =>
|
|
{
|
|
{
|
|
if (maxBitrate.HasValue)
|
|
if (maxBitrate.HasValue)
|