123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- using System;
- using System.Linq;
- using Jellyfin.Data.Enums;
- using MediaBrowser.Controller.Net;
- using MediaBrowser.Controller.Session;
- using MediaBrowser.Model.Querying;
- using Microsoft.AspNetCore.Http;
- namespace Jellyfin.Api.Helpers
- {
- /// <summary>
- /// Request Extensions.
- /// </summary>
- public static class RequestHelpers
- {
- /// <summary>
- /// Splits a string at a separating character into an array of substrings.
- /// </summary>
- /// <param name="value">The string to split.</param>
- /// <param name="separator">The char that separates the substrings.</param>
- /// <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);
- }
- /// <summary>
- /// Checks if the user can update an entry.
- /// </summary>
- /// <param name="authContext">Instance of the <see cref="IAuthorizationContext"/> interface.</param>
- /// <param name="requestContext">The <see cref="HttpRequest"/>.</param>
- /// <param name="userId">The user id.</param>
- /// <param name="restrictUserPreferences">Whether to restrict the user preferences.</param>
- /// <returns>A <see cref="bool"/> whether the user can update the entry.</returns>
- internal static bool AssertCanUpdateUser(IAuthorizationContext authContext, HttpRequest requestContext, Guid userId, bool restrictUserPreferences)
- {
- var auth = authContext.GetAuthorizationInfo(requestContext);
- var authenticatedUser = auth.User;
- // If they're going to update the record of another user, they must be an administrator
- if ((!userId.Equals(auth.UserId) && !authenticatedUser.HasPermission(PermissionKind.IsAdministrator))
- || (restrictUserPreferences && !authenticatedUser.EnableUserPreferenceAccess))
- {
- return false;
- }
- return true;
- }
- internal static SessionInfo GetSession(ISessionManager sessionManager, IAuthorizationContext authContext, HttpRequest request)
- {
- 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);
- if (session == null)
- {
- throw new ArgumentException("Session not found.");
- }
- return session;
- }
- /// <summary>
- /// Get Guid array from string.
- /// </summary>
- /// <param name="value">String value.</param>
- /// <returns>Guid array.</returns>
- internal static Guid[] GetGuids(string? value)
- {
- if (value == null)
- {
- return Array.Empty<Guid>();
- }
- return Split(value, ',', true)
- .Select(i => new Guid(i))
- .ToArray();
- }
- /// <summary>
- /// Gets the filters.
- /// </summary>
- /// <param name="filters">The filter string.</param>
- /// <returns>IEnumerable{ItemFilter}.</returns>
- internal static ItemFilter[] GetFilters(string filters)
- {
- return string.IsNullOrEmpty(filters)
- ? Array.Empty<ItemFilter>()
- : Split(filters, ',', true)
- .Select(v => Enum.Parse<ItemFilter>(v, true)).ToArray();
- }
- }
- }
|