< Summary - Jellyfin

Information
Class: MediaBrowser.Model.Dto.ClientCapabilitiesDto
Assembly: MediaBrowser.Model
File(s): /srv/git/jellyfin/MediaBrowser.Model/Dto/ClientCapabilitiesDto.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 10
Coverable lines: 10
Total lines: 69
Line coverage: 0%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
ToClientCapabilities()100%210%

File(s)

/srv/git/jellyfin/MediaBrowser.Model/Dto/ClientCapabilitiesDto.cs

#LineLine coverage
 1using System.Collections.Generic;
 2using System.Text.Json.Serialization;
 3using Jellyfin.Data.Enums;
 4using Jellyfin.Extensions.Json.Converters;
 5using MediaBrowser.Model.Dlna;
 6using MediaBrowser.Model.Session;
 7
 8namespace MediaBrowser.Model.Dto;
 9
 10/// <summary>
 11/// Client capabilities dto.
 12/// </summary>
 13public 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    {
 058        return new ClientCapabilities
 059        {
 060            PlayableMediaTypes = PlayableMediaTypes,
 061            SupportedCommands = SupportedCommands,
 062            SupportsMediaControl = SupportsMediaControl,
 063            SupportsPersistentIdentifier = SupportsPersistentIdentifier,
 064            DeviceProfile = DeviceProfile,
 065            AppStoreUrl = AppStoreUrl,
 066            IconUrl = IconUrl
 067        };
 68    }
 69}

Methods/Properties

ToClientCapabilities()