| | 1 | | using System; |
| | 2 | | using System.Diagnostics.CodeAnalysis; |
| | 3 | | using Jellyfin.Database.Implementations.Entities; |
| | 4 | |
|
| | 5 | | namespace MediaBrowser.Controller.Net |
| | 6 | | { |
| | 7 | | /// <summary> |
| | 8 | | /// The request authorization info. |
| | 9 | | /// </summary> |
| | 10 | | public class AuthorizationInfo |
| | 11 | | { |
| | 12 | | /// <summary> |
| | 13 | | /// Gets the user identifier. |
| | 14 | | /// </summary> |
| | 15 | | /// <value>The user identifier.</value> |
| 103 | 16 | | public Guid UserId => User?.Id ?? Guid.Empty; |
| | 17 | |
|
| | 18 | | /// <summary> |
| | 19 | | /// Gets or sets the device identifier. |
| | 20 | | /// </summary> |
| | 21 | | /// <value>The device identifier.</value> |
| | 22 | | public string? DeviceId { get; set; } |
| | 23 | |
|
| | 24 | | /// <summary> |
| | 25 | | /// Gets or sets the device. |
| | 26 | | /// </summary> |
| | 27 | | /// <value>The device.</value> |
| | 28 | | public string? Device { get; set; } |
| | 29 | |
|
| | 30 | | /// <summary> |
| | 31 | | /// Gets or sets the client. |
| | 32 | | /// </summary> |
| | 33 | | /// <value>The client.</value> |
| | 34 | | public string? Client { get; set; } |
| | 35 | |
|
| | 36 | | /// <summary> |
| | 37 | | /// Gets or sets the version. |
| | 38 | | /// </summary> |
| | 39 | | /// <value>The version.</value> |
| | 40 | | public string? Version { get; set; } |
| | 41 | |
|
| | 42 | | /// <summary> |
| | 43 | | /// Gets or sets the token. |
| | 44 | | /// </summary> |
| | 45 | | /// <value>The token.</value> |
| | 46 | | public string? Token { get; set; } |
| | 47 | |
|
| | 48 | | /// <summary> |
| | 49 | | /// Gets or sets a value indicating whether the authorization is from an api key. |
| | 50 | | /// </summary> |
| | 51 | | public bool IsApiKey { get; set; } |
| | 52 | |
|
| | 53 | | /// <summary> |
| | 54 | | /// Gets or sets the user making the request. |
| | 55 | | /// </summary> |
| | 56 | | public User? User { get; set; } |
| | 57 | |
|
| | 58 | | /// <summary> |
| | 59 | | /// Gets or sets a value indicating whether the token is authenticated. |
| | 60 | | /// </summary> |
| | 61 | | public bool IsAuthenticated { get; set; } |
| | 62 | |
|
| | 63 | | /// <summary> |
| | 64 | | /// Gets a value indicating whether the request has a token. |
| | 65 | | /// </summary> |
| | 66 | | [MemberNotNullWhen(true, nameof(Token))] |
| 535 | 67 | | public bool HasToken => !string.IsNullOrWhiteSpace(Token); |
| | 68 | | } |
| | 69 | | } |