< Summary - Jellyfin

Information
Class: MediaBrowser.Controller.LiveTv.LiveTvChannel
Assembly: MediaBrowser.Controller
File(s): /srv/git/jellyfin/MediaBrowser.Controller/LiveTv/LiveTvChannel.cs
Line coverage
3%
Covered lines: 1
Uncovered lines: 30
Coverable lines: 31
Total lines: 157
Line coverage: 3.2%
Branch coverage
0%
Covered branches: 0
Total branches: 12
Branch coverage: 0%
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
get_SupportsPositionTicksResume()100%210%
get_SourceType()100%210%
get_EnableRememberingTrackSelections()100%210%
get_LocationType()100%210%
get_MediaType()0%620%
get_IsKids()100%210%
GetUserDataKeys()0%620%
GetBlockUnratedType()100%210%
CreateSortName()0%7280%
GetClientTypeName()100%11100%
GetTaggedItems()100%210%
GetMediaSources(...)100%210%
GetMediaStreams()100%210%
GetInternalMetadataPath(...)100%210%
CanDelete()100%210%

File(s)

/srv/git/jellyfin/MediaBrowser.Controller/LiveTv/LiveTvChannel.cs

#LineLine coverage
 1#nullable disable
 2
 3#pragma warning disable CS1591
 4
 5using System;
 6using System.Collections.Generic;
 7using System.Collections.Immutable;
 8using System.Globalization;
 9using System.Linq;
 10using System.Text.Json.Serialization;
 11using Jellyfin.Data.Enums;
 12using Jellyfin.Extensions;
 13using MediaBrowser.Controller.Entities;
 14using MediaBrowser.Model.Dto;
 15using MediaBrowser.Model.Entities;
 16using MediaBrowser.Model.LiveTv;
 17using MediaBrowser.Model.MediaInfo;
 18
 19namespace MediaBrowser.Controller.LiveTv
 20{
 21    public class LiveTvChannel : BaseItem, IHasMediaSources, IHasProgramAttributes
 22    {
 23        [JsonIgnore]
 024        public override bool SupportsPositionTicksResume => false;
 25
 26        [JsonIgnore]
 027        public override SourceType SourceType => SourceType.LiveTV;
 28
 29        [JsonIgnore]
 030        public override bool EnableRememberingTrackSelections => false;
 31
 32        /// <summary>
 33        /// Gets or sets the number.
 34        /// </summary>
 35        /// <value>The number.</value>
 36        public string Number { get; set; }
 37
 38        /// <summary>
 39        /// Gets or sets the type of the channel.
 40        /// </summary>
 41        /// <value>The type of the channel.</value>
 42        public ChannelType ChannelType { get; set; }
 43
 44        [JsonIgnore]
 045        public override LocationType LocationType => LocationType.Remote;
 46
 47        [JsonIgnore]
 048        public override MediaType MediaType => ChannelType == ChannelType.Radio ? MediaType.Audio : MediaType.Video;
 49
 50        [JsonIgnore]
 51        public bool IsMovie { get; set; }
 52
 53        /// <summary>
 54        /// Gets or sets a value indicating whether this instance is sports.
 55        /// </summary>
 56        /// <value><c>true</c> if this instance is sports; otherwise, <c>false</c>.</value>
 57        [JsonIgnore]
 58        public bool IsSports { get; set; }
 59
 60        /// <summary>
 61        /// Gets or sets a value indicating whether this instance is series.
 62        /// </summary>
 63        /// <value><c>true</c> if this instance is series; otherwise, <c>false</c>.</value>
 64        [JsonIgnore]
 65        public bool IsSeries { get; set; }
 66
 67        /// <summary>
 68        /// Gets or sets a value indicating whether this instance is news.
 69        /// </summary>
 70        /// <value><c>true</c> if this instance is news; otherwise, <c>false</c>.</value>
 71        [JsonIgnore]
 72        public bool IsNews { get; set; }
 73
 74        /// <summary>
 75        /// Gets a value indicating whether this instance is kids.
 76        /// </summary>
 77        /// <value><c>true</c> if this instance is kids; otherwise, <c>false</c>.</value>
 78        [JsonIgnore]
 079        public bool IsKids => Tags.Contains("Kids", StringComparison.OrdinalIgnoreCase);
 80
 81        [JsonIgnore]
 82        public bool IsRepeat { get; set; }
 83
 84        /// <summary>
 85        /// Gets or sets the episode title.
 86        /// </summary>
 87        /// <value>The episode title.</value>
 88        [JsonIgnore]
 89        public string EpisodeTitle { get; set; }
 90
 91        public override List<string> GetUserDataKeys()
 92        {
 093            var list = base.GetUserDataKeys();
 94
 095            if (!ConfigurationManager.Configuration.DisableLiveTvChannelUserDataName)
 96            {
 097                list.Insert(0, GetClientTypeName() + "-" + Name);
 98            }
 99
 0100            return list;
 101        }
 102
 103        public override UnratedItem GetBlockUnratedType()
 104        {
 0105            return UnratedItem.LiveTvChannel;
 106        }
 107
 108        protected override string CreateSortName()
 109        {
 0110            if (double.TryParse(Number, CultureInfo.InvariantCulture, out double number))
 111            {
 0112                return string.Format(CultureInfo.InvariantCulture, "{0:00000.0}", number) + "-" + (Name ?? string.Empty)
 113            }
 114
 0115            return (Number ?? string.Empty) + "-" + (Name ?? string.Empty);
 116        }
 117
 118        public override string GetClientTypeName()
 119        {
 1120            return "TvChannel";
 121        }
 122
 0123        public IEnumerable<BaseItem> GetTaggedItems() => [];
 124
 125        public override IReadOnlyList<MediaSourceInfo> GetMediaSources(bool enablePathSubstitution)
 126        {
 0127            var info = new MediaSourceInfo
 0128            {
 0129                Id = Id.ToString("N", CultureInfo.InvariantCulture),
 0130                Protocol = PathProtocol ?? MediaProtocol.File,
 0131                MediaStreams = Array.Empty<MediaStream>(),
 0132                Name = Name,
 0133                Path = Path,
 0134                RunTimeTicks = RunTimeTicks,
 0135                Type = MediaSourceType.Placeholder,
 0136                IsInfiniteStream = RunTimeTicks is null
 0137            };
 138
 0139            return [info];
 140        }
 141
 142        public override IReadOnlyList<MediaStream> GetMediaStreams()
 143        {
 0144            return [];
 145        }
 146
 147        protected override string GetInternalMetadataPath(string basePath)
 148        {
 0149            return System.IO.Path.Combine(basePath, "livetv", Id.ToString("N", CultureInfo.InvariantCulture), "metadata"
 150        }
 151
 152        public override bool CanDelete()
 153        {
 0154            return false;
 155        }
 156    }
 157}