< Summary - Jellyfin

Information
Class: MediaBrowser.Controller.Entities.Book
Assembly: MediaBrowser.Controller
File(s): /srv/git/jellyfin/MediaBrowser.Controller/Entities/Book.cs
Line coverage
16%
Covered lines: 3
Uncovered lines: 15
Coverable lines: 18
Total lines: 88
Line coverage: 16.6%
Branch coverage
0%
Covered branches: 0
Total branches: 2
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
.ctor()100%11100%
get_MediaType()100%210%
get_SupportsPlayedStatus()100%210%
get_SupportsPositionTicksResume()100%210%
get_SupportsPeople()100%210%
FindSeriesSortName()100%210%
FindSeriesName()100%210%
FindSeriesPresentationUniqueKey()100%210%
FindSeriesId()100%210%
CanDownload()100%210%
GetBlockUnratedType()100%210%
GetLookupInfo()0%620%

File(s)

/srv/git/jellyfin/MediaBrowser.Controller/Entities/Book.cs

#LineLine coverage
 1#nullable disable
 2
 3#pragma warning disable CS1591
 4
 5using System;
 6using System.Linq;
 7using System.Text.Json.Serialization;
 8using Jellyfin.Data.Enums;
 9using MediaBrowser.Controller.Providers;
 10
 11namespace MediaBrowser.Controller.Entities
 12{
 13    [Common.RequiresSourceSerialisation]
 14    public class Book : BaseItem, IHasLookupInfo<BookInfo>, IHasSeries
 15    {
 516        public Book()
 17        {
 518            this.RunTimeTicks = TimeSpan.TicksPerSecond;
 519        }
 20
 21        [JsonIgnore]
 022        public override MediaType MediaType => MediaType.Book;
 23
 024        public override bool SupportsPlayedStatus => true;
 25
 026        public override bool SupportsPositionTicksResume => true;
 27
 28        [JsonIgnore]
 029        public override bool SupportsPeople => true;
 30
 31        [JsonIgnore]
 32        public string SeriesPresentationUniqueKey { get; set; }
 33
 34        [JsonIgnore]
 35        public string SeriesName { get; set; }
 36
 37        [JsonIgnore]
 38        public Guid SeriesId { get; set; }
 39
 40        public string FindSeriesSortName()
 41        {
 042            return SeriesName;
 43        }
 44
 45        public string FindSeriesName()
 46        {
 047            return SeriesName;
 48        }
 49
 50        public string FindSeriesPresentationUniqueKey()
 51        {
 052            return SeriesPresentationUniqueKey;
 53        }
 54
 55        public Guid FindSeriesId()
 56        {
 057            return SeriesId;
 58        }
 59
 60        /// <inheritdoc />
 61        public override bool CanDownload()
 62        {
 063            return IsFileProtocol;
 64        }
 65
 66        /// <inheritdoc />
 67        public override UnratedItem GetBlockUnratedType()
 68        {
 069            return UnratedItem.Book;
 70        }
 71
 72        public BookInfo GetLookupInfo()
 73        {
 074            var info = GetItemLookupInfo<BookInfo>();
 75
 076            if (string.IsNullOrEmpty(SeriesName))
 77            {
 078                info.SeriesName = GetParents().Select(i => i.Name).FirstOrDefault();
 79            }
 80            else
 81            {
 082                info.SeriesName = SeriesName;
 83            }
 84
 085            return info;
 86        }
 87    }
 88}