| | 1 | | using System.Collections.Generic; |
| | 2 | | using System.Text.Json.Serialization; |
| | 3 | | using Jellyfin.Data.Enums; |
| | 4 | | using Jellyfin.Extensions.Json.Converters; |
| | 5 | | using MediaBrowser.Model.Dlna; |
| | 6 | | using MediaBrowser.Model.Session; |
| | 7 | |
|
| | 8 | | namespace MediaBrowser.Model.Dto; |
| | 9 | |
|
| | 10 | | /// <summary> |
| | 11 | | /// Client capabilities dto. |
| | 12 | | /// </summary> |
| | 13 | | public class ClientCapabilitiesDto |
| | 14 | | { |
| | 15 | | /// <summary> |
| | 16 | | /// Gets or sets the list of playable media types. |
| | 17 | | /// </summary> |
| | 18 | | [JsonConverter(typeof(JsonCommaDelimitedCollectionConverterFactory))] |
| | 19 | | public IReadOnlyList<MediaType> PlayableMediaTypes { get; set; } = []; |
| | 20 | |
|
| | 21 | | /// <summary> |
| | 22 | | /// Gets or sets the list of supported commands. |
| | 23 | | /// </summary> |
| | 24 | | [JsonConverter(typeof(JsonCommaDelimitedCollectionConverterFactory))] |
| | 25 | | public IReadOnlyList<GeneralCommandType> SupportedCommands { get; set; } = []; |
| | 26 | |
|
| | 27 | | /// <summary> |
| | 28 | | /// Gets or sets a value indicating whether session supports media control. |
| | 29 | | /// </summary> |
| | 30 | | public bool SupportsMediaControl { get; set; } |
| | 31 | |
|
| | 32 | | /// <summary> |
| | 33 | | /// Gets or sets a value indicating whether session supports a persistent identifier. |
| | 34 | | /// </summary> |
| | 35 | | public bool SupportsPersistentIdentifier { get; set; } |
| | 36 | |
|
| | 37 | | /// <summary> |
| | 38 | | /// Gets or sets the device profile. |
| | 39 | | /// </summary> |
| | 40 | | public DeviceProfile? DeviceProfile { get; set; } |
| | 41 | |
|
| | 42 | | /// <summary> |
| | 43 | | /// Gets or sets the app store url. |
| | 44 | | /// </summary> |
| | 45 | | public string? AppStoreUrl { get; set; } |
| | 46 | |
|
| | 47 | | /// <summary> |
| | 48 | | /// Gets or sets the icon url. |
| | 49 | | /// </summary> |
| | 50 | | public string? IconUrl { get; set; } |
| | 51 | |
|
| | 52 | | /// <summary> |
| | 53 | | /// Convert the dto to the full <see cref="ClientCapabilities"/> model. |
| | 54 | | /// </summary> |
| | 55 | | /// <returns>The converted <see cref="ClientCapabilities"/> model.</returns> |
| | 56 | | public ClientCapabilities ToClientCapabilities() |
| | 57 | | { |
| 0 | 58 | | return new ClientCapabilities |
| 0 | 59 | | { |
| 0 | 60 | | PlayableMediaTypes = PlayableMediaTypes, |
| 0 | 61 | | SupportedCommands = SupportedCommands, |
| 0 | 62 | | SupportsMediaControl = SupportsMediaControl, |
| 0 | 63 | | SupportsPersistentIdentifier = SupportsPersistentIdentifier, |
| 0 | 64 | | DeviceProfile = DeviceProfile, |
| 0 | 65 | | AppStoreUrl = AppStoreUrl, |
| 0 | 66 | | IconUrl = IconUrl |
| 0 | 67 | | }; |
| | 68 | | } |
| | 69 | | } |