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-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
|
|
|
|
|
|
|
|
|
internal static SessionInfo GetSession(ISessionContext sessionContext)
|
|
|
|
|
{
|
|
|
|
|
// TODO: how do we get a SessionInfo without IRequest?
|
|
|
|
|
SessionInfo session = sessionContext.GetSession("Request");
|
|
|
|
|
|
|
|
|
|
if (session == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentException("Session not found.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return session;
|
|
|
|
|
}
|
2020-06-07 13:41:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|