< Summary - Jellyfin

Information
Class: MediaBrowser.Controller.LiveTv.LiveTvProgram
Assembly: MediaBrowser.Controller
File(s): /srv/git/jellyfin/MediaBrowser.Controller/LiveTv/LiveTvProgram.cs
Line coverage
8%
Covered lines: 4
Uncovered lines: 45
Coverable lines: 49
Total lines: 259
Line coverage: 8.1%
Branch coverage
0%
Covered branches: 0
Total branches: 32
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

File(s)

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

#LineLine coverage
 1#nullable disable
 2
 3#pragma warning disable CS1591, SA1306
 4
 5using System;
 6using System.Collections.Generic;
 7using System.Globalization;
 8using System.Linq;
 9using System.Text.Json.Serialization;
 10using Jellyfin.Data.Enums;
 11using Jellyfin.Extensions;
 12using MediaBrowser.Common.Configuration;
 13using MediaBrowser.Controller.Entities;
 14using MediaBrowser.Controller.Providers;
 15using MediaBrowser.Model.Entities;
 16using MediaBrowser.Model.LiveTv;
 17using MediaBrowser.Model.Providers;
 18
 19namespace MediaBrowser.Controller.LiveTv
 20{
 21    [Common.RequiresSourceSerialisation]
 22    public class LiveTvProgram : BaseItem, IHasLookupInfo<ItemLookupInfo>, IHasStartDate, IHasProgramAttributes
 23    {
 24        private const string EmbyServiceName = "Emby";
 25
 126        public LiveTvProgram()
 27        {
 128            IsVirtualItem = true;
 129        }
 30
 31        public string SeriesName { get; set; }
 32
 33        [JsonIgnore]
 034        public override SourceType SourceType => SourceType.LiveTV;
 35
 36        /// <summary>
 37        /// Gets or sets start date of the program, in UTC.
 38        /// </summary>
 39        [JsonIgnore]
 40        public DateTime StartDate { get; set; }
 41
 42        /// <summary>
 43        /// Gets or sets a value indicating whether this instance is repeat.
 44        /// </summary>
 45        /// <value><c>true</c> if this instance is repeat; otherwise, <c>false</c>.</value>
 46        [JsonIgnore]
 47        public bool IsRepeat { get; set; }
 48
 49        /// <summary>
 50        /// Gets or sets the episode title.
 51        /// </summary>
 52        /// <value>The episode title.</value>
 53        [JsonIgnore]
 54        public string EpisodeTitle { get; set; }
 55
 56        [JsonIgnore]
 57        public string ShowId { get; set; }
 58
 59        /// <summary>
 60        /// Gets or sets a value indicating whether this instance is movie.
 61        /// </summary>
 62        /// <value><c>true</c> if this instance is movie; otherwise, <c>false</c>.</value>
 63        [JsonIgnore]
 64        public bool IsMovie { get; set; }
 65
 66        /// <summary>
 67        /// Gets a value indicating whether this instance is sports.
 68        /// </summary>
 69        /// <value><c>true</c> if this instance is sports; otherwise, <c>false</c>.</value>
 70        [JsonIgnore]
 071        public bool IsSports => Tags.Contains("Sports", StringComparison.OrdinalIgnoreCase);
 72
 73        /// <summary>
 74        /// Gets or sets a value indicating whether this instance is series.
 75        /// </summary>
 76        /// <value><c>true</c> if this instance is series; otherwise, <c>false</c>.</value>
 77        [JsonIgnore]
 78        public bool IsSeries { get; set; }
 79
 80        /// <summary>
 81        /// Gets a value indicating whether this instance is live.
 82        /// </summary>
 83        /// <value><c>true</c> if this instance is live; otherwise, <c>false</c>.</value>
 84        [JsonIgnore]
 085        public bool IsLive => Tags.Contains("Live", StringComparison.OrdinalIgnoreCase);
 86
 87        /// <summary>
 88        /// Gets a value indicating whether this instance is news.
 89        /// </summary>
 90        /// <value><c>true</c> if this instance is news; otherwise, <c>false</c>.</value>
 91        [JsonIgnore]
 092        public bool IsNews => Tags.Contains("News", StringComparison.OrdinalIgnoreCase);
 93
 94        /// <summary>
 95        /// Gets a value indicating whether this instance is kids.
 96        /// </summary>
 97        /// <value><c>true</c> if this instance is kids; otherwise, <c>false</c>.</value>
 98        [JsonIgnore]
 099        public bool IsKids => Tags.Contains("Kids", StringComparison.OrdinalIgnoreCase);
 100
 101        /// <summary>
 102        /// Gets a value indicating whether this instance is premiere.
 103        /// </summary>
 104        /// <value><c>true</c> if this instance is premiere; otherwise, <c>false</c>.</value>
 105        [JsonIgnore]
 0106        public bool IsPremiere => Tags.Contains("Premiere", StringComparison.OrdinalIgnoreCase);
 107
 108        /// <summary>
 109        /// Gets the folder containing the item.
 110        /// If the item is a folder, it returns the folder itself.
 111        /// </summary>
 112        /// <value>The containing folder path.</value>
 113        [JsonIgnore]
 0114        public override string ContainingFolderPath => Path;
 115
 116        // [JsonIgnore]
 117        // public override string MediaType
 118        // {
 119        //    get
 120        //    {
 121        //        return ChannelType == ChannelType.TV ? Model.Entities.MediaType.Video : Model.Entities.MediaType.Audio
 122        //    }
 123        // }
 124
 125        [JsonIgnore]
 126        public bool IsAiring
 127        {
 128            get
 129            {
 0130                var now = DateTime.UtcNow;
 131
 0132                return now >= StartDate && now < EndDate;
 133            }
 134        }
 135
 136        [JsonIgnore]
 137        public bool HasAired
 138        {
 139            get
 140            {
 0141                var now = DateTime.UtcNow;
 142
 0143                return now >= EndDate;
 144            }
 145        }
 146
 147        [JsonIgnore]
 148        public override bool SupportsPeople
 149        {
 150            get
 151            {
 152                // Optimization
 0153                if (IsNews || IsSports)
 154                {
 0155                    return false;
 156                }
 157
 0158                return base.SupportsPeople;
 159            }
 160        }
 161
 162        [JsonIgnore]
 0163        public override bool SupportsAncestors => false;
 164
 165        public override List<string> GetUserDataKeys()
 166        {
 0167            var list = base.GetUserDataKeys();
 168
 0169            if (!IsSeries)
 170            {
 0171                var key = this.GetProviderId(MetadataProvider.Imdb);
 0172                if (!string.IsNullOrEmpty(key))
 173                {
 0174                    list.Insert(0, key);
 175                }
 176
 0177                key = this.GetProviderId(MetadataProvider.Tmdb);
 0178                if (!string.IsNullOrEmpty(key))
 179                {
 0180                    list.Insert(0, key);
 181                }
 182            }
 0183            else if (!string.IsNullOrEmpty(EpisodeTitle))
 184            {
 0185                var name = GetClientTypeName();
 186
 0187                list.Insert(0, name + "-" + Name + (EpisodeTitle ?? string.Empty));
 188            }
 189
 0190            return list;
 191        }
 192
 193        public override double GetDefaultPrimaryImageAspectRatio()
 194        {
 0195            var serviceName = ServiceName;
 196
 0197            if (string.Equals(serviceName, EmbyServiceName, StringComparison.OrdinalIgnoreCase) || string.Equals(service
 198            {
 0199                return 2.0 / 3;
 200            }
 201
 0202            return 16.0 / 9;
 203        }
 204
 205        public override string GetClientTypeName()
 206        {
 1207            return "Program";
 208        }
 209
 210        public override UnratedItem GetBlockUnratedType()
 211        {
 0212            return UnratedItem.LiveTvProgram;
 213        }
 214
 215        protected override string GetInternalMetadataPath(string basePath)
 216        {
 0217            return System.IO.Path.Combine(basePath, "livetv", Id.ToString("N", CultureInfo.InvariantCulture));
 218        }
 219
 220        public override bool CanDelete()
 221        {
 0222            return false;
 223        }
 224
 225        private LiveTvOptions GetConfiguration()
 226        {
 0227            return ConfigurationManager.GetConfiguration<LiveTvOptions>("livetv");
 228        }
 229
 230        private ListingsProviderInfo GetListingsProviderInfo()
 231        {
 0232            if (string.Equals(ServiceName, "Emby", StringComparison.OrdinalIgnoreCase))
 233            {
 0234                var config = GetConfiguration();
 235
 0236                return config.ListingProviders.FirstOrDefault(i => !string.IsNullOrEmpty(i.MoviePrefix));
 237            }
 238
 0239            return null;
 240        }
 241
 242        protected override string GetNameForMetadataLookup()
 243        {
 0244            var name = base.GetNameForMetadataLookup();
 245
 0246            var listings = GetListingsProviderInfo();
 247
 0248            if (listings is not null)
 249            {
 0250                if (!string.IsNullOrEmpty(listings.MoviePrefix) && name.StartsWith(listings.MoviePrefix, StringCompariso
 251                {
 0252                    name = name.Substring(listings.MoviePrefix.Length).Trim();
 253                }
 254            }
 255
 0256            return name;
 257        }
 258    }
 259}