2020-06-07 13:41:49 +00:00
|
|
|
|
using System;
|
2020-06-12 16:54:25 +00:00
|
|
|
|
using MediaBrowser.Controller.Net;
|
|
|
|
|
using MediaBrowser.Controller.Session;
|
2020-06-19 11:03:53 +00:00
|
|
|
|
using Microsoft.AspNetCore.Http;
|
2020-06-07 13:41:49 +00:00
|
|
|
|
|
|
|
|
|
namespace Jellyfin.Api.Helpers
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Request Extensions.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static class RequestHelpers
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2020-06-07 16:10:08 +00:00
|
|
|
|
/// Splits a string at a separating character into an array of substrings.
|
2020-06-07 13:41:49 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="value">The string to split.</param>
|
2020-06-07 16:10:08 +00:00
|
|
|
|
/// <param name="separator">The char that separates the substrings.</param>
|
2020-06-07 13:41:49 +00:00
|
|
|
|
/// <param name="removeEmpty">Option to remove empty substrings from the array.</param>
|
|
|
|
|
/// <returns>An array of the substrings.</returns>
|
|
|
|
|
internal static string[] Split(string value, char separator, bool removeEmpty)
|
|
|
|
|
{
|
|
|
|
|
if (string.IsNullOrWhiteSpace(value))
|
|
|
|
|
{
|
|
|
|
|
return Array.Empty<string>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return removeEmpty
|
|
|
|
|
? value.Split(new[] { separator }, StringSplitOptions.RemoveEmptyEntries)
|
|
|
|
|
: value.Split(separator);
|
|
|
|
|
}
|
2020-06-12 16:54:25 +00:00
|
|
|
|
|
2020-06-19 11:03:53 +00:00
|
|
|
|
internal static SessionInfo GetSession(ISessionManager sessionManager, IAuthorizationContext authContext, HttpRequest request)
|
2020-06-12 16:54:25 +00:00
|
|
|
|
{
|
2020-06-19 11:03:53 +00:00
|
|
|
|
var authorization = authContext.GetAuthorizationInfo(request);
|
|
|
|
|
var user = authorization.User;
|
|
|
|
|
var session = sessionManager.LogSessionActivity(
|
|
|
|
|
authorization.Client,
|
|
|
|
|
authorization.Version,
|
|
|
|
|
authorization.DeviceId,
|
|
|
|
|
authorization.Device,
|
|
|
|
|
request.HttpContext.Connection.RemoteIpAddress.ToString(),
|
|
|
|
|
user);
|
2020-06-12 16:54:25 +00:00
|
|
|
|
|
|
|
|
|
if (session == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentException("Session not found.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return session;
|
|
|
|
|
}
|
2020-06-07 13:41:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|